ep4sh
(Ep4sh)
February 20, 2019, 8:12am
1
I have a lot of empty messages on my Logstash indexers, I am using AWS SQS input and my attribute on SQS tier (i think it is enough time to process)
ReceiveMessageWaitTimeSeconds == 10 sec.
Is it a responsibility of
polling_frequency = 3
parameter?
ep4sh
(Ep4sh)
February 21, 2019, 6:23am
2
Founded in https://github.com/logstash-plugins/logstash-input-sqs
Look for sqs.rb
def polling_options
{
:max_number_of_messages => MAX_MESSAGES_TO_FETCH,
:attribute_names => SQS_ATTRIBUTES,
:wait_time_seconds => @polling_frequency
}
end
polling_frequency changes wait_time_seconds for AWS SQS short / long polling , yeah
system
(system)
Closed
March 21, 2019, 6:23am
3
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.