Neo4j Index creation fails

房东的猫 提交于 2019-12-12 15:08:20

问题


I am currently getting to know Neo4j and the abilities of a graph database. I also did the movie tutorial that comes with neo4j.

Now I have to work on a big database (~135 GB, 500 mio. nodes, 950 mio. relationships) and want to add an index for a special type of nodes.

This type of nodes, called Transaction, has a property called txid, which is a hash and looks like this: a56e849c19dfecbe93c9e8bfca8e6df0902775c9ecc2e082eea80436c3d93a51

I try to add the index with the cypher query:

CREATE INDEX ON :Transaction(txid)

It takes a while, throughout the process,

:SCHEMA

shows

Indexes
  ON :Transaction(txid) POPULATING

but after a while it turns to FAILED.

I checked the docs, but unfortunately i don't find any mistake why this should not work.

How to solve this problem?

来源:https://stackoverflow.com/questions/34399040/neo4j-index-creation-fails

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!