bored-needle-72209
05/14/2024, 12:11 PMgrpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.RESOURCE_EXHAUSTED
details = "Received message larger than max (6015882 vs. 4194304)"
debug_error_string = "UNKNOWN:Error received from peer ipv4:192.168.1.253:30080 {created_time:"2024-05-13T16:07:32.782822331+02:00", grpc_status:8, grpc_message:"Received message larger than max (6015882 vs. 4194304)"}"
Is there a way to set this limit higher and what can cause this issue? Thank you for any insight!average-finland-92144
05/14/2024, 4:40 PMbored-needle-72209
05/14/2024, 4:41 PMaverage-finland-92144
05/14/2024, 4:49 PMbored-needle-72209
05/15/2024, 6:32 AMaverage-finland-92144
05/15/2024, 3:08 PMconfiguration:
inline:
server:
maxMessageSizeBytes: <insert-value>
bored-needle-72209
07/19/2024, 9:30 AMbored-needle-72209
07/22/2024, 8:57 AMoptions = (("grpc.max_metadata_size", 32000), ("grpc.max_receive_message_length", 10000000))
https://github.com/flyteorg/flytekit/blob/master/flytekit/clients/raw.py#L51
Can you suggest another way to change this parameter, or is this really the only option at the moment?average-finland-92144
07/22/2024, 9:28 PMadmin:
endpoint:...
...
server:
grpc:
maxMessageSizeBytes: <insert-value>
bored-needle-72209
07/23/2024, 8:00 AMaverage-finland-92144
07/23/2024, 4:23 PMbored-needle-72209
07/23/2024, 4:25 PM