Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm trying to use the Dissolve function with custom polygons. I am trying to dissolve the zip codes to create a Sub_Region..
I am using geo operations..it is giving below error while executing
Connector reply error: grpc::StatusCode::RESOURCE_EXHAUSTED: 'Received message larger than max (4716585 vs. 4194304)'
Hi,
I believe there is a certain limitation on the number of rows reloads, what you can do is to use the slicing strategy sending 18k or less at a time to the connector. Or, one way is to loop through the function to get all the data needed. It takes longer, but you get all the information. I apologize for this limitation, reason behind this is the https://grpc.io/ (the protocol that SSE's are built on top of it) has a limitation of 4194304 (4Mb) for traffic. So the load fails because it retrieving more than 4Mb of data.
Best
Akki
Hi,
I believe there is a certain limitation on the number of rows reloads, what you can do is to use the slicing strategy sending 18k or less at a time to the connector. Or, one way is to loop through the function to get all the data needed. It takes longer, but you get all the information. I apologize for this limitation, reason behind this is the https://grpc.io/ (the protocol that SSE's are built on top of it) has a limitation of 4194304 (4Mb) for traffic. So the load fails because it retrieving more than 4Mb of data.
Best
Akki