neo4j-contrib / neo4j-elasticsearch

Neo4j ElasticSearch Integration
Apache License 2.0
210 stars 79 forks source link

No indexes created on ES, no comm between Neo4j and ES #22

Closed abhi2528 closed 8 years ago

abhi2528 commented 8 years ago

Hi,

I have followed the tutorial line by line and completed all steps successfully. I did not get any error but I dont see the ES integration working. Creating nodes on Neo4j or updating properties is not reflecting anywhere on ES. I am working on Neo4j v2.3.3 on a Windows 10 machine.

I have the following jars in my "C:\Program Files\Neo4j CE 2.3.3\plugins" directory:

image

My neo4j.properties looks like this:

dbms.security.auth_enabled=false elasticsearch.host_name=http://localhost:9200 elasticsearch.index_spec=htag:Hashtag(tag)

My db is named "first" and is in my E:/neodbs/first location.

Also I dont see any conf folder anywhere. So I created neo4j.properties in the following locations:

E:/neodbs/first/neo4j.properties ---> this is already there C:\Program Files\Neo4j CE 2.3.3\conf\neo4j.properties --> created manually C:\Program Files\Neo4j CE 2.3.3\bin\conf\neo4j.properties --> created manually E:\neodbs\first\conf \neo4j.properties --> created manually

ES is working fine and I can run some tests using "Sense" chrome extension. Also mvn.cmd tests run fine with no failure.

Now creating a node via neo4j browser using:

CREATE (n:Hashtag {tag:"dfsdfxcvsfd"})

or doing:

match (n:Hashtag) SET n.tag = n.tag does nothing.

I am really excited about putting an ES layer on top of Neo as that will help me out significantly.

Thanks Abhi

abhi2528 commented 8 years ago

Hi,

I dont know why or how, but restarting my machine a couple of times solved the issue. I am not sure if there is an ínherent' issue here. I am closing this issue for now.