Skip to content

Commit

Permalink
Increase the gRPC payload limits of metastore gRPC client to 20MiB.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassot committed Dec 11, 2023
1 parent 65895fd commit f76fcee
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ impl MetastoreGrpcClient {
let underlying = MetastoreServiceClient::with_interceptor(
balance_channel.clone(),
SpanContextInterceptor,
);
)
.max_decoding_message_size(20 * 1024 * 1024)
.max_encoding_message_size(20 * 1024 * 1024);
let uri = QuickwitUri::from_well_formed(GRPC_METASTORE_BASE_URI);
Ok(Self {
underlying,
Expand Down

0 comments on commit f76fcee

Please sign in to comment.