Re: [Neo4j] Retrieving large-ish groups of nodes

2014-10-13 Thread Michael Hunger
The more recent versions use and index for your IN query, so it will actually use an index or constraint in this case, that fix was added after 2.0.3 though. On Mon, Oct 13, 2014 at 11:33 PM, Aru Sahni wrote: > Hi, > > Disclaimer: I'm using Neo4j 2.0.3. I know that this is far from the most >

Re: [Neo4j] Retrieving large-ish groups of nodes

2014-10-13 Thread Aru Sahni
Hi Nigel, Thanks for your response. It's relieving to hear that this might be related to the deb package I used to install Neo4j. I will experiment with that shortly. I totally get what you're saying with the data modeling bit. In my case we have already modeled our domain (i.e., these nodes alre

Re: [Neo4j] Retrieving large-ish groups of nodes

2014-10-13 Thread Nigel Small
Hi Aru Firstly, as a side note, the issue to which you link highlights a problem with the deb/rpm packages for some versions of Neo4j. The tarballs are fine and py2neo is definitely compatible with all versions from 1.8 upwards. Now to your main question Neo4j is optimised for efficient grap

[Neo4j] Retrieving large-ish groups of nodes

2014-10-13 Thread Aru Sahni
Hi, Disclaimer: I'm using Neo4j 2.0.3. I know that this is far from the most recent version, but a bug between the latest stable py2neo and 2.1.x builds have me stuck on this release . I'm writing an ETL script that needs to retrieve arou

Re: [Neo4j] Current Recommended Data Loading Tool?

2014-10-13 Thread Chris Vest
LOAD CSV should have no problem with graph structure and volume, and it's probably the easiest way to read in two small CSV files. -- Chris Vest System Engineer, Neo Technology [ skype: mr.chrisvest, twitter: chvest ] On 13 Oct 2014, at 18:41, Rodger wrote: > Dear Experts, > > I'm looking to

Re: [Neo4j] Is there any change in Neo4j internals since 1.8 till date ?

2014-10-13 Thread Awadhesh Sharma
I try to remain updated with all the presentations and releases of Neo4j, however if I have missed any updates on *internals of Neo4j since 1.8 release* ... any help for *understanding Neo4j internals* would be great ... On Wednesday, July 2, 2014 6:12:22 PM UTC+5:30, Michael Hunger wrote:versio

[Neo4j] Current Recommended Data Loading Tool?

2014-10-13 Thread Rodger
Dear Experts, I'm looking to load some Enron scandal data from two tables in MYSQL, into NEO4J. The first table is People, which is a list of email addresses, names, etc. Just under 90K rows. The second table is mailgraph, a table of who emailed who, in aggregate totals. About 360K rows.

Re: [Neo4j] Traversing Large (weighted) graphs: performance, data structure, indexes

2014-10-13 Thread Rodger
Hello, I've done a lot of RDBMS performance tuning. Just a few quick thoughts. Be sure to run the queries in the shell, if you are not already doing so. How many rows are returned? Just sorting, then returning many rows, takes a long time to scroll them to output. If you are getting duplic

Re: [Neo4j] Set time out for embedded Neo4j server in java program

2014-10-13 Thread Alex winter
Thank Michael. Actually I found the article and I did it before posting question here. It works if I open neo4j and use localhost:7474/admin and run the query. In the case I use rest to access neo4j, I can have neo4j wrap, neo4j server, neo4j database property file But for java application, it d

Re: [Neo4j] Set time out for embedded Neo4j server in java program

2014-10-13 Thread Michael Hunger
Mark wrote it up here: http://www.markhneedham.com/blog/2013/10/17/neo4j-setting-query-timeout/ On Mon, Oct 13, 2014 at 11:31 AM, Alex winter wrote: > Hi. > I create application with Neo4j. > I want to set the time out for Neo4j server when I execute cypher query or > java api function in my app

[Neo4j] Set time out for embedded Neo4j server in java program

2014-10-13 Thread Alex winter
Hi. I create application with Neo4j. I want to set the time out for Neo4j server when I execute cypher query or java api function in my application.It means if after timeout, neo4j server will turn off database and start do execute next query. How I can do this? Thanks -- You received this mes