Re: [Neo4j] Results not appearing neo4j query

2015-05-06 Thread Dan Tascher
match n return n On Wednesday, May 6, 2015 at 8:55:22 PM UTC-4, Michael Hunger wrote: > > Please share your query. > > Michael > > Am 06.05.2015 um 15:17 schrieb Dan >: > > In the console it looks like there is an overflow trying to build the tree: > > {"results":[],"errors":[{"code":"Neo.Database

Re: [Neo4j] :Schema query never finishes

2015-05-06 Thread Michael Hunger
No never seen that, can you provide: data/graph.db/messages.log also look in the javascript console which version are you using? Can you try to run "schema" here: http://localhost:7474/webadmin/#/console/ Thx Michael > Am 06.05.2015 um 11:52 schrieb

[Neo4j] query timeout and neo4j web interface

2015-05-06 Thread Dan
Hello, I have a question about enabling the query timeout option in neo4j 2.2.0 I added this to my neo4j.properties file: *execution_guard_enabled=true* And I added this line to my neo4j-server.properties file: *org.neo4j.server.webserver.limit.executiontime=1000* But when I run queries no ti

[Neo4j] Re: array size exceeds maximum allowed size

2015-05-06 Thread Sumit Gupta
hi, Please provide the exact exception along with the modified parameters. Thanks, Sumit On Wednesday, 6 May 2015 20:21:51 UTC+5:30, Clark Richey wrote: > > Hello, > I’m running Neo4J 2.2.1 with 150G heap space on a box with 240G. I set the > neo4j.neostore.nodestore.dbms.pagecache.memory > to

[Neo4j] Re: Neo4j security question

2015-05-06 Thread Sumit Gupta
Yes Token based security is still there in Neo4j. Thanks, Sumit On Thursday, 7 May 2015 00:11:07 UTC+5:30, cui r wrote: > > Thanks for the info, Sumit. Just want to check whether the token based > implementation is still there or not. > > In our case, we have to have security check in place due

[Neo4j] Re: Shortest path

2015-05-06 Thread david fauth
Something like this should work: MATCH p=shortestPath(a)-->(b)-->(c) WHERE a.name='Alice' AND b.name='Bob' AND c.name='Daniel' RETURN extract(n IN nodes(p)| n.name) AS extracted On Wednesday, May 6, 2015 at 11:29:47 AM UTC-4, FERHAT Ilyes wrote: > > Hi, > I'm trying to find the shortest path bet

[Neo4j] Re: Neo4j security question

2015-05-06 Thread cui r
Thanks for the info, Sumit. Just want to check whether the token based implementation is still there or not. In our case, we have to have security check in place due to company policy. I disabled Neo4j security and implement a LDAP based security check. But LDAP check is expensive in the high t

[Neo4j] Shortest path

2015-05-06 Thread FERHAT Ilyes
Hi, I'm trying to find the shortest path between two given nodes, the path contains several nodes that contain a name and other properties! Is there a cypher query that returns only the names of the nodes that belong to this shortest path ?! -- You received this message because you are subscribed

[Neo4j] array size exceeds maximum allowed size

2015-05-06 Thread Clark Richey
Hello, I’m running Neo4J 2.2.1 with 150G heap space on a box with 240G. I set the neo4j.neostore.nodestore.dbms.pagecache.memory to 60G (slightly less than 75% of remaining system memory as recommended). However, when I startup I get an error that the system can’t start because I’m trying to al

[Neo4j] Re: Results not appearing neo4j query

2015-05-06 Thread Dan Tascher
They do have a relationship, but when it never renders it says they have no relationship. On Tuesday, May 5, 2015 at 10:01:47 PM UTC-4, Sumit Gupta wrote: > > Sorry - I missed to see the image in your last post. > > There could be a bug in UI that it cannot graphical represent 8K nodes on > spec

Re: [Neo4j] Re: Results not appearing neo4j query

2015-05-06 Thread Dan Tascher
Ok, I will check. I've left it for several hours with no graph image appearing. Is there some setting I can change if it is timing out or something? On Wednesday, May 6, 2015 at 2:23:18 AM UTC-4, Michael Hunger wrote: > > Also check the js console of your browser > > Most likely it is only bus

Re: [Neo4j] from Neo4j1.9.9 to Neo4j 2.2.0 exception querying Lucene

2015-05-06 Thread Rita
Thank you very much for the bug fix https://github.com/neo4j/neo4j/pull/4509 When will be possibile to have this solution into a new release? Rita Il giorno lunedì 20 aprile 2015 10:37:15 UTC+2, Rita ha scritto: > > Hi Mattias, > thank you for the reply

[Neo4j] :Schema query never finishes

2015-05-06 Thread dav prz
Hello, I've been playing with a neo4j db, I have two indexes on fields, and cypherwise everything works alright. Except that querying :schema never finishes. Anybody getting the same behaviour? Is there anything I can provide as feedback (logs ..etc?) -- You received this message because you a

[Neo4j] Re: Choosing the right NoSQL storage for highly connected and flexible domain

2015-05-06 Thread Don Kittle
Hi Hamid, I'm using both Neo4j and OrientDB in two different projects. OrientDB has a smaller community on SO (even if it's growing very quickly), but the Community Group is very active, even more than this group for Neo4j: https://groups.google.com/forum/#!forum/orient-database Hope can help,

[Neo4j] neo4j returning number of nodes and relationships created

2015-05-06 Thread Rakesh Singha
I have a python function that adds nodes and relationship to the graph. I have added the nodes and relationship using graph.cypher.execute(). arr_len = len(dic_st[story_id]['PER']) for j in dic_st[story_id]['PER']: graph.cypher.execute("MERGE (n:PER {name:{name}})",name = j[0