-
Notifications
You must be signed in to change notification settings - Fork 609
feat(tdigest): Add support for QUANTILE command #2849
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
PragmaTwice
merged 41 commits into
apache:unstable
from
SharonIV0x86:feat/quantile-command
May 16, 2025
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
dc1bb1a
added command class for quantile command
SharonIV0x86 a2e99dc
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 7bc9b81
Implemented QUANTILE command
SharonIV0x86 a33b2cf
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 562798d
Merge branch 'unstable' into feat/quantile-command
PragmaTwice 6e0a7f0
Merge branch 'unstable' into feat/quantile-command
mapleFU 64ee2e7
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 aa04e94
Tested working of TDIGEST.QUANTILE locally.
SharonIV0x86 185898f
Added go test case for quantile command
SharonIV0x86 359f151
Fixed return status for non existent key
SharonIV0x86 63c34f3
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 7937777
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 42e4667
Merge branch 'unstable' into feat/quantile-command
PragmaTwice d77f5d6
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 b1b951b
Made suggested changes
SharonIV0x86 6d8f169
Made suggested changes
SharonIV0x86 d42bea1
Made go linter happy
SharonIV0x86 e1a6796
Merge branch 'unstable' into feat/quantile-command
PragmaTwice a51b5d4
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 e21933d
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 84ad11b
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 a302c79
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 cb2e4d5
Merge branch 'unstable' into feat/quantile-command
aleksraiden 82c1cac
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 dcb88fb
Update src/commands/cmd_tdigest.cc
SharonIV0x86 17cda79
made suggested changes. 1.) Improved tests 2.) Added check for empty …
SharonIV0x86 0ecaf4e
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 8e71585
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 30538a9
made suggested check for empty digest and nan response
SharonIV0x86 ad75911
Merge branch 'unstable' into feat/quantile-command
PragmaTwice 3127abb
fixed clang-tidy error: used emplace_back instead of push_back
SharonIV0x86 f6c3cb5
gocase for unordered quantiles
SharonIV0x86 323d71b
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 f362094
added 'nan' as a constexpr literal string in cmd_tdigest.cc
SharonIV0x86 b4dbb7a
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 354f9f3
check for empty tdigest
SharonIV0x86 4defcd8
added cpp unit test case for empty tdigest
SharonIV0x86 ad188f5
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 aba6a5c
Merge branch 'unstable' into feat/quantile-command
SharonIV0x86 f095c3b
added an early check inside lock for empty tdigest
SharonIV0x86 249564c
add `nan` as response for empty tdigest
LindaSummer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @SharonIV0x86 ,
We could also add an unordered sequence and an empty tdigest as cases. 😊
Best Regards,
Edward