Skip to content
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

Add logging for errors about loading dependencies on startup #4858

Merged
merged 1 commit into from
Mar 11, 2025

Conversation

daipom
Copy link
Contributor

@daipom daipom commented Mar 7, 2025

Which issue(s) this PR fixes:
None.

What this PR does / why we need it:
Adds error handling similar to worker process.

rescue ScriptError => e # LoadError, NotImplementedError, SyntaxError
logging_with_console_output do |log|
if e.respond_to?(:path)
log.error e.message, path: e.path, error: e
else
log.error e.message, error: e
end
log.error_backtrace
end
unrecoverable_error = true
rescue => e
logging_with_console_output do |log|
log.error "unexpected error", error: e
log.error_backtrace
end
end

Fluent::Engine.run_configure calls Fluent::Registry#search.
It can run Kernel.require.
It can raise LoadError, ConflictError and others.

Without this error handling, Fluentd cannot log those errors.
This makes a situation where Fluentd fails to start, but there is no error log in the log file.
This solves that problem.

This appears to be an oversight of the following fix:

Docs Changes:
Not needed.

Release Note:
The same as the title.

@daipom daipom added this to the v1.19.0 milestone Mar 7, 2025
Adds error handling similar to worker process.
https://github.com/fluent/fluentd/blob/master/lib/fluent/supervisor.rb#L1149-L1164

`Fluent::Engine.run_configure` calls `Fluent::Registry#search`.
It can run `Kernel.require`.
It can raise `LoadError`, `ConflictError` and others.

Without this error handling, Fluentd cannot log those errors.
This makes a situation where Fluentd fails to start, but there
is no error log in the log file.
This solves that problem.

This appears to be an oversight of the following fix:

* #2651

Signed-off-by: Daijiro Fukuda <[email protected]>
@daipom daipom force-pushed the display-script-error-when-starting branch from cbd60b8 to a844d90 Compare March 10, 2025 06:18
@daipom daipom requested a review from Watson1978 March 10, 2025 07:08
Copy link
Contributor

@Watson1978 Watson1978 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🏻

@daipom daipom merged commit c182b6a into master Mar 11, 2025
12 of 13 checks passed
@daipom daipom deleted the display-script-error-when-starting branch March 11, 2025 05:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants