linar-jether
linar-jether
Trying to use billiard (upgraded from 3.3.0.23 to 3.5.0.3) on windows, and can't get it to work, anyone has any input on this issue? i'm still seeing recent pull requests...
Our solution to this issue is to periodically remove keys that have been idle for more than X days ```python red = app.backend.client for key in red.scan_iter("*", 100000): if key.decode().startswith('_kombu'):...
@bivald I think that the `google-cloud-python` library already does just that, they automatically renew the lease through a separate thread. Besides late acks (which seem to be handled in the...
https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/pubsub/google/cloud/pubsub_v1/subscriber/_protocol/leaser.py Code is well documented, they automatically renew leases for subscriptions until the max lease time (which is configurable). Another good thing that the python client does is request batching,...