util/quantile: import quantile library#82146
Merged
craig[bot] merged 1 commit intocockroachdb:masterfrom May 31, 2022
matthewtodd:outliers-quantile
Merged
util/quantile: import quantile library#82146craig[bot] merged 1 commit intocockroachdb:masterfrom matthewtodd:outliers-quantile
craig[bot] merged 1 commit intocockroachdb:masterfrom
matthewtodd:outliers-quantile
Conversation
Member
Contributor
|
consider putting this library in |
Author
Good idea, moved to |
ajwerner
approved these changes
May 31, 2022
Contributor
ajwerner
left a comment
There was a problem hiding this comment.
LGTM mod the suggestion
| // See http://www.cs.rutgers.edu/~muthu/bquant.pdf for time, space, and error | ||
| // properties. | ||
| func NewHighBiased(epsilon float64) *Stream { | ||
| ƒ := func(s *stream, r float64) float64 { |
Contributor
|
oh, also retitle the PR/commit to be |
For upcoming outliers work in #79451, we'll re-use the biased streaming quantiles implementation underlying the prometheus client library's [summary][1] type. But in order to monitor and possibly constrain our memory usage, we'll need a way to measure the size of each `quantile.Stream`. That functionality is not available upstream, and contributions are explicitly [not being accepted][2] (and the [original upstream][3], from bmizerany, lacks further functionality and is similarly inactive), so we vendor the library here, unmodified from its [v1.0.1][4], in advance of adding the methods we need. [1]: https://prometheus.io/docs/practices/histograms/ [2]: beorn7/perks#5 (comment) [3]: https://github.com/bmizerany/perks [4]: https://github.com/beorn7/perks/tree/v1.0.1 Release note: None
Author
|
bors r+ |
Contributor
|
Build succeeded: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
For upcoming outliers work in #79451, we'll re-use the biased streaming
quantiles implementation underlying the prometheus client library's
summary type.
But in order to monitor and possibly constrain our memory usage, we'll
need a way to measure the size of each
quantile.Stream. Thatfunctionality is not available upstream, and contributions are
explicitly not being accepted (and the original upstream, from
bmizerany, lacks further functionality and is similarly inactive), so we
vendor the library here, unmodified from its v1.0.1, in advance of
adding the methods we need.
Release note: None