问问题
908 次
1 回答
2
在这方面得到了 DataStax 人员的帮助以使其正常工作。
实际上,集群上的一些设置搞砸了,所以我们只是创建了一个新集群,然后在 /etc/default/dse 文件中进行了一项设置以在该集群的节点上启用 DSE Graph 服务-
GRAPH_ENABLED=1
之后将架构更新为 -
schema.propertyKey("id").Text().single().create()
schema.propertyKey("follower").Text().single().create()
schema.propertyKey("name").Text().single().create()
schema.propertyKey("type").Text().single().create()
schema.propertyKey("followed").Text().single().create()
schema.propertyKey("timestamp").Timestamp().single().create()
schema.vertexLabel("record").partitionKey("id").properties("follower", "name", "type", "followed", "timestamp").create()
另外关于 TimeStamp 应该是一个数字值,以便通过 DSE Graphloader 成功加载。
在这些更改之后,我能够通过 DSE Graphloader 成功加载数据。
于 2016-08-23T13:09:58.420 回答