-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Provide option to ignore SIGCONT #3932
Comments
I think disabling SIGCONT handler after SIGTERM will solve the problem.
Which is better: 1, 2, or 3? |
Thanks for the fix! We'll consider adding 1 if someone really requires it, but I think it's not needed for now. |
Thanks for the fix! |
Note https://www.freedesktop.org/software/systemd/man/systemd.kill.html#KillSignal=
So, for example, in td-agent, SIGCONT is sent after SIGTERM when stopping. |
I too think 2 is preferable for now. |
Is your feature request related to a problem? Please describe.
When running under systemd, fluentd will produce a sigdump file even when a normal exit occurs.
Systemd sends a SIGCONT tot he process after the SIGTERM, which causes the sigdump file to be generated, putting unnecessary files in /tmp
Describe the solution you'd like
An option in the fluentd config file to disable producing sigdump files
Describe alternatives you've considered
We have adjusted settings for our systemd unit file, but systemd always sends the sigcont.
Additional context
No response
The text was updated successfully, but these errors were encountered: