We are using Neo4j community edition 3.0.3 for a few months. After 
re-installed Neo4j and applications to a new system, Neo4j was able to 
start. After inserted a few hundred thousand Nodes and Relationships, we 
found:

There are no files or directories created except schema/ under 
data/databases/graph.db

>From the browser,

match(n) return count(n)
returns 431117

match ()-[r]->() return count(r)
returns 0

merge (n:People {name: "Bob"})
returns this following error: 

org.neo4j.kernel.api.exceptions.TransactionFailureException: Could not apply 
the transaction to the store after written to log

But node count will increase by one after this failure. There are still no 
other files and directories except schema/ under data/databases/graph.db

create (n:People {name: "Bob"}) return n
doesn't return at all. 

create (n:People {name: "Mary"})
returns 

org.neo4j.kernel.api.exceptions.TransactionFailureException: Could not apply 
the transaction to the store after written to log


Any idea?

Thanks,
Ray

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to