-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[TSDB] Ingester Index Sampling #6852
Conversation
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
…ing-impl Signed-off-by: Owen Diehl <[email protected]>
…refactor Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
Signed-off-by: Owen Diehl <[email protected]>
./tools/diff_coverage.sh ../loki-main/test_results.txt test_results.txt ingester,distributor,querier,querier/queryrange,iter,storage,chunkenc,logql,loki Change in test coverage per package. Green indicates 0 or positive change, red indicates that test coverage for a package fell. - ingester -1%
+ distributor 0%
- querier -1.1%
+ querier/queryrange 0%
+ iter 0%
- storage -1.3%
+ chunkenc 0%
+ logql 0%
+ loki 0.6% |
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.
LGTM
* queryrangebase definitions protos & aliases Signed-off-by: Owen Diehl <[email protected]> * indexgatewaypb to logproto Signed-off-by: Owen Diehl <[email protected]> * updates queryrange.proto for new definitions file Signed-off-by: Owen Diehl <[email protected]> * s/indexgatewaypb/logproto/g Signed-off-by: Owen Diehl <[email protected]> * renames to indexseries for clobbering reasons Signed-off-by: Owen Diehl <[email protected]> * more indexgatewaypb removal compatibility work Signed-off-by: Owen Diehl <[email protected]> * proto fmt Signed-off-by: Owen Diehl <[email protected]> * rebuild imports Signed-off-by: Owen Diehl <[email protected]> * goimports -s Signed-off-by: Owen Diehl <[email protected]> * query ingesters for index stats Signed-off-by: Owen Diehl <[email protected]> * compatibility during rollouts for idx-gw+ingester-querier post proto refactor Signed-off-by: Owen Diehl <[email protected]> * proto compatibility with old indexgateway pkg path Signed-off-by: Owen Diehl <[email protected]> * test compat Signed-off-by: Owen Diehl <[email protected]> * gofmt Signed-off-by: Owen Diehl <[email protected]>
This PR does two things:
indexgatewaypb
package. While [TSDB] Indexgateway Protobuf refactor #6841 ensured the payloads were compatible, the grpc service description generated didn't match the historicalindexgatewaypb.IndexGateway
, which caused errors when trying to query the old index gateways with new queriers. This PR moves theIndexGateway
service into it's own proto package with the nameindexgatewaypb
and generates code in thelogproto
golang package, which fixes errors during rollouts as the service descriptions now match.