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
{{ message }}
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
It's easy to imagine the use cases - you might have many goroutine workers processing data and want them to centralize their measurements.
One solution to this is to give each goroutine its own TDigest and add the ability to merge them. This has the advantage that it requires minimal locking.
A direct, blunt-force approach would be to lock access to the slice of centroids. This seems much less good.
The text was updated successfully, but these errors were encountered:
It's easy to imagine the use cases - you might have many goroutine workers processing data and want them to centralize their measurements.
One solution to this is to give each goroutine its own TDigest and add the ability to merge them. This has the advantage that it requires minimal locking.
A direct, blunt-force approach would be to lock access to the slice of centroids. This seems much less good.
The text was updated successfully, but these errors were encountered: