Hi team, Can you help with this cryptic error whi...
# ask-the-community
v
Hi team, Can you help with this cryptic error while registering a workflow
Copy code
raise _InactiveRpcError(state)
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
	status = StatusCode.RESOURCE_EXHAUSTED
	details = "received initial metadata size exceeds limit"
	debug_error_string = "{"created":"@1667984783.531503108","description":"Error received from peer ipv4:10.162.12.35:443","file":"src/core/lib/surface/call.cc","file_line":953,"grpc_message":"received initial metadata size exceeds limit","grpc_status":8}"
s
Is it possible for you to share your workflow? I guess the data being sent between the tasks is larger than 1 MB.
v
Oh interesting. That could be it. i am downloading good chunk of data from s3
s
If you could download the data within a task and send the s3 uri between the tasks, that should resolve the issue.
v
s3 uri between the task
Can i use Flytefile as the return type in that case?
Or if you have an example, i can look at that 🙏
s
Can i use Flytefile as the return type in that case?
Of course! This should work:
Copy code
FlyteFile(path="s3://...")
v
thanks, let me try it! 🙏
When’s the teams office hours btw?
s
There are three slots on Wednesdays: 7:00 - 7:30 AM PT, 1:30 - 2:00 PM PT, & 9:00 - 9:30 PM PT
v
Ah just missed it! 😞 Let me try 130 🙂
156 Views