Anyone have any ideas what might be causing this?

I'm getting

Traceback (most recent call last):
  File ".../thrift/server/TServer.py", line 118, in handle
    self.processor.process(iprot, oprot)
  File ".../graphdb/graphdb/Graph.py", line 3343, in process
    self._processMap[name](self, seqid, iprot, oprot)
  File ".../graphdb/graphdb/Graph.py", line 3611, in
process_get_directed_relationships_for_left
    result.success =
self._handler.get_directed_relationships_for_left(args.left_uuid,
args.relationship_type_id)
  File ".../graphdb/graph.py", line 506, in
get_directed_relationships_for_left
    relationships = [self._make_non_self_rep(node, r) for r in rels]
  File ".../virtualenv/lib/python2.6/site-packages/neo4j/_primitives.py",
line 286, in __iter__
    for rel in self.__getRelationships():
  File ".../virtualenv/lib/python2.6/site-packages/neo4j/_primitives.py",
line 256, in __getRelationships
    self.__dir):
java.lang.RuntimeExceptionPyRaisable: java.lang.ArrayStoreException:


where get_directed_relationships_for_left contains:

        with self._graphdb.transaction:
            node = self._graphdb.node[id]
            relationships = [self._make_non_self_rep(node, r) for r in
node.relationships(relationship_type_
id).outgoing]
           ...

[OS X 10.6.3; Neo4J 1.0 and 1.1; Java 1.6.0_20-b02-279-10M3065; Jpype
0.5.4.1]

So, it looks like some sort of corruption on the graphdb to us?  I wonder
if there's a thread issue on OS X?

Thanks,
Dan


_______________________________________________
Neo4j mailing list
[email protected]
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to