Re: [Neo4j] Error quitting neo4j-shell and shutting down and embedded .db instance after deleting transaction logs

2016-05-31 Thread 'Chris Vest' via Neo4j
Don’t delete transaction logs. They are required for recovery in case of a crash. Set `dbms.tx_log.rotation.retention_policy` to `false` in neo4j.conf instead. This will make it keep as few logs as possible. http://neo4j.com/docs/operations-manual/current/#config_dbms.tx_log.rotation.retention_po

[Neo4j] Re: Error quitting neo4j-shell and shutting down and embedded .db instance after deleting transaction logs

2016-05-31 Thread John Fry
one addition. One quick addition: the java application will complete and leave many transaction log files behind. When I start neo4j-shell it won't open unless I delete the log files. On Tuesday, May 31, 2016 at 5:57:13 PM UTC-7, John Fry wrote: > > Hi All, > > I ran out of disk space on a mac

[Neo4j] Error quitting neo4j-shell and shutting down and embedded .db instance after deleting transaction logs

2016-05-31 Thread John Fry
Hi All, I ran out of disk space on a machine and this caused my application to crash when running neo4j in an embedded java application. I then deleted the transaction log files and this helped get the application starting again. However, when ever I try to close the DB at the end of the appl

Re: [Neo4j] Neo4j 3.0 perofrmance question

2016-05-31 Thread 'Michael Hunger' via Neo4j
I think your memory setting is wrong. On my desktop running with 4G heap, it can handle these numbers. Can you make sure to check neo4j-wrapper.conf and set the HEAP size to 12 or 16G dbms.memory.heap.max_size=16000 By default the JVM only take 1G or so of heap. > Am 01.06.2016 um 02:30 schrie

[Neo4j] Neo4j 3.0 perofrmance question

2016-05-31 Thread Joseph Wu
I install Neo4j 3.0 community version on my Desktop with 32GB of memory. I think it can handle billion of Nodes. I have a graph have about 22M nodes. I ran Match(w:WeatherEvent)-[r]->(p:ZIP) Return Count(r) and got 21180753 I ran Match(w:WeatherEvent)-[r]->(p:ZIP) delete r and got GC overhead li

Re: [Neo4j] Cypher 1.8: Relationship not found

2016-05-31 Thread 'Michael Hunger' via Neo4j
SDN 4.1.1 with OGM 2.0.2 > Am 31.05.2016 um 18:41 schrieb Eric Fulton : > > Which of those dependencies should I upgrade? You mean neo4j? > > Thanks! > Eric > > -- > You received this message because you are subscribed to the Google Groups > "Neo4j" group. > To unsubscribe from this group an

Re: [Neo4j] Nested Transactions Bolt

2016-05-31 Thread 'Michael Hunger' via Neo4j
No, but you can open a new session which has its own TX. Michael > Am 27.05.2016 um 21:24 schrieb Michael Johnson : > > Hello. I'm migrating code from Embedded Neo4J to bolt. I was wondering if > the behavior of transactions is still the same as with the embedded API. As > in if you open a

Re: [Neo4j] Neo4j: GC Monitor: Application threads blocked for

2016-05-31 Thread 'Michael Hunger' via Neo4j
Please upgrade to SDN 4.1.1 and test again. We improved a lot in the Cypher generation Michael > Am 31.05.2016 um 15:05 schrieb Roxana Ioana Roman : > > I have a Vertex node entity which has a List of relationships. > > @NodeEntity (label="User") > public class Vertex { > private Long id

[Neo4j] Re: Neo4j fails to respond

2016-05-31 Thread Eric Fulton
The latest version of OGM addresses neo4's flakiness by adding in "retry" functionality for these specific exceptions. I haven't seen it since upgrading. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receivi

[Neo4j] Nested Transactions Bolt

2016-05-31 Thread Michael Johnson
Hello. I'm migrating code from Embedded Neo4J to bolt. I was wondering if the behavior of transactions is still the same as with the embedded API. As in if you open a transaction within another transaction is the newly opened transaction treated as a "placebo transaction," or has that behavio

[Neo4j] Neo4j: GC Monitor: Application threads blocked for

2016-05-31 Thread Roxana Ioana Roman
I have a Vertex node entity which has a List of relationships. @NodeEntity (label="User") public class Vertex { private Long id; private String name; @Index(unique=true) private String email; @Relationship(type="WORKS_WITH", direction = Relationship.OUTGOING) private Li

Re: [Neo4j] Cypher 1.8: Relationship not found

2016-05-31 Thread Eric Fulton
Which of those dependencies should I upgrade? You mean neo4j? Thanks! Eric -- 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 neo4j+unsubscr...@googlegroups.com. For mor

[Neo4j] Pull Nodes from Data Using Py2neo API filtering with properrties (Without executing the cypher queries)

2016-05-31 Thread Ashwanth D
Hi, I wanted to know a way to pull the data from database using py2neo API (without executing cypher). I can create a node simply using, a= Node(Person{name:"abcd"}) In the same way, I want to retrieve a node from Graph Database. Is anything exists to pull like this. a=getNode(Perso