You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Ballista gRPC messages can be very large when physical plans are referencing many partitions and we always have the risk of hitting the maximum message size.
Describe the solution you'd like
gRPC streams can be used to transmit data in chunks.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered:
andygrove
changed the title
Cosnider using gRPC streams + chunking to avoid message size limits
Consider using gRPC streams + chunking to avoid message size limits
Dec 12, 2023
One strategy to reduce message size we used is pruning the partitions before encoding them as task. This makes the message size pretty constant however how many partitions there might be in the query (and also saves on some decoding / encoding and bandwidth).
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Ballista gRPC messages can be very large when physical plans are referencing many partitions and we always have the risk of hitting the maximum message size.
Describe the solution you'd like
gRPC streams can be used to transmit data in chunks.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: