What kind of error is E_OUTDATED_TERM(-3071)? #4275
-
Hello. [Environment] [Query]
result: -1005:Storage Error: part: 17, error: E_OUTDATED_TERM(-3071).
result: ok This happens every time I delete a specific vertex or I delete a related edge. It doesn't happen if I delete another vertex or edge. Let me know if you need additional information. :D |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I think this is related to TOSS(edge transaction on the storage side), you enabled the experimental feature, right? Thus TOSS was used in the edge deletion/add, which ensures edge deletion/add with a transaction guarantee. In TOSS/chained edge deletion, term id was checked towards the term id in metaD before committing the write request to enable transaction(In nebula, an edge was persisted in multiple Key-Value records, this was to enable its atomicity). |
Beta Was this translation helpful? Give feedback.
I think this is related to TOSS(edge transaction on the storage side), you enabled the experimental feature, right? Thus TOSS was used in the edge deletion/add, which ensures edge deletion/add with a transaction guarantee.
In TOSS/chained edge deletion, term id was checked towards the term id in metaD before committing the write request to enable transaction(In nebula, an edge was persisted in multiple Key-Value records, this was to enable its atomicity).