Re: [Neo4j] Online Backup : wich package?

2010-06-10 Thread Batistuta Gabriel
I progress slowly...but I have a new error. Here is my code : //create the graph neo = new EmbeddedGraphDatabase(CONSTANTS.GRAPH_PATH); graph = ObjectGraphFactory.instance().get(neo); for (String datasource : new String[]{nioneodb, lucene}) {

Re: [Neo4j] Online Backup : wich package?

2010-06-10 Thread Tobias Ivarsson
This error come from not configuring Neo4j to keep its logical logs. The keepLogicalLogs( true ) parts need to be there for the part of the code where you do the backups. Cheers, Tobias On Thu, Jun 10, 2010 at 10:16 AM, Batistuta Gabriel batistutagabrielf...@gmail.com wrote: I progress

Re: [Neo4j] Online Backup : wich package?

2010-06-10 Thread Batistuta Gabriel
The keepLogicalLogs( true ) parts need to be there for the part of the code where you do the backups. What does it means in my case? My part of code is not correct? Because if I understand, you mean that I need to use the code keepLogicalLogs( true ) in the same class where I do my

Re: [Neo4j] Online Backup : wich package?

2010-06-10 Thread Tobias Ivarsson
Here is a quick patch of your code (I haven't tried it, but it shows the conceptual difference): neo = new EmbeddedGraphDatabase(CONSTANTS.GRAPH_PATH); for (String datasource : new String[]{nioneodb, lucene}) { neo.getConfig().getTxModule().getXaDataSourceManager()

[Neo4j] Neo4j and nosql at FOSS4G

2010-06-10 Thread Craig Taverner
Hi all, The list of presenters for the FOSS4G conference in Barcelona in September is now available at http://2010.foss4g.org/presentations_gen_sel.php I see a few that are of interest to nosql people (us): - Geospatial Indexing with *MongoDB* - Kristina Chodorow - GeoCouch: A spatial

Re: [Neo4j] Online Backup : wich package?

2010-06-10 Thread Batistuta Gabriel
Many thanks : It's running now! Is it possible to define the place where we want to set the backup log of the class Neo4jBackup? Best, Bat Le 10-juin-10 à 11:17, Tobias Ivarsson a écrit : Here is a quick patch of your code (I haven't tried it, but it shows the conceptual difference):

Re: [Neo4j] Online Backup : wich package?

2010-06-10 Thread Anders Nawroth
Hi! Batistuta Gabriel wrote: Is it possible to define the place where we want to set the backup log of the class Neo4jBackup? I committed a change that will let you decide which file the log is written to. It's found here: