Update to allow configurable max message size for querier.#1052
Conversation
351e7bc to
75ae548
Compare
|
LGTM! |
10235ad to
4443a13
Compare
|
Ideally this would be part of weaveworks/common/server, but there is precedent for this: #679 |
|
LGTM x2. |
|
Is it the max send size or max recv size? The code says both. cortex/pkg/ingester/client/client.go Line 91 in 8d9c36e |
68be779 to
b9c36a2
Compare
cmd/query-frontend/main.go
Outdated
There was a problem hiding this comment.
Would be good to mention the units, i.e, size of a grpc message, in bytes, ...
|
Why is it the server receiving size you care about, as opposed to the client? (Or server send) |
When using the query-frontend, the querier creates a gRPC streaming connection to it, requests are pushed down from server (frontend) to client (querier) and responses are pushed from client (querier) to server (frontend). We hit an issue where large query responses exceeded the limit for messages received by the frontend. |
|
Can we have a commit message that more closely describes the intent, e.g. "add command-line option to ..." please. |
… messages from querier. Signed-off-by: Jacob Lisi <jacob.t.lisi@gmail.com>
b9c36a2 to
2e2effa
Compare
|
Thanks! |
No description provided.