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
Try to asynchronously connect to Fluentd before writing
PR fluent#77 introduced a new parameter named ForceStopAsyncSend. It can be
used to tell the logger to not try to send all the log messages in its
buffer before closing. Without this parameter, the logger hangs out
whenever the target Fluentd server is down.
Also the logger is currently lazily initializing the connection when
it receives its first log. But this is a problem when the Fluentd server
has never been available as the connection initialization blocks the
select signaling the log channel should be drained.
0 commit comments