Skip to content
Discussion options

You must be logged in to vote

Please, check the following limitations: https://docs.janusgraph.org/advanced-topics/technical-limitations/#size-limitation

When you are creating your Long vertex ID you should follow the following rules:

  1. Always use graph.getIDManager().toVertexID(123L) to convert your vertex ID into the internal vertex id type. (see documentation).
  2. You vertex ID should be a positive value not exceeding (2^60)/2. In other words, you can create up to 576 quadrillion vertices and up to 1.1 quintillion edges.

You was trying to use value 9223372036854775805 which is larger then 576460752303423488. Try to use smaller values in range 0 to 576460752303423488 for vertex ids.

I believe we should clarify this in …

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@MateusMelloSouza
Comment options

@porunov
Comment options

Answer selected by porunov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants