Description
Hi, I was using arangodb-java-driver 4.1.3 to create vertexes in ArangoDB with the method: com.arangodb.ArangoCollection.insertDocuments(Collection values).
In some cases, it worked well but sometimes it throws the exception below:
...
Caused by: com.arangodb.ArangoDBException: Response: 400, Error: 1228 - error during validation of incoming VPackObject index table is out of bounds
at com.arangodb.internal.velocystream.Communication.checkError(Communication.java:104)
at com.arangodb.internal.velocystream.CommunicationSync.execute(CommunicationSync.java:122)
at com.arangodb.internal.velocystream.CommunicationSync.execute(CommunicationSync.java:42)
at com.arangodb.internal.ArangoExecutorSync.execute(ArangoExecutorSync.java:58)
at com.arangodb.ArangoCollection.insertDocuments(ArangoCollection.java:115)
...
The class I used for objects to store contains one field of long type. If I change the type to String, it works fine. Any idea?