-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
store: don't create intermediate labels #7762
Merged
Merged
Conversation
This file contains 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
Just compare labelpb.Label directly instead of creating promlabels from them. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com>
GiedriusS
force-pushed
the
dont_create_intermediate_labels
branch
from
September 19, 2024 14:10
164a92f
to
5f66bfb
Compare
fpetkovski
approved these changes
Sep 19, 2024
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.
I wonder if we can do something similar for Series calls so that we can marshal prometheus labels directly to the proto wire format.
GiedriusS
added a commit
that referenced
this pull request
Oct 1, 2024
This reverts commit 8cd3fae. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com>
GiedriusS
added a commit
that referenced
this pull request
Oct 1, 2024
* Revert "store: add chunk pooling (#7771)" This reverts commit a2113fd. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "query/store: memoize PromLabels() call (#7767)" This reverts commit 735db72. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "store: compare labels directly (#7766)" This reverts commit 30f453e. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "store: don't create intermediate labels (#7762)" This reverts commit 8cd3fae. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: build with stringlabels (#7745)" This reverts commit 883fade. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: enable gRPC pooling (#7742)" This reverts commit ca8ab90. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: switch to vtprotobuf (#7721)" This reverts commit a8e7109. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: removing gogoproto extensions (#7718)" This reverts commit 97710f4. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: rm ZLabels (#7675)" This reverts commit 8c8a88e. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> --------- Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com>
jnyi
pushed a commit
to jnyi/thanos
that referenced
this pull request
Oct 17, 2024
Just compare labelpb.Label directly instead of creating promlabels from them. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com>
jnyi
pushed a commit
to jnyi/thanos
that referenced
this pull request
Oct 17, 2024
* Revert "store: add chunk pooling (thanos-io#7771)" This reverts commit a2113fd. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "query/store: memoize PromLabels() call (thanos-io#7767)" This reverts commit 735db72. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "store: compare labels directly (thanos-io#7766)" This reverts commit 30f453e. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "store: don't create intermediate labels (thanos-io#7762)" This reverts commit 8cd3fae. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: build with stringlabels (thanos-io#7745)" This reverts commit 883fade. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: enable gRPC pooling (thanos-io#7742)" This reverts commit ca8ab90. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: switch to vtprotobuf (thanos-io#7721)" This reverts commit a8e7109. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: removing gogoproto extensions (thanos-io#7718)" This reverts commit 97710f4. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> * Revert "*: rm ZLabels (thanos-io#7675)" This reverts commit 8c8a88e. Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com> --------- Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@vinted.com>
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.
Just compare labelpb.Label directly instead of creating promlabels from them.