Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
reduce sweep queue logspam for short-lived write-heavy tables (#4456)
Browse files Browse the repository at this point in the history
  • Loading branch information
clockfort authored Dec 4, 2019
1 parent daa602d commit 563ea62
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ public void sweep(Collection<WriteInfo> unfilteredWrites, Sweeper sweeper) {
});
} catch (Exception e) {
if (tableWasDropped(entry.getKey())) {
log.info("The table {} has been deleted.", LoggingArgs.tableRef(entry.getKey()), e);
log.debug("Dropping sweeper work for table {}, which has been dropped.",
LoggingArgs.tableRef(entry.getKey()), e);
} else {
throw e;
}
Expand Down
5 changes: 5 additions & 0 deletions changelog/@unreleased/pr-4456.v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type: improvement
improvement:
description: reduce sweep queue logspam for short-lived, write-heavy tables
links:
- https://github.com/palantir/atlasdb/pull/4456

0 comments on commit 563ea62

Please sign in to comment.