You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while working on performance issues I discovered what is probably the source of the pipeline shutdown stalling regression in 1.5 we've been seeing.
The plugins are checking for LogStash::SHUTDOWN that is initialized as the :shutdown symbol while the pipeline pushes a LogStash::ShutdownEvent.new so the plugins never see the shutdown event.
while working on performance issues I discovered what is probably the source of the pipeline shutdown stalling regression in 1.5 we've been seeing.
The plugins are checking for LogStash::SHUTDOWN that is initialized as the
:shutdown
symbol while the pipeline pushes aLogStash::ShutdownEvent.new
so the plugins never see the shutdown event.The fix is currently in this commit c07368c which is part of the fix/perf_regression shared branch.
Once we merge that branch we'll have to release a new logstash-core version.
The text was updated successfully, but these errors were encountered: