Hi,Trying to import very large dataset, I see a huge difference between cypher and neo4j-importSadly:1) It's already deprecated, yet I can't find any documentation nor real examples using its successor: neo4j-admin import
2) Even current documentation is limited to a very simple 2 nodes types and a simple relation between them, can't find how to use a more complex graph.
3) Import is supported only on an empty database, so there is no way to use it to import a batch of data into existing database, or create a complex graph by importing nodes and more complex relations.
--Any solution to these?
You received this message because you are subscribed to the Google Groups "Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
1) It's already deprecated, yet I can't find any documentation nor real examples using its successor: neo4j-admin importneo4j-admin import has built in help, but it's mostly just a different script around the neo4j-import code.
2) Even current documentation is limited to a very simple 2 nodes types and a simple relation between them, can't find how to use a more complex graph.here is some other documentation:
3) Import is supported only on an empty database, so there is no way to use it to import a batch of data into existing database, or create a complex graph by importing nodes and more complex relations.Yes, this is currently a limitation, but it is meant to be accomodated in the future.
Dear Michael,Thanks for the answer.1) It's already deprecated, yet I can't find any documentation nor real examples using its successor: neo4j-admin importneo4j-admin import has built in help, but it's mostly just a different script around the neo4j-import code.That's the complain, it's very much Linux like, where some documentation can be found on the help, but nothing on the website, and no tutorials.
For people used to the tool and have been working with it for long, that documentation does make sense, but for people new to the technology, it's too abstract and confusing (and I have 20 years+ of dev experience).
2) Even current documentation is limited to a very simple 2 nodes types and a simple relation between them, can't find how to use a more complex graph.here is some other documentation:Thanks for the links, that I've seen as well as some other use case.For my understanding, this still a simple relation between 2 different nodes. What I mean by more complex graph is something that can be done in Cypher, such as some "if/else" comparisons, etc.I'll give it another shot, even if it means duplicating the data or so (cases when multipl ids are present, for example, a "Content" can have "Creator ID", "Category ID", "Size ID", so being able to match with more than 2 nodes at a time would be awesome)
3) Import is supported only on an empty database, so there is no way to use it to import a batch of data into existing database, or create a complex graph by importing nodes and more complex relations.Yes, this is currently a limitation, but it is meant to be accomodated in the future.Thanks, that's a great news, hopefully it's a near future, as it's highly important when needing to work with high frequency data that needs to be imported in batches.
Sincerely,Farid