You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AckBatchingSubscriber periodically flushes pending ack IDs in a single AcknowledgeRequest, which can exceed the 512 KB size limit for Acknowledge RPCs. This code is here.
To avoid Acknowledge RPCs failing due to exceeding the size limit, we should split large batches of ack IDs into multiple Acknowledge RPCs. One way to fix this is adopting the Cloud Pub/Sub client library behavior of including at most 100 ack IDs per Acknowledge RPC.
The text was updated successfully, but these errors were encountered:
AckBatchingSubscriber periodically flushes pending ack IDs in a single AcknowledgeRequest, which can exceed the 512 KB size limit for Acknowledge RPCs. This code is here.
To avoid Acknowledge RPCs failing due to exceeding the size limit, we should split large batches of ack IDs into multiple Acknowledge RPCs. One way to fix this is adopting the Cloud Pub/Sub client library behavior of including at most 100 ack IDs per Acknowledge RPC.
The text was updated successfully, but these errors were encountered: