我正在从一个表中导入 23 亿个关系,导入速度不是很快,每小时 500 万个,这需要 20 天才能完成迁移。我听说过 neo4j 批量插入和批量插入实用程序。该实用程序通过从 csv 文件导入来做一些有趣的事情,但最新的代码有些损坏并且无法运行。
我在 neo4j 中有大约 100M 的关系,我必须检查是否有重复的关系。
我怎样才能快速neo4j中的东西
按当前代码就像
begin transaction
for 50K relationships
create or get user node for user A
create or get user node for user B
check there is relationship KNOW between A to B if not create the relationhsip
end transaction
我还阅读了以下内容: