Re: [Neo4j] Neo4j: Ver 3.0.4 delete and re-insert label corruption

2016-09-02 Thread Kevin McGinn
I deleted the index and attempted to restart. After an hour, I received an out of memory error. I changed the heap size from 4G to 8G and retried. After 45 min. I received the error: Caused by: java.lang.IllegalStateException: Index entered FAILED state while recovery waited for it to be fully pop

Re: [Neo4j] Neo4j: Ver 3.0.4 delete and re-insert label corruption

2016-09-02 Thread 'Michael Hunger' via Neo4j
That sounds really unusual. Can you stop the server and delete $NEO4J_HOME/data/databases/graph.db/schema/label and restart, then the label index should be rebuilt. also please share the result of the "schema" command. Michael > Am 02.09.2016 um 14:28 schrieb Kevin McGinn > : > > The count

Re: [Neo4j] Neo4j: Ver 3.0.4 delete and re-insert label corruption

2016-09-02 Thread Kevin McGinn
The count of 29 is via the command: match(n:clients) return count(*); The query match(n:clients) return n; returns an empty set. ClientsID had a unique constraint defined on. I dropped it with the intent of re-creating in hopes it would help correct the problem. Currently, I can not

Re: [Neo4j] How to show embedded database in the browser in Linux?

2016-09-02 Thread 'Michael Hunger' via Neo4j
You have to set both, the directory and the active database dbms.directories.data=/home/behrang/demo dbms.active_database=neo.db > Am 16.05.2016 um 16:32 schrieb Behrang Saeedzadeh : > > I have created and populated an embedded database in: > > /home/behrang/demo/neo.db > > I have also create

[Neo4j] Re: How to show embedded database in the browser in Linux?

2016-09-02 Thread Sanjeev Kumar
Hi , I am facing the same issue on linux environment. Can you publish the solution plz? On Monday, May 16, 2016 at 8:02:36 PM UTC+5:30, Behrang Saeedzadeh wrote: > > I have created and populated an embedded database in: > > /home/behrang/demo/neo.db > > > I have also created a configuration file

Re: [Neo4j] Neo4j: Ver 3.0.4 delete and re-insert label corruption

2016-09-02 Thread 'Michael Hunger' via Neo4j
This sounds very unsual. Where does the count show 29 ? Do you have a constraint on clients(ClientsID) ? please note that both labels and properties are case-sensitive Are you sure that your row.ClientsID is unique ? Can you share the full error, it misses the second part that explains the dupl

Re: [Neo4j] LockClient can't wait on resource RWLock

2016-09-02 Thread 'Michael Hunger' via Neo4j
The reason is: for creating/deleting a relationship both end-nodes are locked and if you have one thread locking a, then trying b while another does b, then tries a, none can proceed and one of the transactions will be killed with a deadlock exception. Update to 3.0.4 recommended is to retry t