Orientdb挂起以进行带有集群的插入查询

时间:2015-01-22 06:56:09

标签: python orientdb

我是OrientDB的新手。我们试图在orientDB上创建多个集群。我们用来实现相同的代码片段如下所示

client.command("ALTER CLASS sample_class ADDCLUSTER sample_cluster")
client.command("insert into sample_class cluster  sample_cluster set x = '1'")

第一个命令执行正常。但是在尝试执行第二个命令时,orientDB会挂起。我正在使用针对OrientDB的python包运行这些sql查询' pyorient'。有人帮我调试问题吗?

1 个答案:

答案 0 :(得分:0)

我认为您正在寻找的命令是:

insert into cluster:sample_cluster set x = '1'

请参阅this link