-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Logs being admitted despite settings causing HA failures #1575
Comments
A bit more: On load, from a clean system, so would expect 0 logs:
After health checks:
|
@lmeyerov
Note that the
|
afaict:
So in this case, seems more about controlling file names & fidelity / disabling, and disabling can be the same as sending to /dev/null :) |
Describe the bug
Despite setting
bc(enable_logs=False, LOGGING_LEVEL='warn', ...)
, we are seeing debug logs being emitted toalgebra.log
andblazing_log/pyblazing.log
. In a separate setup (dask-cuda workers), we're seeingblazing_log/{RAL.0.log,pyblazing.0.log}
.This is a problem, for example, in HA settings that run periodic healthchecks. In our case, this ended up causing a Denial of Service / Out-of-Memory on a node as we didn't have log rotations setup outside of standard locations.
As an interim workaround, we're setting a periodic watcher to
echo "" > *.log
Steps/Code to reproduce bug
Context options:
Healthcheck: create table, add some numbers, drop
Expected behavior
Only see warning-or-higher logs. In our case, that would have been no log output.
Environment overview (please complete the following information)
RAPIDS 0.19 in docker
Environment details
Additional context
Add any other context about the problem here.
----For BlazingSQL Developers----
Suspected source of the issue
Where and what are potential sources of the issue
Other design considerations
What components of the engine could be affected by this?
The text was updated successfully, but these errors were encountered: