2
4

1 に答える 1

2

これを機能させるために、これについてDataStaxの担当者から助けを得ました。

実際には、クラスターのいくつかの設定が台無しになっていたため、新しいクラスターを作成し、/etc/default/dse ファイルでこのクラスターのノードで DSE Graph サービスを有効にする設定を 1 つ実行しただけです。

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()

また、DSE Graphloader を介して正常にロードされるように、TimeStamp は数値である必要があります。

これらの変更の後、DSE Graphloader を介してデータを正常にロードできるようになりました。

于 2016-08-23T13:09:58.420 に答える