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
Similar issue to #143 , #152 , this time is Sybase. The upstream Sequel driver is affected by a connection issue as described in jeremyevans/sequel#2159 Sequel lib doesn't support Sybase, hence, the plugin needs special handling for Sybase to solve this issue.
defDB.disconnect_error?(exception,opts)super || exception.message =~ /Connection is already closed\.\z/end
This problem is caused when a connection gets closed by Sybase (idle sessions, workload rules, network issues, etc.)
Logstash should gracefully recover from those errors, discarding the stale connection and reconnecting the client. Instead, the plugin hangs trying to reuse the closed/invalid connections.
The text was updated successfully, but these errors were encountered:
roaksoax
changed the title
Logstash does not reconnect when Sybase raises "Connection is already closed"
Update Sequel driver (once release upstream) to fix Sybase raises "Connection is already closed"
May 3, 2024
kaisecheng
changed the title
Update Sequel driver (once release upstream) to fix Sybase raises "Connection is already closed"
Logstash does not reconnect when Sybase raises "Connection is already closed"
May 7, 2024
Similar issue to #143 , #152 , this time is Sybase.
The upstream Sequel driver is affected by a connection issue as described in jeremyevans/sequel#2159Sequel lib doesn't support Sybase, hence, the plugin needs special handling for Sybase to solve this issue.This problem is caused when a connection gets closed by Sybase (idle sessions, workload rules, network issues, etc.)
Logstash should gracefully recover from those errors, discarding the stale connection and reconnecting the client. Instead, the plugin hangs trying to reuse the closed/invalid connections.
The text was updated successfully, but these errors were encountered: