Skip to content

Commit 471c476

Browse files
committed
Increase max_decoding_message_size
1 parent 5e14d62 commit 471c476

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/execution_plans/network_coalesce.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ impl ExecutionPlan for NetworkCoalesceExec {
287287
let stream = async move {
288288
let channel = channel_resolver.get_channel_for_url(&url).await?;
289289
let stream = FlightServiceClient::new(channel)
290+
.max_decoding_message_size(2 * 1024 * 1024 * 1024)
290291
.do_get(ticket)
291292
.await
292293
.map_err(map_status_to_datafusion_error)?

src/execution_plans/network_shuffle.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@ impl ExecutionPlan for NetworkShuffleExec {
324324

325325
let channel = channel_resolver.get_channel_for_url(&url).await?;
326326
let stream = FlightServiceClient::new(channel)
327+
.max_decoding_message_size(2 * 1024 * 1024 * 1024)
327328
.do_get(ticket)
328329
.await
329330
.map_err(map_status_to_datafusion_error)?

0 commit comments

Comments
 (0)