gazette / core

Build platforms that flexibly mix SQL, batch, and stream processing paradigms
https://gazette.dev
MIT License
718 stars 52 forks source link

make the maximum accepted gRPC message size configurable #398

Closed jgraettinger closed 2 months ago

jgraettinger commented 2 months ago

For Gazette and consumers. Previously, the default (4MB) was used and could not be changed. Now it's configurable by flag and environment variable for brokers and consumers:

--broker.max-grpc-recv-size= Maximum size of gRPC messages accepted by this server, in bytes (default: 4194304) [$BROKER_MAX_GRPC_RECV_SIZE]


This change is Reviewable