Description
google-cloud-logging enables the blocking flow controller in the GAX batching library, going to lengths to modify the default gapic behavior:
The trouble with the blocking batch flow controller is that it can block LoggingImpl.writeAsync
and thus any application code that happens to log after the flow controller is full. (That can happen either because of too much application logging or because of a slow-down in the logging service.) Preferable behavior would be dropping the log messages that cannot be uploaded and leaving a note about dropped messages in the next batch or stderr.
(This issue is notwithstanding a recent regression described in #632. That regression occludes the problematic behavior described here by removing the GAX batcher.)