File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff 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) ?
Original file line number Diff line number Diff 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) ?
You can’t perform that action at this time.
0 commit comments