Re: [Neo] displaying very large graph

2010-03-18 Thread Laurent Laborde
i found a page that link a lot of graph visualisation tools : http://www.mkbergman.com/414/large-scale-rdf-graph-visualization-tools/ i'll dig it this weekend :) -- Ker2x On Fri, Mar 19, 2010 at 12:07 AM, Laurent Laborde wrote: > Friendly greetings ! > > i wish to display very large graph. ( h

[Neo] displaying very large graph

2010-03-18 Thread Laurent Laborde
Friendly greetings ! i wish to display very large graph. ( hundreds of thousands of node, or many millions of node if possible). - graphviz probably won't do it. - my processing app is 100% sure to explode i found that, but didn't tried it yet : http://bioinformatics.icmb.utexas.edu/lgl/ Large Gr

Re: [Neo] Something fun to try in neo4j : collatz conjecture

2010-03-18 Thread Laurent Laborde
i quickly hacked an app to populate the neo4j database with the collatz conjecture graph. here it is http://github.com/ker2x/Collatz4Neo/blob/master/collatz4neo.java and the code is ugly, but it just works(c)(r)(tm) now the problem is to find a way to graph millions of nodes. :/ something like thi

Re: [Neo] basic questions

2010-03-18 Thread Lincoln
Cool, I'm going to take a look. Thanks Niels. On Thu, Mar 18, 2010 at 1:34 PM, Niels Hoogeveen wrote: > > Github project is up and running: > http://github.com/NielsHoogeveen/Scala-Neo4j-utils > > For now it contains only one file with my first attempt writing a traverser > in Scala. > > Scala v

Re: [Neo] basic questions

2010-03-18 Thread Niels Hoogeveen
Github project is up and running: http://github.com/NielsHoogeveen/Scala-Neo4j-utils For now it contains only one file with my first attempt writing a traverser in Scala. Scala version 2.8 is required. Kind regards, Niels Hoogeveen > From: linxbet...@gmail.com > Date: Wed, 17 Mar 2010 22:21

Re: [Neo] Question regarding nioneo_logical.log

2010-03-18 Thread Mattias Persson
2010/3/18 Rick Bullotta : > Cool.  So the only transactions that could be "lost" would be ones that were > uncommitted prior to the crash. Precisely > > -Original Message- > From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On > Behalf Of Tobias Ivarsson > Sent: Thurs

Re: [Neo] basic questions

2010-03-18 Thread Niels Hoogeveen
Hi Marko, While I am not claiming that a traverser in Scala would be as powerful as Gremlin, the combination of for comprehensions and traversals allows for a concise formulation of working with graphs in Neo4J. In my previous post I already mentioned the use of for comprehensions which allow

Re: [Neo] Something fun to try in neo4j : collatz conjecture

2010-03-18 Thread Peter Neubauer
Still, very cool, and processing rocks! Cheers, /peter neubauer COO and Sales, Neo Technology GTalk: neubauer.peter Skype peter.neubauer Phone +46 704 106975 LinkedIn http://www.linkedin.com/in/neubauer Twitter http://twitter.com/peterneubauer http://www.neo4j.org

Re: [Neo] Question regarding nioneo_logical.log

2010-03-18 Thread Rick Bullotta
Cool. So the only transactions that could be "lost" would be ones that were uncommitted prior to the crash. -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Tobias Ivarsson Sent: Thursday, March 18, 2010 9:55 AM To: Neo user discussi

Re: [Neo] Question regarding nioneo_logical.log

2010-03-18 Thread Tobias Ivarsson
If the system crashes Neo4j will begin the next startup with a recovery phase. During the recovery phase the logical log will be replayed. This reapplies all committed transactions, bringing Neo4j back to the state it was in before the crash. Cheers, Tobias On Thu, Mar 18, 2010 at 2:27 PM, Rick B

Re: [Neo] Question regarding nioneo_logical.log

2010-03-18 Thread Rick Bullotta
Thanks for the info. That triggers more questions, of course. So what happens if the system crashes before the log is rotated? Will all of the transactions in the log be rolled back (even if they have already been committed)? Or will they be "flushed" on startup? -Original Message- Fro

Re: [Neo] basic questions

2010-03-18 Thread Niels Hoogeveen
I don't have a github project yet. The code is still in a non-distributable stage (trial and error snippets, no test code), but hopefully in a couple of days I will be able to put it out. > From: linxbet...@gmail.com > Date: Wed, 17 Mar 2010 22:21:49 -0500 > To: user@lists.neo4j.org > Subject:

Re: [Neo] basic questions

2010-03-18 Thread Anders Nawroth
Hi! Interesting thread :-) Craig Taverner wrote: > of original data. The developers answered that they would store the node-ids > of the original data in an int[] property. That answer totally took me by > surprise, and it took a few seconds for me to realize that it would work for > the initial

Re: [Neo] LuceneIndexService dependencies on EmbeddedGraphDatabase

2010-03-18 Thread Tobias Ivarsson
As you say, a meta model validator is something that would sit nicely on top of the event framework. And the plans for such a component is to not work on it before the event framework is in place. Regarding the timeline for the event framework it looks like we could have a first version in the repo

Re: [Neo] Optimizing traversing a path

2010-03-18 Thread Tobias Ivarsson
If these numbers don't need to be declared ahead of time, but instead you can let them be defined by Neo4j, you could use the relationship IDs for this, then use GraphDatabaseService#getRelationshipById(id) to retrive them. Then get the nodes from the relationship objects. Cheers, Tobias On Wed,

Re: [Neo] Question regarding nioneo_logical.log

2010-03-18 Thread Tobias Ivarsson
The logical log is rotated when it grows to 10M. When the log is rotated the data is "flushed" to the respective stores. What sizes are you seeing on the logical log? If its (much) larger than 10M, and you haven't configured Neo4j to use a larger logical log, then we will need to look into why tha