You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am in the process of migrating from Titan 0.5.4 to 1.0.0. To maintain our data model I had to implement a custom serializer for collections (of Java native types). That serializer utilizes com.thinkaurelius.titan.graphdb.database.serialize.attribute.StringSerializer to store the JSON serialized collection as a string. While playing with the serializer I managed to create edges that could neither be read nor deleted. Neither via Java code nor the Gremlin shell. The exception I received is this:
Caused by: java.lang.IllegalArgumentException: Invalid ASCII encoding offset: 176
at com.thinkaurelius.titan.graphdb.database.serialize.attribute.StringSerializer.read(StringSerializer.java:105)
at ch.vivates.ams.graph.titan.serializer.AbstractCollectionJsonSerializer.read(AbstractCollectionJsonSerializer.java:28)
at ch.vivates.ams.graph.titan.serializer.AbstractCollectionJsonSerializer.read(AbstractCollectionJsonSerializer.java:14)
at com.thinkaurelius.titan.graphdb.database.serialize.StandardSerializer.readObjectNotNullInternal(StandardSerializer.java:259)
at com.thinkaurelius.titan.graphdb.database.serialize.StandardSerializer.readObjectInternal(StandardSerializer.java:249)
at com.thinkaurelius.titan.graphdb.database.serialize.StandardSerializer.readObject(StandardSerializer.java:229)
at com.thinkaurelius.titan.graphdb.database.EdgeSerializer.readPropertyValue(EdgeSerializer.java:191)
at com.thinkaurelius.titan.graphdb.database.EdgeSerializer.readInline(EdgeSerializer.java:177)
at com.thinkaurelius.titan.graphdb.database.EdgeSerializer.parseRelation(EdgeSerializer.java:149)
at com.thinkaurelius.titan.graphdb.database.EdgeSerializer.readRelation(EdgeSerializer.java:60)
at com.thinkaurelius.titan.graphdb.transaction.RelationConstructor.readRelationCache(RelationConstructor.java:27)
at com.thinkaurelius.titan.graphdb.relations.CacheEdge.getPropertyMap(CacheEdge.java:90)
at com.thinkaurelius.titan.graphdb.relations.CacheEdge.getPropertyKeysDirect(CacheEdge.java:102)
at com.thinkaurelius.titan.graphdb.database.IndexSerializer.getIndexUpdates(IndexSerializer.java:264)
at com.thinkaurelius.titan.graphdb.database.StandardTitanGraph.prepareCommit(StandardTitanGraph.java:517)
at com.thinkaurelius.titan.graphdb.database.StandardTitanGraph.commit(StandardTitanGraph.java:702)
at com.thinkaurelius.titan.graphdb.transaction.StandardTitanTx.commit(StandardTitanTx.java:1352)
... 39 more
The exception is thrown when trying to read any property of the offending edge and also when attempting to delete it. E.g. a
I am in the process of migrating from Titan 0.5.4 to 1.0.0. To maintain our data model I had to implement a custom serializer for collections (of Java native types). That serializer utilizes com.thinkaurelius.titan.graphdb.database.serialize.attribute.StringSerializer to store the JSON serialized collection as a string. While playing with the serializer I managed to create edges that could neither be read nor deleted. Neither via Java code nor the Gremlin shell. The exception I received is this:
The exception is thrown when trying to read any property of the offending edge and also when attempting to delete it. E.g. a
would yield above exception on commit.
The text was updated successfully, but these errors were encountered: