Re: [Neo4j] Multiple sessions

2011-07-01 Thread Eelco Hillenius
I'm doing that, and it works fine. Eelco On Fri, Jul 1, 2011 at 12:49 PM, Vaccaro, Kristen M wrote: > Hi, I have a question about sessions in Neo4j. I'm working with the embedded > Java (not as a server) and I can load my data and query it between > transactions without trouble. My question is

[Neo4j] reify links with other neo4j databases located on different distributed servers

2011-07-01 Thread Aliabbas Petiwala
Hi, I cannot figure out how my application logic can reify links with other neo4j databases located on different distributed servers? hence , how can i make the traversals and graph algorithms transparent to the location of the different databases ? -- Aliabbas Petiwala M.Tech CSE ___

Re: [Neo4j] Neo4j 1.4M05 Cypher exception

2011-07-01 Thread noppanit
I have another question, I changed the pom.xml file as you suggested already. When I run mvn test in the command line it runs perfectly, but when I use IntelliJ with Maven plugin it throws that error. I checked that my IntelliJ included the latest version of shell and neo4j. Anything I'm missing he

[Neo4j] wkb value in node created by addGeometryWKTToLayer

2011-07-01 Thread Boris Kizelshteyn
Craig or anyone who can answer this: what does the wkb value represent here. I know its the well known bytes, but how do I get back to wkt? I thought it was a byte array, but I can't seem to get my original values back. Form the values in the test case I have: POINT(15.2 60.1) wkb: [0,0,0,0,2,0,

Re: [Neo4j] Does anyone use Solaris for neo4j app? [was Unable to memory map [was java.io.IOException: Resource temporarily unavailable in MappedPersistenceWindow.java?

2011-07-01 Thread Paul Bandler
On 30 Jun 2011, at 23:42, Michael Hunger wrote: > I would love to look into the memory mapping issues on Solaris. There is no issue - just user mis-understanding of how it works - or doesn't if ones database is located on an NFS file-system. A little documentation on the necessary preconditio

Re: [Neo4j] problem with neography and index.

2011-07-01 Thread Max De Marzi Jr.
I don't have paging in yet... I've been slacking I know. I'll get to it soon. On Fri, Jul 1, 2011 at 7:27 AM, Michael Hunger wrote: > You have a few options here: > > * paging is right now only supported in the REST API for traversals the other > request types will get it in 1.5 (so you could u

Re: [Neo4j] PHP REST Client for Neo4j 1.3 available

2011-07-01 Thread Peter Neubauer
Todd, did the edit work out? Also, we should clean up that page and not mention all the other options, just the current bindings. WDYT? Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter

[Neo4j] Multiple sessions

2011-07-01 Thread Vaccaro, Kristen M
Hi, I have a question about sessions in Neo4j. I'm working with the embedded Java (not as a server) and I can load my data and query it between transactions without trouble. My question is whether/how it's possible to shut down my database at the end of a session and then access it in a new sess

Re: [Neo4j] traversing densely populated nodes

2011-07-01 Thread Niels Hoogeveen
It seems I was looking in the wrong place. There actually is a Btree implementation that works on the basis of nodes instead of properties. I will test this implementation to see if it has the performance characteristics we are looking for. Niels > From: pd_aficion...@hotmail.com > To: user@li

Re: [Neo4j] Neo4j 1.4M05 Cypher exception

2011-07-01 Thread Andres Taylor
Hi there, Haven't tried it, but I would guess that you have to use the same version of things. Use 1.4.M05 of neo4j-shell, or 1.4-SNAPSHOT of neo4j, and you should be good to go. Andrés On Fri, Jul 1, 2011 at 5:57 PM, noppanit wrote: > And this is my pom.xml > > >org.neo4j

Re: [Neo4j] Neo4j 1.4M05 Cypher exception

2011-07-01 Thread noppanit
And this is my pom.xml org.neo4j neo4j 1.4.M05 geronimo-jta_1.1_spec org.apache.geronimo.specs org.neo4j neo4j-

[Neo4j] Neo4j 1.4M05 Cypher exception

2011-07-01 Thread noppanit
I got this very wired exception, please help java.lang.NoClassDefFoundError: org/neo4j/graphdb/index/ReadOnlyIndex at org.neo4j.cypher.ExecutionEngine.createSourcePumps(ExecutionEngine.scala:82) at org.neo4j.cypher.ExecutionEngine.execute(ExecutionEngine.scala:36) at org.n

Re: [Neo4j] neo4j spatial bounding box vs. lat/lon

2011-07-01 Thread Boris Kizelshteyn
Hi Craig, Thanks so much for this reply. It is very insightful. Is it possible for me to implement the LineString geometries and lookups using REST? Many thanks! On Wed, Jun 8, 2011 at 4:58 PM, Craig Taverner wrote: > OK. I understand much better what you want now. > > Your person nodes are no

Re: [Neo4j] traversing densely populated nodes

2011-07-01 Thread Niels Hoogeveen
I delved a bit deeper into the BTree implementation in graph-collections and learned that it is essentially a tree based version of a property container. It is not possible to add nodes to the BTree, only primitive values. The graph based Timeline uses the BTree to store some entries, but does

Re: [Neo4j] Unexpected error

2011-07-01 Thread Michael Hunger
No but you could group them on some simple function (like the last n digits). Perhaps just the last 5 digits then you have 10k nodes with 35k index entries each. (And you can of course index those nodes with those 5 last digits so you can quickly retrieve them) (for adding to the index - or you

Re: [Neo4j] problem with neography and index.

2011-07-01 Thread Michael Hunger
You have a few options here: * paging is right now only supported in the REST API for traversals the other request types will get it in 1.5 (so you could use the paging functionality for your traverser, don't know if Max supports that already in neography) * you could use either the cypher (htt

Re: [Neo4j] Unexpected error

2011-07-01 Thread Massimo Lusetti
On Tue, Jun 28, 2011 at 2:25 PM, Rick Bullotta wrote: > Ah!  Got it.  That makes sense, and that most definitely is an EXTREME edge > case!!! ;-) Does it make more sense to have each hash index point to its own node ... so I end up having more then 350.000.000 of nodes. So does this will help?

Re: [Neo4j] problem with neography and index.

2011-07-01 Thread Laurent Laborde
the ruby crash when i request all the page with parsed = false using directly the REST interface with CURL : the result is a huge json with ~10.000 nodes is there a way to limit the result size, like a SQL "SELECT * from node where parsed == 'true' limit 100;" ? i tried using a traverser instead o

Re: [Neo4j] traversing densely populated nodes

2011-07-01 Thread Agelos Pikoulas
The Expander solution seems to be working well (thanks Michael) & the I am sure proposed B/RTree solutions could be even better. But the big question is to have this supernode/relationship indexing functionality integrated into neo4j in a coherent (perhaps plugable) way, such that can be utilized

Re: [Neo4j] problem with neography and index.

2011-07-01 Thread Michael Hunger
Can you call the index REST request manually and see what it returns? see here http://components.neo4j.org/neo4j-server/snapshot/rest.html#Index_search_-_Exact_keyvalue_lookup curl -H Accept:application/json http://localhost:7474/db/data/index/node/my_nodes/the_key/the_value%20with%20space see

Re: [Neo4j] problem with neography and index.

2011-07-01 Thread Laurent Laborde
After a few run (and more and more and more page to crawl) it seems that the result returned by the index is too big : /home/ker2x/.rvm/gems/ruby-1.9.2-p180/gems/crack-0.1.8/lib/crack/json.rb:54: stack level too deep (SystemStackError) Any idea ? workaround ? thank you -- Ker2x On Fri, Jul 1,

[Neo4j] Possibility of extending Zookeeper features to App Server

2011-07-01 Thread Brendan Cheng
Hi, I'm very interested your HA architecture and wonder if possible to extend the zookeeper features in order to cover the jobs for an app server. So that, we can have much simply architecture. The jobs for app server includes user authentication, encryption service for communication..etc. from y

Re: [Neo4j] problem with neography and index.

2011-07-01 Thread Laurent Laborde
I used Base64.encode64 instead ! it still didn't worked. So i used Base64.encode64 and get_node_index instead of find_node_index and it worked \o/ -- Ker2x On Fri, Jul 1, 2011 at 10:25 AM, Laurent Laborde wrote: > thank you for your help. > as you probably noticed i'm not good with ruby (i'm a

Re: [Neo4j] problem with neography and index.

2011-07-01 Thread Laurent Laborde
thank you for your help. as you probably noticed i'm not good with ruby (i'm a sysadmin ^^) i tried using URI.encode but it doesn't works as expected. irb(main):001:0> require 'uri' => true irb(main):002:0> puts URI.escape("http://www.over.blog.com/";) http://www.over.blog.com/ => nil irb(main):0

[Neo4j] polyglot persistence for neo4j

2011-07-01 Thread Aliabbas Petiwala
i would be interested in knowing about anyone who has combined neo4j graph db with other dbs like Cassandra ,orient db what is an optimal configuration to do so? any other configurations for polyglot persistence to achieve high scalability and massive parallelism? -- Aliabbas Petiwala M.Tech CSE