Skip to content

Commit

Permalink
Reduce frequency of unmanaged memory use warning (#8834)
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl authored Aug 16, 2024
1 parent f12cc4f commit 0c54e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/worker_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
]

worker_logger = logging.getLogger("distributed.worker.memory")
worker_logger.addFilter(RateLimiterFilter(r"Unmanaged memory use is high"))
worker_logger.addFilter(RateLimiterFilter(r"Unmanaged memory use is high", rate="300s"))
nanny_logger = logging.getLogger("distributed.nanny.memory")


Expand Down

0 comments on commit 0c54e9d

Please sign in to comment.