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
Describe the feature:
Many posts on our mailing list, SO and so on contain the recommendation to make sure that no management transaction is open when performing index operations to make sure that index operations aren't hindered by dangling open instances, but this isn't described clearly in the docs.
The indexing docs currently mention that no other transaction should be open, but only in a code listing and also only really in a comment:
graph.tx().rollback() //Never create new indexes while a transaction is active
The docs should make it more clear how important that is and also that other JanusGraph instances shouldn't be running in parallel as they could otherwise open new transactions after this has been executed.
Describe a specific use case for the feature:
Prevent users from running into a situation where an index isn't enabled only because some old management instance is still registered.
The text was updated successfully, but these errors were encountered:
This was originally discussed in #3965.
Describe the feature:
Many posts on our mailing list, SO and so on contain the recommendation to make sure that no management transaction is open when performing index operations to make sure that index operations aren't hindered by dangling open instances, but this isn't described clearly in the docs.
The indexing docs currently mention that no other transaction should be open, but only in a code listing and also only really in a comment:
The docs should make it more clear how important that is and also that other JanusGraph instances shouldn't be running in parallel as they could otherwise open new transactions after this has been executed.
Describe a specific use case for the feature:
Prevent users from running into a situation where an index isn't enabled only because some old management instance is still registered.
The text was updated successfully, but these errors were encountered: