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
Because the LTRIM is removing the just fetched data from Redis before the results have been processed by Logstash and have had a chance to be put into a Logstash persistent-queue, couldn't this data be lost if Logstash were to unexpectedly go down?
The text was updated successfully, but these errors were encountered:
Yes.
Doing lossless transport through redis is only possible if you do a bunch
of extra work to build a lossless abstraction on top of redis. There is no
built-in system for this today. Logstash could build this using rpoplpush
and a bunch of code to manage state.
logstash-input-redis/lib/logstash/inputs/redis.rb
Line 145 in 19927e7
Because the LTRIM is removing the just fetched data from Redis before the results have been processed by Logstash and have had a chance to be put into a Logstash persistent-queue, couldn't this data be lost if Logstash were to unexpectedly go down?
The text was updated successfully, but these errors were encountered: