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
{{ message }}
This repository was archived by the owner on Feb 6, 2026. It is now read-only.
The current behavior is hardcoded as Block in GrpcLoggingRpc. This creates a problem, though. We run in a containerized environment with little overhead room for extra memory allocations. One of our services went down because Stackdriver was unavailable due to the 'quota exceeded' error, and log messages were piling up waiting to be sent. I'd sacrifice a few or a hundred log messages instead of a service. We use LoggingAppender with Logback. There seems to be no way to configure anything in the FlowControlSettings. I want to set a lower number for outstanding elements (like 1,000 instead of 100,000) and Ignore/ThrowException for limit behavior so that messages are discarded if they can't be delivered.
The current behavior is hardcoded as
BlockinGrpcLoggingRpc. This creates a problem, though. We run in a containerized environment with little overhead room for extra memory allocations. One of our services went down because Stackdriver was unavailable due to the 'quota exceeded' error, and log messages were piling up waiting to be sent. I'd sacrifice a few or a hundred log messages instead of a service. We use LoggingAppender with Logback. There seems to be no way to configure anything in theFlowControlSettings. I want to set a lower number for outstanding elements (like 1,000 instead of 100,000) andIgnore/ThrowExceptionfor limit behavior so that messages are discarded if they can't be delivered.