We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65895fd commit f76fceeCopy full SHA for f76fcee
quickwit/quickwit-metastore/src/metastore/grpc_metastore/mod.rs
@@ -82,7 +82,9 @@ impl MetastoreGrpcClient {
82
let underlying = MetastoreServiceClient::with_interceptor(
83
balance_channel.clone(),
84
SpanContextInterceptor,
85
- );
+ )
86
+ .max_decoding_message_size(20 * 1024 * 1024)
87
+ .max_encoding_message_size(20 * 1024 * 1024);
88
let uri = QuickwitUri::from_well_formed(GRPC_METASTORE_BASE_URI);
89
Ok(Self {
90
underlying,
0 commit comments