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
Currently, the rebalancing code uses a single transaction to iterate through the grouping keys and rebalance the first partition in need in each group. This may cause a transaction timeout, and limits the number of documents that can moved - which causes extra merges.
The suggested solution is to:
Use a read-only Agility Context to read the grouping keys and partitions info
Use the same AC to evaluate if a rebalancing is needed on a give partition
If needed, create a new, dedicated transaction to rebalance each single partition
The text was updated successfully, but these errors were encountered:
Currently, the rebalancing code uses a single transaction to iterate through the grouping keys and rebalance the first partition in need in each group. This may cause a transaction timeout, and limits the number of documents that can moved - which causes extra merges.
The suggested solution is to:
The text was updated successfully, but these errors were encountered: