-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial import doesn't work. #46
Comments
Neo4J Version : 3.2.2 |
Also experiencing this. Would be happy if someone shares a way to make this work. |
Same here, creating/updating a node works but impossible to import the nodes already in place when the plugin was installed. It feels like I'm gonna have to copy all the nodes and relationships... EDIT So sorry.... Just keep readings the threads and as said by jexp : i runed twice and now i can take my meal |
I was going to put a comment also that mine not working, but thanks to the idea:
and then i come up with another trouble which is i see that neo4j.log said |
reverse() did not work for me. Neo4j complained about a type issue... suggesting that I cast something as a string. I will work on that. But this needs to work unless I am missing something because I need to be able to set analyzer settings on the mappings and do not want to have to unwind everything just so I can re-index with those new mappings. (delete all documents and re-populate without having to delete the entire index/mappings). I wanted to add a node field to an existing index... couldn't do it. |
@cafarmer reverse is for reversing lists. It seems that it's not what you are trying to import in ES. Just use any transformation in order to trigger the plugin. For instance, if you are trying to push integers, just do +1 then -1 (maybe doing +0 works, I didn't try it). |
Neo4J Version : 3.2.2
ElasticSearch : 6.2.2
Hello
My graph.db consists of the nodes that are provided in the example in Neo4j browser. This example consists of Person and Movie.
The data flows between neo4j and elastic when we perform a create of these nodes.
However, if I delete all indexes and try to force a import by following the instructions below, I do not see anything happening.
To perform an initial import, I tried to execute the following commands to force a commit by executing a Cypher query like:
MATCH (n:Person)
SET n.name = n.name;
MATCH (n:Movie)
SET n.title = n.title;
This has no effect and the elastic db doesn't seem to get the data from Neo4J.
What is it that I could be doing wrong here? Any help would be really useful
Thanks
Sriram
The text was updated successfully, but these errors were encountered: