Re: [Neo4j] Add to Index REST API Question

2011-03-11 Thread Peter Neubauer
Kevin,
could you provide the REST sequence you are doing, so I could
reproduce the case? Basically, inserting a node, creating an index,
adding the ndoe to it and retrieve it.

Is that possible?

Cheers,

/peter neubauer

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               - Your high performance graph database.
http://startupbootcamp.org/    - Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



On Thu, Mar 10, 2011 at 6:12 PM, Kevin Dieter kevin.die...@megree.com wrote:
 Hi,

 I have a .Net application that makes heavy use of entities (nodes) and
 relationships between them.  I am currently using a SQL database to manage
 this, but I know it won't scale the way I need it to, so I am looking to
 implement Neo4j as a solution.  I am using the server and REST APIs and I've
 been able to create nodes, relationships, and properties with no problems.

 I have a couple of questions:
 1) Since I will keep the SQL database as part of my app to store and manage
 other data elements (including some properties associated with the entities
 that will be in the neo4j db) is it better to:
  (A) add the neo4j node.Id value to my SQL database to use as a lookup when
 getting neo4j nodes, or
  (B) add a property to each node (i.e. an identifier from the SQL db
 associated with the entity/node), index it in neo4j, and then
 search/retrieve nodes by their property value?

 2) My initial answer to question #1 was (B) and I have been trying to figure
 out the indexing functionality in neo4j but have hit a wall.  I keep getting
 404 errors when attempting to add a node to the index.  I haven't been able
 to get the cURL command (
 http://components.neo4j.org/neo4j-server/1.3.M02/rest.html#Add_to_index) to
 work either.

 Am I approaching this wrong?  Any tips from anyone using the indexing REST
 API from .Net?

 I am running 1.3.M03.

 Thanks,

 Kevin
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] InvalidRecordException

2011-03-11 Thread Massimo Lusetti
On Thu, Mar 10, 2011 at 9:58 PM, Massimo Lusetti mluse...@gmail.com wrote:

 On Thu, Mar 10, 2011 at 6:11 PM, Axel Morgner a...@morgner.de wrote:

 Hi,

 I'm getting an InvalidRecordException

 org.neo4j.kernel.impl.nioneo.store.InvalidRecordException: Node[5] is
 neither firstNode[37781] nor secondNode[37782] for Relationship[188125]
     at
 org.neo4j.kernel.impl.nioneo.xa.ReadTransaction.getMoreRelationships(ReadTransaction.java:131)
     at
 org.neo4j.kernel.impl.nioneo.xa.NioNeoDbPersistenceSource$ReadOnlyResourceConnection.getMoreRelationships(NioNeoDbPersistenceSource.java:280)
     at
 org.neo4j.kernel.impl.persistence.PersistenceManager.getMoreRelationships(PersistenceManager.java:100)
     at
 org.neo4j.kernel.impl.core.NodeManager.getMoreRelationships(NodeManager.java:585)
     at
 org.neo4j.kernel.impl.core.NodeImpl.getMoreRelationships(NodeImpl.java:358)
     at
 org.neo4j.kernel.impl.core.IntArrayIterator.hasNext(IntArrayIterator.java:115)

 when iterating through the relationships of a certain node:

             Node node = graphDb.getNodeById(sNode.getId());

             IterableRelationship rels =
 node.getRelationships(relType, dir);

             for (Relationship r : rels) { - here the expeption
 occurs
                 ...
             }

 I'm using 1.3.M03.

 Seems that the database is in an inconsitant state. Don't know how this
 could happen ...


 Greetings

 Axel

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user



 I'm encountering this same/similar exception quite ofter lately, with
 the same 1.3.M03 version, on FreeBSD 8.2 with  OpenJDK Runtime
 Environment (build 1.6.0-b21) OpenJDK 64-Bit Server VM (build
 19.0-b09, mixed mode):

 org.neo4j.kernel.impl.nioneo.store.InvalidRecordException:
 Record[4130751] not in use
        at 
 org.neo4j.kernel.impl.nioneo.store.RelationshipStore.getRecord(RelationshipStore.java:194)
        at 
 org.neo4j.kernel.impl.nioneo.store.RelationshipStore.getRecord(RelationshipStore.java:96)
        at 
 org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.connectRelationship(WriteTransaction.java:1435)
        at 
 org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.relationshipCreate(WriteTransaction.java:1389)
        at 
 org.neo4j.kernel.impl.nioneo.xa.NeoStoreXaConnection$RelationshipEventConsumerImpl.createRelationship(NeoStoreXaConnection.java:256)
        at 
 org.neo4j.kernel.impl.nioneo.xa.NioNeoDbPersistenceSource$NioNeoDbResourceConnection.relationshipCreate(NioNeoDbPersistenceSource.java:370)
        at 
 org.neo4j.kernel.impl.persistence.PersistenceManager.relationshipCreate(PersistenceManager.java:153)
        at 
 org.neo4j.kernel.impl.core.NodeManager.createRelationship(NodeManager.java:309)
        at 
 org.neo4j.kernel.impl.core.NodeImpl.createRelationshipTo(NodeImpl.java:387)
        at 
 org.neo4j.kernel.impl.core.NodeProxy.createRelationshipTo(NodeProxy.java:186)

 Did it rings and alert bell!?

 Cheers
 --
 Massimo
 http://meridio.blogspot.com


I still getting these errors more and more as the DB grows in size and
node/relations numbers:



org.neo4j.kernel.impl.nioneo.store.InvalidRecordException: Node[8388]
is neither firstNode[0] nor secondNode[0] for Relationship[4925127]
at 
org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.getMoreRelationships(WriteTransaction.java:909)
at 
org.neo4j.kernel.impl.nioneo.xa.NeoStoreXaConnection$RelationshipEventConsumerImpl.getMoreRelationships(NeoStoreXaConnection.java:304)
at 
org.neo4j.kernel.impl.nioneo.xa.NioNeoDbPersistenceSource$NioNeoDbResourceConnection.getMoreRelationships(NioNeoDbPersistenceSource.java:465)
at 
org.neo4j.kernel.impl.persistence.PersistenceManager.getMoreRelationships(PersistenceManager.java:100)
at 
org.neo4j.kernel.impl.core.NodeManager.getMoreRelationships(NodeManager.java:585)
at 
org.neo4j.kernel.impl.core.NodeImpl.getMoreRelationships(NodeImpl.java:358)
at 
org.neo4j.kernel.impl.core.IntArrayIterator.hasNext(IntArrayIterator.java:115)

Do you think the DB is getting corrupted?
-- 
Massimo
http://meridio.blogspot.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Big index solutions?

2011-03-11 Thread Peter Neubauer
Nice Ashwin,
sounds like a great ac, will definitily keep track of it. If I do a
Neo4j Index provider for JDBM2, would you be able to help me to tweak
it to behave good?

Cheers,

/peter neubauer

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               - Your high performance graph database.
http://startupbootcamp.org/    - Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



On Tue, Mar 8, 2011 at 7:26 PM, Ashwin Jayaprakash
ashwin.jayaprak...@gmail.com wrote:
 Try JDBM2 - http://code.google.com/p/jdbm2/issues/detail?id=1

 It's been resurrected by another author.

 Ashwin (http://www.ashwinjayaprakash.com)
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] InvalidRecordException

2011-03-11 Thread Johan Svensson
Hi,

I am assuming no manual modifying of log files or store files at
runtime or between shutdowns/crashes and startups has been performed.

What filesystem are you running this on (and with what configuration)?

Massimo since you say it happen more and more if the db grows can you
write a test case that starts from a clean db and triggers the
problem?

-Johan

On Fri, Mar 11, 2011 at 9:52 AM, Massimo Lusetti mluse...@gmail.com wrote:
 On Thu, Mar 10, 2011 at 9:58 PM, Massimo Lusetti mluse...@gmail.com wrote:

 On Thu, Mar 10, 2011 at 6:11 PM, Axel Morgner a...@morgner.de wrote:

 Hi,

 I'm getting an InvalidRecordException

 org.neo4j.kernel.impl.nioneo.store.InvalidRecordException: Node[5] is
 neither firstNode[37781] nor secondNode[37782] for Relationship[188125]
     at
 org.neo4j.kernel.impl.nioneo.xa.ReadTransaction.getMoreRelationships(ReadTransaction.java:131)
     at
 org.neo4j.kernel.impl.nioneo.xa.NioNeoDbPersistenceSource$ReadOnlyResourceConnection.getMoreRelationships(NioNeoDbPersistenceSource.java:280)
     at
 org.neo4j.kernel.impl.persistence.PersistenceManager.getMoreRelationships(PersistenceManager.java:100)
     at
 org.neo4j.kernel.impl.core.NodeManager.getMoreRelationships(NodeManager.java:585)
     at
 org.neo4j.kernel.impl.core.NodeImpl.getMoreRelationships(NodeImpl.java:358)
     at
 org.neo4j.kernel.impl.core.IntArrayIterator.hasNext(IntArrayIterator.java:115)

 when iterating through the relationships of a certain node:

             Node node = graphDb.getNodeById(sNode.getId());

             IterableRelationship rels =
 node.getRelationships(relType, dir);

             for (Relationship r : rels) { - here the expeption
 occurs
                 ...
             }

 I'm using 1.3.M03.

 Seems that the database is in an inconsitant state. Don't know how this
 could happen ...


 Greetings

 Axel

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user



 I'm encountering this same/similar exception quite ofter lately, with
 the same 1.3.M03 version, on FreeBSD 8.2 with  OpenJDK Runtime
 Environment (build 1.6.0-b21) OpenJDK 64-Bit Server VM (build
 19.0-b09, mixed mode):

 org.neo4j.kernel.impl.nioneo.store.InvalidRecordException:
 Record[4130751] not in use
        at 
 org.neo4j.kernel.impl.nioneo.store.RelationshipStore.getRecord(RelationshipStore.java:194)
        at 
 org.neo4j.kernel.impl.nioneo.store.RelationshipStore.getRecord(RelationshipStore.java:96)
        at 
 org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.connectRelationship(WriteTransaction.java:1435)
        at 
 org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.relationshipCreate(WriteTransaction.java:1389)
        at 
 org.neo4j.kernel.impl.nioneo.xa.NeoStoreXaConnection$RelationshipEventConsumerImpl.createRelationship(NeoStoreXaConnection.java:256)
        at 
 org.neo4j.kernel.impl.nioneo.xa.NioNeoDbPersistenceSource$NioNeoDbResourceConnection.relationshipCreate(NioNeoDbPersistenceSource.java:370)
        at 
 org.neo4j.kernel.impl.persistence.PersistenceManager.relationshipCreate(PersistenceManager.java:153)
        at 
 org.neo4j.kernel.impl.core.NodeManager.createRelationship(NodeManager.java:309)
        at 
 org.neo4j.kernel.impl.core.NodeImpl.createRelationshipTo(NodeImpl.java:387)
        at 
 org.neo4j.kernel.impl.core.NodeProxy.createRelationshipTo(NodeProxy.java:186)

 Did it rings and alert bell!?

 Cheers
 --
 Massimo
 http://meridio.blogspot.com


 I still getting these errors more and more as the DB grows in size and
 node/relations numbers:



 org.neo4j.kernel.impl.nioneo.store.InvalidRecordException: Node[8388]
 is neither firstNode[0] nor secondNode[0] for Relationship[4925127]
        at 
 org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.getMoreRelationships(WriteTransaction.java:909)
        at 
 org.neo4j.kernel.impl.nioneo.xa.NeoStoreXaConnection$RelationshipEventConsumerImpl.getMoreRelationships(NeoStoreXaConnection.java:304)
        at 
 org.neo4j.kernel.impl.nioneo.xa.NioNeoDbPersistenceSource$NioNeoDbResourceConnection.getMoreRelationships(NioNeoDbPersistenceSource.java:465)
        at 
 org.neo4j.kernel.impl.persistence.PersistenceManager.getMoreRelationships(PersistenceManager.java:100)
        at 
 org.neo4j.kernel.impl.core.NodeManager.getMoreRelationships(NodeManager.java:585)
        at 
 org.neo4j.kernel.impl.core.NodeImpl.getMoreRelationships(NodeImpl.java:358)
        at 
 org.neo4j.kernel.impl.core.IntArrayIterator.hasNext(IntArrayIterator.java:115)

 Do you think the DB is getting corrupted?
 --
 Massimo
 http://meridio.blogspot.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] InvalidRecordException

2011-03-11 Thread Massimo Lusetti
On Fri, Mar 11, 2011 at 10:14 AM, Johan Svensson
jo...@neotechnology.com wrote:

 Hi,

 I am assuming no manual modifying of log files or store files at
 runtime or between shutdowns/crashes and startups has been performed.

Sure.

 What filesystem are you running this on (and with what configuration)?

This is FreeBSD 8.2 on ZFS (if interested version 15)

 Massimo since you say it happen more and more if the db grows can you
 write a test case that starts from a clean db and triggers the
 problem?

Yep, I think I could, I'm going to nail it down, let me know what you
wish as results.

Cheers
-- 
Massimo
http://meridio.blogspot.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] InvalidRecordException

2011-03-11 Thread Axel Morgner
Hi Johan,

here are some config details:

System is Ubuntu 10.10

uname -a
Linux dev1 2.6.35-28-generic #49-Ubuntu SMP Tue Mar 1 14:39:03 UTC 2011 
x86_64 GNU/Linux

Filesystem is ext4 on an SSD

03:00.0 SATA controller: JMicron Technology Corp. JMB361 AHCI/IDE (rev 02)

Host: scsi0 Channel: 00 Id: 00 Lun: 00
   Vendor: ATA  Model: C300-CTFDDAC064M Rev: 0002
   Type:   Direct-AccessANSI  SCSI revision: 05

Neo4j configuration:

Fri Mar 11 10:04:08 CET 2011: Physical mem: 7999MB, Heap size: 3640MB
Fri Mar 11 10:04:08 CET 2011: Kernel version: Neo4j - Graph Database 
Kernel 1.3.M03
Fri Mar 11 10:04:08 CET 2011: Neo4j - Graph Database Kernel 1.3.M03
Fri Mar 11 10:04:08 CET 2011: Operating System: Linux; version: 
2.6.35-28-generic; arch: amd64; cpus: 4
Fri Mar 11 10:04:08 CET 2011: VM Name: OpenJDK 64-Bit Server VM
Fri Mar 11 10:04:08 CET 2011: VM Vendor: Sun Microsystems Inc.
Fri Mar 11 10:04:08 CET 2011: VM Version: 19.0-b09

Greetings

Axel

On 11.03.2011 10:14, Johan Svensson wrote:
 Hi,

 I am assuming no manual modifying of log files or store files at
 runtime or between shutdowns/crashes and startups has been performed.

 What filesystem are you running this on (and with what configuration)?

 Massimo since you say it happen more and more if the db grows can you
 write a test case that starts from a clean db and triggers the
 problem?

 -Johan

 On Fri, Mar 11, 2011 at 9:52 AM, Massimo Lusettimluse...@gmail.com  wrote:
 On Thu, Mar 10, 2011 at 9:58 PM, Massimo Lusettimluse...@gmail.com  wrote:

 On Thu, Mar 10, 2011 at 6:11 PM, Axel Morgnera...@morgner.de  wrote:

 Hi,

 I'm getting an InvalidRecordException

 org.neo4j.kernel.impl.nioneo.store.InvalidRecordException: Node[5] is
 neither firstNode[37781] nor secondNode[37782] for Relationship[188125]
  at
 org.neo4j.kernel.impl.nioneo.xa.ReadTransaction.getMoreRelationships(ReadTransaction.java:131)
  at
 org.neo4j.kernel.impl.nioneo.xa.NioNeoDbPersistenceSource$ReadOnlyResourceConnection.getMoreRelationships(NioNeoDbPersistenceSource.java:280)
  at
 org.neo4j.kernel.impl.persistence.PersistenceManager.getMoreRelationships(PersistenceManager.java:100)
  at
 org.neo4j.kernel.impl.core.NodeManager.getMoreRelationships(NodeManager.java:585)
  at
 org.neo4j.kernel.impl.core.NodeImpl.getMoreRelationships(NodeImpl.java:358)
  at
 org.neo4j.kernel.impl.core.IntArrayIterator.hasNext(IntArrayIterator.java:115)

 when iterating through the relationships of a certain node:

  Node node = graphDb.getNodeById(sNode.getId());

  IterableRelationship  rels =
 node.getRelationships(relType, dir);

  for (Relationship r : rels) {- here the expeption
 occurs
  ...
  }

 I'm using 1.3.M03.

 Seems that the database is in an inconsitant state. Don't know how this
 could happen ...


 Greetings

 Axel

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user


 I'm encountering this same/similar exception quite ofter lately, with
 the same 1.3.M03 version, on FreeBSD 8.2 with  OpenJDK Runtime
 Environment (build 1.6.0-b21) OpenJDK 64-Bit Server VM (build
 19.0-b09, mixed mode):

 org.neo4j.kernel.impl.nioneo.store.InvalidRecordException:
 Record[4130751] not in use
 at 
 org.neo4j.kernel.impl.nioneo.store.RelationshipStore.getRecord(RelationshipStore.java:194)
 at 
 org.neo4j.kernel.impl.nioneo.store.RelationshipStore.getRecord(RelationshipStore.java:96)
 at 
 org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.connectRelationship(WriteTransaction.java:1435)
 at 
 org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.relationshipCreate(WriteTransaction.java:1389)
 at 
 org.neo4j.kernel.impl.nioneo.xa.NeoStoreXaConnection$RelationshipEventConsumerImpl.createRelationship(NeoStoreXaConnection.java:256)
 at 
 org.neo4j.kernel.impl.nioneo.xa.NioNeoDbPersistenceSource$NioNeoDbResourceConnection.relationshipCreate(NioNeoDbPersistenceSource.java:370)
 at 
 org.neo4j.kernel.impl.persistence.PersistenceManager.relationshipCreate(PersistenceManager.java:153)
 at 
 org.neo4j.kernel.impl.core.NodeManager.createRelationship(NodeManager.java:309)
 at 
 org.neo4j.kernel.impl.core.NodeImpl.createRelationshipTo(NodeImpl.java:387)
 at 
 org.neo4j.kernel.impl.core.NodeProxy.createRelationshipTo(NodeProxy.java:186)

 Did it rings and alert bell!?

 Cheers
 --
 Massimo
 http://meridio.blogspot.com

 I still getting these errors more and more as the DB grows in size and
 node/relations numbers:



 org.neo4j.kernel.impl.nioneo.store.InvalidRecordException: Node[8388]
 is neither firstNode[0] nor secondNode[0] for Relationship[4925127]
 at 
 org.neo4j.kernel.impl.nioneo.xa.WriteTransaction.getMoreRelationships(WriteTransaction.java:909)
 at 
 

Re: [Neo4j] Big index solutions?

2011-03-11 Thread Massimo Lusetti
On Fri, Mar 11, 2011 at 10:12 AM, Peter Neubauer
peter.neuba...@neotechnology.com wrote:

 Nice Ashwin,
 sounds like a great ac, will definitily keep track of it. If I do a
 Neo4j Index provider for JDBM2, would you be able to help me to tweak
 it to behave good?

Did it really fail Lucene with big index? I got Lucene index with
millions of entries and it run smoothly... I'm talking of pure
Lucene's index not the Neo4j implementation.

In fact I got issues with Lucene index within Neo4j and as soon as I
started to use an external managed index (Chenillekit Lucene module) I
got no issue with big index.

Curious about this thread.

Cheers
-- 
Massimo
http://meridio.blogspot.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Big index solutions?

2011-03-11 Thread Peter Neubauer
No,
things are not failing, it is just that in big insertion scenarios the
index lookup when joining nodes together into relationships, there is
often just an exact index needed in order to do that. We have good
experiences with Lucene, but when importing e.g. big OpenStreetMap
datasets, we need to run lookups during insertion, and we experience
Lucene taking a lot of time in these cases.

That is why I think exact lookups, like K/V stores, would be
interesting in these scenarios, as an alternative. They _should_
perform better then Lucene.

Cheers,

/peter neubauer

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               - Your high performance graph database.
http://startupbootcamp.org/    - Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



On Fri, Mar 11, 2011 at 10:27 AM, Massimo Lusetti mluse...@gmail.com wrote:
 On Fri, Mar 11, 2011 at 10:12 AM, Peter Neubauer
 peter.neuba...@neotechnology.com wrote:

 Nice Ashwin,
 sounds like a great ac, will definitily keep track of it. If I do a
 Neo4j Index provider for JDBM2, would you be able to help me to tweak
 it to behave good?

 Did it really fail Lucene with big index? I got Lucene index with
 millions of entries and it run smoothly... I'm talking of pure
 Lucene's index not the Neo4j implementation.

 In fact I got issues with Lucene index within Neo4j and as soon as I
 started to use an external managed index (Chenillekit Lucene module) I
 got no issue with big index.

 Curious about this thread.

 Cheers
 --
 Massimo
 http://meridio.blogspot.com
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Big index solutions?

2011-03-11 Thread Mattias Persson
2011/3/11 Massimo Lusetti mluse...@gmail.com

 On Fri, Mar 11, 2011 at 10:12 AM, Peter Neubauer
 peter.neuba...@neotechnology.com wrote:

  Nice Ashwin,
  sounds like a great ac, will definitily keep track of it. If I do a
  Neo4j Index provider for JDBM2, would you be able to help me to tweak
  it to behave good?

 Did it really fail Lucene with big index? I got Lucene index with
 millions of entries and it run smoothly... I'm talking of pure
 Lucene's index not the Neo4j implementation.

 In fact I got issues with Lucene index within Neo4j and as soon as I
 started to use an external managed index (Chenillekit Lucene module) I
 got no issue with big index.


 Curious about this thread.


And I'm curious about why the neo4j lucene layer adds overhead and how your
code looks like in your own solution.


 Cheers
 --
 Massimo
 http://meridio.blogspot.com
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user




-- 
Mattias Persson, [matt...@neotechnology.com]
Hacker, Neo Technology
www.neotechnology.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] InvalidRecordException

2011-03-11 Thread Tobias Ivarsson
Please tell me that you have the database file in the state they were in
when this happened. That you have not tried to repair the database in any
way.
If you do, could you please send me those database files off-list (dropbox
or similar, or contact me directly to discuss how to transfer it).

I will of course treat your data with utmost privacy, but I would love to
get to examine a store that exhibits this behavior to find out what could
have caused it.

Massimo: If you can produce a test case that reliably (or at least
semi-reliably) reproduces this, that would of course be even better, but it
doesn't hurt if I could look at the store files and try to deduce the
problem in parallell.

Cheers,
-- 
Tobias Ivarsson tobias.ivars...@neotechnology.com
Hacker, Neo Technology
www.neotechnology.com
Cellphone: +46 706 534857
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] InvalidRecordException

2011-03-11 Thread Massimo Lusetti
On Fri, Mar 11, 2011 at 10:49 AM, Tobias Ivarsson
tobias.ivars...@neotechnology.com wrote:

 Please tell me that you have the database file in the state they were in
 when this happened. That you have not tried to repair the database in any
 way.
 If you do, could you please send me those database files off-list (dropbox
 or similar, or contact me directly to discuss how to transfer it).

Sure I have it unmodified and could make it available to you with
dropbox but the db dir it's 2G... so is there something I could leave
out?
If you prefer you can continue to mail privately...

 Massimo: If you can produce a test case that reliably (or at least
 semi-reliably) reproduces this, that would of course be even better, but it
 doesn't hurt if I could look at the store files and try to deduce the
 problem in parallell.

I'm working on it... will let you know soon.

Thanks for the interest... Cheers
-- 
Massimo
http://meridio.blogspot.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] InvalidRecordException

2011-03-11 Thread Axel Morgner
Hi Tobias,

I sent you more detailed information off the list.

Greetings

Axel

On 11.03.2011 10:49, Tobias Ivarsson wrote:
 Please tell me that you have the database file in the state they were in
 when this happened. That you have not tried to repair the database in any
 way.
 If you do, could you please send me those database files off-list (dropbox
 or similar, or contact me directly to discuss how to transfer it).

 I will of course treat your data with utmost privacy, but I would love to
 get to examine a store that exhibits this behavior to find out what could
 have caused it.

 Massimo: If you can produce a test case that reliably (or at least
 semi-reliably) reproduces this, that would of course be even better, but it
 doesn't hurt if I could look at the store files and try to deduce the
 problem in parallell.

 Cheers,


___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] InvalidRecordException

2011-03-11 Thread Tobias Ivarsson
I need at least these two files:
neostore.nodestore.db
neostore.relationshipstore.db

-tobias

On Fri, Mar 11, 2011 at 11:26 AM, Massimo Lusetti mluse...@gmail.comwrote:

 On Fri, Mar 11, 2011 at 10:49 AM, Tobias Ivarsson
 tobias.ivars...@neotechnology.com wrote:

  Please tell me that you have the database file in the state they were in
  when this happened. That you have not tried to repair the database in any
  way.
  If you do, could you please send me those database files off-list
 (dropbox
  or similar, or contact me directly to discuss how to transfer it).

 Sure I have it unmodified and could make it available to you with
 dropbox but the db dir it's 2G... so is there something I could leave
 out?
 If you prefer you can continue to mail privately...

  Massimo: If you can produce a test case that reliably (or at least
  semi-reliably) reproduces this, that would of course be even better, but
 it
  doesn't hurt if I could look at the store files and try to deduce the
  problem in parallell.

 I'm working on it... will let you know soon.

 Thanks for the interest... Cheers
 --
 Massimo
 http://meridio.blogspot.com
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user




-- 
Tobias Ivarsson tobias.ivars...@neotechnology.com
Hacker, Neo Technology
www.neotechnology.com
Cellphone: +46 706 534857
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


[Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Chris Gioran
Greeting fellow graphistas,

Keeping up with the release schedule, today we present the fourth
milestone towards the 1.3 “Abisko Lampa” version of Neo4j. The most
important feature of this release is of course the expansion of the
storage layer to allow for even more entities, but also includes
improvements on the testing methodology used for Windows builds and
the REST interface for Indexing operations. As always, extended
details are available in the announcement post, reachable at

http://blog.neo4j.org/2011/03/neo4j-13-abisko-lampa-m04-size-really.html

There you can read a comprehensive description of the new features,
however a special mention must be made to the new store format.

This milestone of Neo4j brings with it an updated store version that
allows for an 8x increase in the possible number of Nodes and
Relationships and 16x increase for the number of Properties. All this
happens without increasing the size of the database so you can go
right ahead and upgrade, certain in the knowledge that everything will
be done in place. A few words of caution are in order, though.

An upgrade will not happen unless you explicitly request it - just
pass in the configuration parameter “allow_store_upgrade” as “true” -
otherwise an exception will be thrown that advises you to do just that
and your store will be left untouched. There are some additional
requirements for the upgrade to succeed, such as less than 65536
RelationshipTypes stored, but if you do not satisfy those the upgrade
procedure will inform you of what the exact problem is and leave your
store untouched.
Finally, note that after a successful upgrade your database will be
unreadable by previous versions. So keep in mind that while safe, this
is a one way procedure.
You can find more details on the subject at

http://docs.neo4j.org/chunked/milestone/deployment-upgrading.html

We invite you to try out these new features and provide us with your
ever valuable feedback.

cheers,
CG
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Jonah H. Harris
On Fri, Mar 11, 2011 at 9:02 AM, Chris Gioran 
chris.gio...@neotechnology.com wrote:

 The most important feature of this release is of course the expansion of
 the

storage layer to allow for even more entities,


Hey Chris,

This sounds great.  Is it checked into SVN?  I'd like to see the differences
in the file formats.

-- 
Jonah H. Harris, VP of Database Administration
myYearbook.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Tobias Ivarsson
It is in git: https://github.com/neo4j/graphdb

Neo4j moved from svn to git a little over a month ago.

Cheers,
Tobias

On Fri, Mar 11, 2011 at 3:21 PM, Jonah H. Harris 
jonah.har...@myyearbook.com wrote:

 On Fri, Mar 11, 2011 at 9:02 AM, Chris Gioran 
 chris.gio...@neotechnology.com wrote:

  The most important feature of this release is of course the expansion of
  the

 storage layer to allow for even more entities,


 Hey Chris,

 This sounds great.  Is it checked into SVN?  I'd like to see the
 differences
 in the file formats.

 --
 Jonah H. Harris, VP of Database Administration
 myYearbook.com
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user




-- 
Tobias Ivarsson tobias.ivars...@neotechnology.com
Hacker, Neo Technology
www.neotechnology.com
Cellphone: +46 706 534857
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Jonah H. Harris
On Fri, Mar 11, 2011 at 9:23 AM, Tobias Ivarsson 
tobias.ivars...@neotechnology.com wrote:

 It is in git: https://github.com/neo4j/graphdb

 Neo4j moved from svn to git a little over a month ago.


Doh!  I obviously haven't kept up on that.  Thanks!

-- 
Jonah H. Harris, VP of Database Administration
myYearbook.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Javier de la Rosa
On Fri, Mar 11, 2011 at 09:02, Chris Gioran
chris.gio...@neotechnology.com wrote:
 the REST interface for Indexing operations. As always, extended

Really great news for REST clients! Now it's our time to implement it.
Thank you.


-- 
Javier de la Rosa
http://versae.es
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Max De Marzi Jr.
Hum... webadmin is not coming up for me...

This is what I changed in the neo4j-server.propeties.

# REST endpoint for the data API
# Note the / in the end is mandatory
#org.neo4j.server.webadmin.data.uri=http://localhost:7474/db/data/
org.neo4j.server.webadmin.data.uri=http://neography.org:7474/db/data/

# REST endpoint of the administration API (used by Webadmin)
#org.neo4j.server.webadmin.management.uri=http://localhost:7474/db/manage/
org.neo4j.server.webadmin.management.uri=http://neography.org:7474/db/manage/



On Fri, Mar 11, 2011 at 8:31 AM, Javier de la Rosa ver...@gmail.com wrote:
 On Fri, Mar 11, 2011 at 09:02, Chris Gioran
 chris.gio...@neotechnology.com wrote:
 the REST interface for Indexing operations. As always, extended

 Really great news for REST clients! Now it's our time to implement it.
 Thank you.


 --
 Javier de la Rosa
 http://versae.es
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Peter Neubauer
Do you have an existing db? In that case you need to upgrade explicitly...

/peter

Send from my mobile device, please excuse typos and brevity.
On Mar 11, 2011 4:45 PM, Max De Marzi Jr. maxdema...@gmail.com wrote:
 Hum... webadmin is not coming up for me...

 This is what I changed in the neo4j-server.propeties.

 # REST endpoint for the data API
 # Note the / in the end is mandatory
 #org.neo4j.server.webadmin.data.uri=http://localhost:7474/db/data/
 org.neo4j.server.webadmin.data.uri=http://neography.org:7474/db/data/

 # REST endpoint of the administration API (used by Webadmin)
 #org.neo4j.server.webadmin.management.uri=http://localhost:7474/db/manage/
 org.neo4j.server.webadmin.management.uri=
http://neography.org:7474/db/manage/



 On Fri, Mar 11, 2011 at 8:31 AM, Javier de la Rosa ver...@gmail.com
wrote:
 On Fri, Mar 11, 2011 at 09:02, Chris Gioran
 chris.gio...@neotechnology.com wrote:
 the REST interface for Indexing operations. As always, extended

 Really great news for REST clients! Now it's our time to implement it.
 Thank you.


 --
 Javier de la Rosa
 http://versae.es
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Joshi Hemant - hjoshi
I have similar problem. I upgraded existing database from 1.2 to 1.3M04
By explicit upgrade, do you mean setting allow_store_upgrade=true in 
neo4j.properties file?
I get only data tab of webadmin.
-Hemant

-Original Message-
From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On 
Behalf Of Peter Neubauer
Sent: Friday, March 11, 2011 10:59 AM
To: Neo4j user discussions
Subject: Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

Do you have an existing db? In that case you need to upgrade explicitly...

/peter

Send from my mobile device, please excuse typos and brevity.
On Mar 11, 2011 4:45 PM, Max De Marzi Jr. maxdema...@gmail.com wrote:
 Hum... webadmin is not coming up for me...

 This is what I changed in the neo4j-server.propeties.

 # REST endpoint for the data API
 # Note the / in the end is mandatory
 #org.neo4j.server.webadmin.data.uri=http://localhost:7474/db/data/
 org.neo4j.server.webadmin.data.uri=http://neography.org:7474/db/data/

 # REST endpoint of the administration API (used by Webadmin)
 #org.neo4j.server.webadmin.management.uri=http://localhost:7474/db/manage/
 org.neo4j.server.webadmin.management.uri=
http://neography.org:7474/db/manage/



 On Fri, Mar 11, 2011 at 8:31 AM, Javier de la Rosa ver...@gmail.com
wrote:
 On Fri, Mar 11, 2011 at 09:02, Chris Gioran
 chris.gio...@neotechnology.com wrote:
 the REST interface for Indexing operations. As always, extended

 Really great news for REST clients! Now it's our time to implement it.
 Thank you.


 --
 Javier de la Rosa
 http://versae.es
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user
***
The information contained in this communication is confidential, is
intended only for the use of the recipient named above, and may be legally
privileged.

If the reader of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or copying of this
communication is strictly prohibited.

If you have received this communication in error, please resend this
communication to the sender and delete the original message or any copy
of it from your computer system.

Thank You.


___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Max De Marzi Jr.
My Steps:

Pulled DB from 1.3.M02
neo4j start fails

Turn on allow_store_upgrade=true in neo4j.properties file
Configure neo4j-server.propeties specified earlier
neo4j start works

pulling data from http://neovigator.heroku.com/?neoid=2 works
http://neography.org  (webadmin) doesn't work


On Fri, Mar 11, 2011 at 12:31 PM, Joshi Hemant - hjoshi
hemant.jo...@acxiom.com wrote:
 I have similar problem. I upgraded existing database from 1.2 to 1.3M04
 By explicit upgrade, do you mean setting allow_store_upgrade=true in 
 neo4j.properties file?
 I get only data tab of webadmin.
 -Hemant

 -Original Message-
 From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On 
 Behalf Of Peter Neubauer
 Sent: Friday, March 11, 2011 10:59 AM
 To: Neo4j user discussions
 Subject: Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

 Do you have an existing db? In that case you need to upgrade explicitly...

 /peter

 Send from my mobile device, please excuse typos and brevity.
 On Mar 11, 2011 4:45 PM, Max De Marzi Jr. maxdema...@gmail.com wrote:
 Hum... webadmin is not coming up for me...

 This is what I changed in the neo4j-server.propeties.

 # REST endpoint for the data API
 # Note the / in the end is mandatory
 #org.neo4j.server.webadmin.data.uri=http://localhost:7474/db/data/
 org.neo4j.server.webadmin.data.uri=http://neography.org:7474/db/data/

 # REST endpoint of the administration API (used by Webadmin)
 #org.neo4j.server.webadmin.management.uri=http://localhost:7474/db/manage/
 org.neo4j.server.webadmin.management.uri=
 http://neography.org:7474/db/manage/



 On Fri, Mar 11, 2011 at 8:31 AM, Javier de la Rosa ver...@gmail.com
 wrote:
 On Fri, Mar 11, 2011 at 09:02, Chris Gioran
 chris.gio...@neotechnology.com wrote:
 the REST interface for Indexing operations. As always, extended

 Really great news for REST clients! Now it's our time to implement it.
 Thank you.


 --
 Javier de la Rosa
 http://versae.es
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
 ***
 The information contained in this communication is confidential, is
 intended only for the use of the recipient named above, and may be legally
 privileged.

 If the reader of this message is not the intended recipient, you are
 hereby notified that any dissemination, distribution or copying of this
 communication is strictly prohibited.

 If you have received this communication in error, please resend this
 communication to the sender and delete the original message or any copy
 of it from your computer system.

 Thank You.
 

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


[Neo4j] Neo4j OSGI bundle

2011-03-11 Thread Nicolas Jouanin
Hi,

I'm planning to use Neo4j under OSGi framework. Because org.neo4j:neo4j defines 
the needed headers (in MANIFEST.MF), it can be deployed as a bundle on equinox 
or felix.
Unfortunatelly, the bundle doesn't export any package so it's quite unuseful 
for me as my own bundle can't import them.
I guess, at least neo4j bundle should have Export-Package directive in 
MANIFEST.MF file.
Do you think these headers could be added in the next snapshot ?

Thanks.

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Max De Marzi Jr.
Oh and removing the http://neography.org:7474/; from
neo4j-server.properties did the trick for me as far as being able to
get webadmin to work.  Both data and other tabs are coming up fine at
http://neography.org



On Fri, Mar 11, 2011 at 4:03 PM, Max De Marzi Jr. maxdema...@gmail.com wrote:
 v0.0.12 of https://github.com/maxdemarzi/neography is out there with
 the thin wrapper updates to index deletions and advanced queries.
 I'll do the phase 2 version of these two next.

 On Fri, Mar 11, 2011 at 12:40 PM, Max De Marzi Jr. maxdema...@gmail.com 
 wrote:
 My Steps:

 Pulled DB from 1.3.M02
 neo4j start fails

 Turn on allow_store_upgrade=true in neo4j.properties file
 Configure neo4j-server.propeties specified earlier
 neo4j start works

 pulling data from http://neovigator.heroku.com/?neoid=2 works
 http://neography.org  (webadmin) doesn't work


 On Fri, Mar 11, 2011 at 12:31 PM, Joshi Hemant - hjoshi
 hemant.jo...@acxiom.com wrote:
 I have similar problem. I upgraded existing database from 1.2 to 1.3M04
 By explicit upgrade, do you mean setting allow_store_upgrade=true in 
 neo4j.properties file?
 I get only data tab of webadmin.
 -Hemant

 -Original Message-
 From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On 
 Behalf Of Peter Neubauer
 Sent: Friday, March 11, 2011 10:59 AM
 To: Neo4j user discussions
 Subject: Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

 Do you have an existing db? In that case you need to upgrade explicitly...

 /peter

 Send from my mobile device, please excuse typos and brevity.
 On Mar 11, 2011 4:45 PM, Max De Marzi Jr. maxdema...@gmail.com wrote:
 Hum... webadmin is not coming up for me...

 This is what I changed in the neo4j-server.propeties.

 # REST endpoint for the data API
 # Note the / in the end is mandatory
 #org.neo4j.server.webadmin.data.uri=http://localhost:7474/db/data/
 org.neo4j.server.webadmin.data.uri=http://neography.org:7474/db/data/

 # REST endpoint of the administration API (used by Webadmin)
 #org.neo4j.server.webadmin.management.uri=http://localhost:7474/db/manage/
 org.neo4j.server.webadmin.management.uri=
 http://neography.org:7474/db/manage/



 On Fri, Mar 11, 2011 at 8:31 AM, Javier de la Rosa ver...@gmail.com
 wrote:
 On Fri, Mar 11, 2011 at 09:02, Chris Gioran
 chris.gio...@neotechnology.com wrote:
 the REST interface for Indexing operations. As always, extended

 Really great news for REST clients! Now it's our time to implement it.
 Thank you.


 --
 Javier de la Rosa
 http://versae.es
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
 ***
 The information contained in this communication is confidential, is
 intended only for the use of the recipient named above, and may be legally
 privileged.

 If the reader of this message is not the intended recipient, you are
 hereby notified that any dissemination, distribution or copying of this
 communication is strictly prohibited.

 If you have received this communication in error, please resend this
 communication to the sender and delete the original message or any copy
 of it from your computer system.

 Thank You.
 

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user



___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

2011-03-11 Thread Peter Neubauer
Great Max,
Thanks for putting in the work!

/peter

Send from my mobile device, please excuse typos and brevity.
On Mar 11, 2011 11:41 PM, Max De Marzi Jr. maxdema...@gmail.com wrote:
 Oh and removing the http://neography.org:7474/; from
 neo4j-server.properties did the trick for me as far as being able to
 get webadmin to work. Both data and other tabs are coming up fine at
 http://neography.org



 On Fri, Mar 11, 2011 at 4:03 PM, Max De Marzi Jr. maxdema...@gmail.com
wrote:
 v0.0.12 of https://github.com/maxdemarzi/neography is out there with
 the thin wrapper updates to index deletions and advanced queries.
 I'll do the phase 2 version of these two next.

 On Fri, Mar 11, 2011 at 12:40 PM, Max De Marzi Jr. maxdema...@gmail.com
wrote:
 My Steps:

 Pulled DB from 1.3.M02
 neo4j start fails

 Turn on allow_store_upgrade=true in neo4j.properties file
 Configure neo4j-server.propeties specified earlier
 neo4j start works

 pulling data from http://neovigator.heroku.com/?neoid=2 works
 http://neography.org  (webadmin) doesn't work


 On Fri, Mar 11, 2011 at 12:31 PM, Joshi Hemant - hjoshi
 hemant.jo...@acxiom.com wrote:
 I have similar problem. I upgraded existing database from 1.2 to 1.3M04
 By explicit upgrade, do you mean setting allow_store_upgrade=true in
neo4j.properties file?
 I get only data tab of webadmin.
 -Hemant

 -Original Message-
 From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org]
On Behalf Of Peter Neubauer
 Sent: Friday, March 11, 2011 10:59 AM
 To: Neo4j user discussions
 Subject: Re: [Neo4j] Announcing Neo4j 1.3 “Abisko Lampa” M04

 Do you have an existing db? In that case you need to upgrade
explicitly...

 /peter

 Send from my mobile device, please excuse typos and brevity.
 On Mar 11, 2011 4:45 PM, Max De Marzi Jr. maxdema...@gmail.com
wrote:
 Hum... webadmin is not coming up for me...

 This is what I changed in the neo4j-server.propeties.

 # REST endpoint for the data API
 # Note the / in the end is mandatory
 #org.neo4j.server.webadmin.data.uri=http://localhost:7474/db/data/
 org.neo4j.server.webadmin.data.uri=http://neography.org:7474/db/data/

 # REST endpoint of the administration API (used by Webadmin)
 #org.neo4j.server.webadmin.management.uri=
http://localhost:7474/db/manage/
 org.neo4j.server.webadmin.management.uri=
 http://neography.org:7474/db/manage/



 On Fri, Mar 11, 2011 at 8:31 AM, Javier de la Rosa ver...@gmail.com
 wrote:
 On Fri, Mar 11, 2011 at 09:02, Chris Gioran
 chris.gio...@neotechnology.com wrote:
 the REST interface for Indexing operations. As always, extended

 Really great news for REST clients! Now it's our time to implement
it.
 Thank you.


 --
 Javier de la Rosa
 http://versae.es
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

***
 The information contained in this communication is confidential, is
 intended only for the use of the recipient named above, and may be
legally
 privileged.

 If the reader of this message is not the intended recipient, you are
 hereby notified that any dissemination, distribution or copying of this
 communication is strictly prohibited.

 If you have received this communication in error, please resend this
 communication to the sender and delete the original message or any copy
 of it from your computer system.

 Thank You.



 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user



 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Big index solutions?

2011-03-11 Thread Ashwin Jayaprakash
Ah..well..you see, I haven't used it extensively yet :)

But I'm pretty sure that the author of JDBM2 will be of help in that regard.

There is another one I have my eyes on - http://code.google.com/p/babudb/

But there's always BerkleyDB.

Regards,
Ashwin.


On Fri, Mar 11, 2011 at 1:12 AM, Peter Neubauer 
peter.neuba...@neotechnology.com wrote:

 Nice Ashwin,
 sounds like a great ac, will definitily keep track of it. If I do a
 Neo4j Index provider for JDBM2, would you be able to help me to tweak
 it to behave good?

 Cheers,

 /peter neubauer

 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   - Your high performance graph database.
 http://startupbootcamp.org/- Öresund - Innovation happens HERE.
 http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



 On Tue, Mar 8, 2011 at 7:26 PM, Ashwin Jayaprakash
 ashwin.jayaprak...@gmail.com wrote:
  Try JDBM2 - http://code.google.com/p/jdbm2/issues/detail?id=1
 
  It's been resurrected by another author.
 
  Ashwin (http://www.ashwinjayaprakash.com)
  ___
  Neo4j mailing list
  User@lists.neo4j.org
  https://lists.neo4j.org/mailman/listinfo/user
 

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user