将 GraphSON 数据加载到具有自定义顶点 ID 的 DSE 图中时出错
Error loading GraphSON data into a DSE graph with custom vertex ids
我创建了一个带有自定义顶点 ID 的架构,例如:
schema.vertexLabel('foo').partitionKey('_id').ifNotExists().create()
然后我用数据填充了一个图表。现在我想通过 GraphSON 将该数据传输到另一个图形。新的图形实例具有相同的模式。
为此,我首先从填充的图表中导出数据:
graph.io(graphson()).writeGraph('/integration-data/flex-test-data.json')
但是,当我尝试将数据导入空图形实例时:
graph.io(graphson()).readGraph('/integration-data/flex-test-data.json')
我收到一个错误 "Vertices with custom IDs must have their IDs specified on creation." 这在我切换到自定义 ID 之前有效。我已确认导出文件中存在 ID。
这不可能吗?
您使用的是哪个版本的 DSE Graph 运行。此问题在 5.1.6 中已解决。
DSP-14568
我创建了一个带有自定义顶点 ID 的架构,例如:
schema.vertexLabel('foo').partitionKey('_id').ifNotExists().create()
然后我用数据填充了一个图表。现在我想通过 GraphSON 将该数据传输到另一个图形。新的图形实例具有相同的模式。
为此,我首先从填充的图表中导出数据:
graph.io(graphson()).writeGraph('/integration-data/flex-test-data.json')
但是,当我尝试将数据导入空图形实例时:
graph.io(graphson()).readGraph('/integration-data/flex-test-data.json')
我收到一个错误 "Vertices with custom IDs must have their IDs specified on creation." 这在我切换到自定义 ID 之前有效。我已确认导出文件中存在 ID。
这不可能吗?
您使用的是哪个版本的 DSE Graph 运行。此问题在 5.1.6 中已解决。
DSP-14568