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
@Override
public void run() {
throwExceptionIfClosed();
if (System.currentTimeMillis() - startTime < 1_000)
return; // cleanup thread stops after this return
while (!shutdown) {
// do cleanup in loop
So background cleanup is never performed, which may lead to on-demand cleanup and latency spikes on put() called by a critical thread.
The text was updated successfully, but these errors were encountered:
OldDeletedEntriesCleanupThread:
So background cleanup is never performed, which may lead to on-demand cleanup and latency spikes on put() called by a critical thread.
The text was updated successfully, but these errors were encountered: