Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
dinesh1
Contributor
Contributor

Connector reply error: grpc::StatusCode::RESOURCE_EXHAUSTED: 'Received message larger than max (4716585 vs. 4194304)'


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)'

 

 

Error.GIF

 

 

 

 

Labels (1)
  • SaaS

1 Solution

Accepted Solutions
Akshesh_Patel
Support
Support

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

View solution in original post

1 Reply
Akshesh_Patel
Support
Support

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