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
When the data set gets large enough, the sibling-related operations (log siblings and resolve siblings) take too long and put too much load on the cluster (since they require iterating through each riak object, not just each key).
Add an optional parameter to the count_all_keys(), resolve_all_siblings(), and log_all_keys() functions to restrict the operation to a particular bucket (or a bucket type/bucket pair). Take a look at how the SleepPeriod optional parameter works in line 52-53
The text was updated successfully, but these errors were encountered:
When the data set gets large enough, the sibling-related operations (log siblings and resolve siblings) take too long and put too much load on the cluster (since they require iterating through each riak object, not just each key).
Add an optional parameter to the
count_all_keys()
,resolve_all_siblings()
, andlog_all_keys()
functions to restrict the operation to a particular bucket (or a bucket type/bucket pair). Take a look at how the SleepPeriod optional parameter works in line 52-53The text was updated successfully, but these errors were encountered: