[Neo4j] Re: http logging not working

2014-09-01 Thread havywong
I am facing the same problem, any update on it ? my version is 2.0.1 Thanks! 在 2014年4月11日星期五UTC+8下午9时21分16秒,Alex Frieden写道: > os x 10.8.5 > neo4j 2.0.0 community > > Haven't changed the neo4j-http-logging.xml > > > In neo4j-server.properties > org.neo4j.server.http.log.enabled=true > org.neo4j.se

Re: [Neo4j] Wildcard character in CYPHER

2014-09-01 Thread Michael Hunger
If you have an efficient implementation of that, right now it might be. We'll be adding full FTS functionality to cypher in a later release, right now you can use the legacy full-text-index as you've seen in my blog post. In terms of performance -> Neo4j uses Lucene under the hood, you can certai

Re: [Neo4j] Facing issues in creating HA cluster of embedded server

2014-09-01 Thread Michael Hunger
Can you share all you graph.db/messages.log ? Sent from mobile device Am 01.09.2014 um 16:33 schrieb Kishore Kumar Garg : > Hi, > > I am setting up a HA cluster of Neo4J embedded server(with spring big data) > and Neo4j version is 2.0.3. > However, it is not getting started though hosts are i

Re: [Neo4j] Wildcard character in CYPHER

2014-09-01 Thread Mukesh Khandelwal
Is it better to use a Patricia (Trie) data structure to store the nodes that need to be 'wildcard searched' ? How does the Neo4j match compare with storing the data in a Trie data structure in terms of performance, memory, etc? On Monday, September 1, 2014 1:19:00 PM UTC+5:30, Michael Hunger

Re: [Neo4j] Re: GC thrashing

2014-09-01 Thread José Cornado
Ok. Between the last time I ran an scenario of 100's of thousands of nodes and this time, I changed the way data was harvested. Before I was using global graph operations, which made the next step in our logic inefficient (pushing data through a memory mapped file) because value nodes could com

[Neo4j] Re: Facing issues in creating HA cluster of embedded server

2014-09-01 Thread Mark Findlater
Did you open 6001 as well? The documentation states that 6001 is used to ' listen for cluster communications on the network interface'.. M On Monday, 1 September 2014 20:48:18 UTC+1, Kishore Kumar Garg wrote: > > Yes, I also tried with setting up ha.server=192.168.1.3:6001 but got the > same re

[Neo4j] Re: Facing issues in creating HA cluster of embedded server

2014-09-01 Thread Kishore Kumar Garg
Yes, I also tried with setting up ha.server=192.168.1.3:6001 but got the same result. Port 5001 is open on all the nodes. However, I am not sure if I have to open any other port too for setting up the cluster. Please let me know the port numbers you open in your cluster. Thanks, Kishore On Mon

Re: [Neo4j] [2.1+] Possibility to lock a running database instance with Cypher or Shell

2014-09-01 Thread Christophe Willemsen
Thank you. Le lundi 1 septembre 2014 21:17:56 UTC+2, Chris Vest a écrit : > > If you have the enterprise version, then the backup tool can take a backup > of the database while it is running. Then you can start a read-only > instance up on the backup and that would effectively be a snapshot, tho

Re: [Neo4j] [2.1+] Possibility to lock a running database instance with Cypher or Shell

2014-09-01 Thread Chris Vest
If you have the enterprise version, then the backup tool can take a backup of the database while it is running. Then you can start a read-only instance up on the backup and that would effectively be a snapshot, though obviously you'd need enough storage space for the backup. -- Chris Vest Syste

Re: [Neo4j] [2.1+] Possibility to lock a running database instance with Cypher or Shell

2014-09-01 Thread Christophe Willemsen
Thanks Peter, I will elaborate a bit. This would be a read only mode for all clients that can connect to the database, I would like to lock the write mode while doing snapshots of the database store. Le lundi 1 septembre 2014 21:08:05 UTC+2, Peter Neubauer a écrit : > > you can run the shell re

Re: [Neo4j] [2.1+] Possibility to lock a running database instance with Cypher or Shell

2014-09-01 Thread Peter Neubauer
you can run the shell readonly, http://docs.neo4j.org/chunked/snapshot/shell-starting.html#read-only-mode G: neubauer.peter S: peter.neubauer P: +46 704 106975 L: http://www.linkedin.com/in/neubauer T: @peterneubauer Open Data- @mapillary Open Source - @neo4j Open Future - @coderdojo

[Neo4j] [2.1+] Possibility to lock a running database instance with Cypher or Shell

2014-09-01 Thread Christophe Willemsen
Hello, I would like to know if there is a possibility to lock or set read-only mode a running database instance with cypher or the neo4j-shell ? Thanks Chris -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop re

[Neo4j] Re: Facing issues in creating HA cluster of embedded server

2014-09-01 Thread Mark Findlater
When running on a single server I guess you set all the ports differently, when running on multiple servers did you also set the ha.server value? I set allow_init_cluster to true as who knows which server I will start first on any given day! What messages are you seeing in the logs when startin

[Neo4j] Re: Facing issues in creating HA cluster of embedded server

2014-09-01 Thread Kishore Kumar Garg
Thanks Mark. However, even after giving the values of ha.cluster_server, I was not able to start it. I tried the same setup on single server and I was able to start 2 embedded server instances of Neo4j and one arbiter instance. Then, I was trying to replicate the same setup on 3 different hosts

[Neo4j] Re: Facing issues in creating HA cluster of embedded server

2014-09-01 Thread Mark Findlater
If Host 1 is starting OK, does it have the allow_init_cluster configuration value set to true? You can verify that it is failing to join by setting the ha.cluster_join_timeout configuration entry to some value in seconds. I think each of your ha.initial_hosts values should contain all of the se

[Neo4j] Spatial Containment

2014-09-01 Thread Alireza Rezaei Mahdiraji
Hi All, I would like to find nodes of the graph which are completely (not partially) contained in a given Envelope. I tried several GeoPipeline methods but it seems they all consider partial containment. Any idea? Thanks, Best, Alireza -- You received this message because you are subscri

[Neo4j] Re: Facing issues in creating HA cluster of embedded server

2014-09-01 Thread Kishore Kumar Garg
Current behavior:- Host 1 starts perfectly fine. However, when I start the 2nd host it hangs for life time and never came out of it. I noticed this happens when it is not able to connect to the cluster created by Host 1. Please let me know if I am missing something. Thanks, Kishore On Monday

[Neo4j] Facing issues in creating HA cluster of embedded server

2014-09-01 Thread Kishore Kumar Garg
Hi, I am setting up a HA cluster of Neo4J embedded server(with spring big data) and Neo4j version is 2.0.3. However, it is not getting started though hosts are in same network and I am able to telnet on port 5001 on each node. Please find below the HA properties for each node below:- Host 1:-

Re: [Neo4j] Re: Correct Cypher Query to return all Objects that match the ids.

2014-09-01 Thread apprentice321
I assumed it was a typo so I replaced it with quotes. I placed it back. On Monday, September 1, 2014 1:12:09 PM UTC+1, Michael Hunger wrote: > > These were not single quotes but backticks!! > > Am 01.09.2014 um 14:07 schrieb appren...@googlemail.com : > > Works after removing the single quotes.

Re: [Neo4j] Re: Correct Cypher Query to return all Objects that match the ids.

2014-09-01 Thread Michael Hunger
These were not single quotes but backticks!! Am 01.09.2014 um 14:07 schrieb apprentice...@googlemail.com: > Works after removing the single quotes. > > > > On Monday, September 1, 2014 12:42:02 PM UTC+1, Mark Findlater wrote: > It looks like accountId is not the Node ID, is that correct? In w

[Neo4j] Re: Correct Cypher Query to return all Objects that match the ids.

2014-09-01 Thread apprentice321
Works after removing the single quotes. On Monday, September 1, 2014 12:42:02 PM UTC+1, Mark Findlater wrote: > > It looks like accountId is not the Node ID, is that correct? In which case > I think that you should be using something like: > > Query("MATCH (account:`Account`) WHERE account.acc

[Neo4j] Re: Correct Cypher Query to return all Objects that match the ids.

2014-09-01 Thread Mark Findlater
It looks like accountId is not the Node ID, is that correct? In which case I think that you should be using something like: Query("MATCH (account:`Account`) WHERE account.accountId IN {0} RETURN account") public List findAllByAccountId(Set ids); If you are using SDN (I think that you are?) and

Re: [Neo4j] [Neo4J 2.1.2] / Cypher / Returning array property associated to an aggregate in one shot

2014-09-01 Thread michael azerhad
Hi Michael, Good to know :) Thanks a lot for warning me! Michael Le 1 sept. 2014 à 13:17, Michael Hunger a écrit : > Hi Michael, > > thanks again for pointing it out. It was a Cypher Bug which is fixed in the > next release. > > A workaround is to convert the array into a collection

Re: [Neo4j] [Neo4J 2.1.2] / Cypher / Returning array property associated to an aggregate in one shot

2014-09-01 Thread Michael Hunger
Hi Michael, thanks again for pointing it out. It was a Cypher Bug which is fixed in the next release. A workaround is to convert the array into a collection as you already showed. Cheers, Michael Am 08.08.2014 um 18:05 schrieb Michael Azerhad : > I've just updated the graphgist: http://gist

[Neo4j] Correct Cypher Query to return all Objects that match the ids.

2014-09-01 Thread apprentice321
Whats the correct cypher query to return all accounts matching the property "accountId" contained in a list. Here is my attempt. @Query("start account=node:(*) ID(account) in account.accountIds{accountIds} return account;") public List findAllByAccountId(Set ids); -- You received this me

Re: [Neo4j] Cypher MERGE operation isolation

2014-09-01 Thread Mark Findlater
I have failed to resolve this and have raised a question over on SO: http://stackoverflow.com/questions/25603163/neo4j-cypher-merge-query-isolation-level M On Friday, 29 August 2014 19:56:14 UTC+1, Mark Findlater wrote: > > I understand, and I have corrected that. Unfortunately I still have the

Re: [Neo4j] Wildcard character in CYPHER

2014-09-01 Thread Michael Hunger
You can still use FullTextSearch with legacy indexes and neo4j 2.0, see here: http://jexp.de/blog/2014/03/full-text-indexing-fts-in-neo4j-2-0/ Am 12.08.2014 um 22:42 schrieb Wes Freeman : > No. Schema/label indexes are only exact lookups yet. > > Wes > > On Tue, Aug 12, 2014 at 4:34 PM, Alan R