Commit 0050b9b4 authored by Tim Peters's avatar Tim Peters

Forward-port from ZODB 3.2.

Collector 1503:  excessive logging.

ClientStorage._wait_sync():  Don't log more than one "waiting for cache
verification to finish" message per 5 minutes.
parent 63b3bb92
...@@ -25,6 +25,15 @@ ZEO client cache ...@@ -25,6 +25,15 @@ ZEO client cache
- Fixed a bug wherein an object removed from the client cache didn't - Fixed a bug wherein an object removed from the client cache didn't
properly mark the file slice it occupied as being available for reuse. properly mark the file slice it occupied as being available for reuse.
ZEO
---
Collector 1503: excessive logging. It was possible for a ZEO client to
log "waiting for cache verification to finish" messages at a very high
rate, producing gigabytes of such messages in short order.
``ClientStorage._wait_sync()`` was changed to log no more than one
such message per 5 minutes.
persistent persistent
---------- ----------
...@@ -59,7 +68,6 @@ made, it was possible for the pack routine to die with a reference to an ...@@ -59,7 +68,6 @@ made, it was possible for the pack routine to die with a reference to an
undefined global while it was trying to raise ``CorruptedError``. It undefined global while it was trying to raise ``CorruptedError``. It
raises ``CorruptedError``, as it always intended, in these cases now. raises ``CorruptedError``, as it always intended, in these cases now.
Install Install
------- -------
......
...@@ -353,21 +353,29 @@ class ClientStorage(object): ...@@ -353,21 +353,29 @@ class ClientStorage(object):
self._wait_sync(deadline) self._wait_sync(deadline)
def _wait_sync(self, deadline=None): def _wait_sync(self, deadline=None):
# If there is no mainloop running, this code needs # Log no more than one "waiting" message per LOG_THROTTLE seconds.
# to call poll() to cause asyncore to handle events. LOG_THROTTLE = 300 # 5 minutes
while 1: next_log_time = time.time()
if self._ready.isSet():
break while not self._ready.isSet():
if deadline and time.time() > deadline: now = time.time()
if deadline and now > deadline:
log2("Timed out waiting for connection", level=logging.WARNING) log2("Timed out waiting for connection", level=logging.WARNING)
break break
log2("Waiting for cache verification to finish") if now >= next_log_time:
log2("Waiting for cache verification to finish")
next_log_time = now + LOG_THROTTLE
if self._connection is None: if self._connection is None:
# If the connection was closed while we were # If the connection was closed while we were
# waiting for it to become ready, start over. # waiting for it to become ready, start over.
return self._wait(deadline - time.time()) if deadline is None:
else: timeout = None
self._connection.pending(30) else:
timeout = deadline - now
return self._wait(timeout)
# No mainloop ia running, so we need to call something fancy to
# handle asyncore events.
self._connection.pending(30)
def close(self): def close(self):
"""Storage API: finalize the storage, releasing external resources.""" """Storage API: finalize the storage, releasing external resources."""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment