joker-star-l commented on code in PR #44999: URL: https://github.com/apache/doris/pull/44999#discussion_r1875197906
########## extension/logstash/lib/logstash/outputs/doris.rb: ########## @@ -131,9 +132,24 @@ def register end end + # Run named Timer as daemon thread + @timer = java.util.Timer.new("Doris Output #{self.params['id']}", true) + + @retry_queue = Queue.new + retry_thread = Thread.new do + while popped = @retry_queue.pop Review Comment: Yes. Queue in ruby is thread safe. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org