Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-13-2020 11:53 PM
Hi,
i want to integrate neo4j with elasticsearch. I followed https://github.com/neo4j-contrib/neo4j-elasticsearch
rrestart neo4j
open localhost:9200 but the result error using this url http://localhost:9200/person/_search?q=name:Rain
what did i do wrong?
Thank you for helps.
Solved! Go to Solution.
12-21-2020 08:13 AM
Done to export movie database to elasticsearch using this command.
MATCH (n:Movie)
Call apoc.es.post("localhost","movie_cluster","movie",toString(id(n)),{title:n.title,tag:n.tagline})
yield value return *
12-20-2020 03:53 PM
Which neo4j version did you use?
The plugin was not updated to recent versions of Neo4j.
Can you check the neo4j logs for any error messages.
12-21-2020 03:21 AM
i success show data after install elastic search 7.1
I use neo4j version 4.2. i push data using this command
call apoc.es.post("localhost","tweets","users",null,{name:"Chris"})
Then i go to url localhost:9200
it shows the data.
But i want to show the data from movie-graph database in elasticsearch. I noticed that the new version to integrate neo4j and elasticsearch is using APOC.
But i don't know how to do that.
Thank you.
12-21-2020 08:13 AM
Done to export movie database to elasticsearch using this command.
MATCH (n:Movie)
Call apoc.es.post("localhost","movie_cluster","movie",toString(id(n)),{title:n.title,tag:n.tagline})
yield value return *
All the sessions of the conference are now available online