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
@guyboertje@ep4sh Looking at the code, you are right @guyboertje there is nothing directly defined in the sqs.rb, but when the doc was generated it look up all the parents class for defined options. If you look at the class that the plugins inherits we are not inheriting from LogStash::Inputs::Base but instead we use LogStash::Inputs::Threadable from logstash like so:
In the past there was a few plugins inheriting from that class, when the pipeline was created we were in fact creating multiple instance of the plugins based on the threads option. This was helping some plugins that had limits to fetch elements from external resources like the SQS inputs, the AWS' api limits the number of retrieved items to be 10.
With the changes to the pipeline and the parsing of the configuration I don't know if the core still respect that behavior.
I can't find any deprecated or previously valid
threads
setting in this plugin's history, ditto in the aws mixin.The text was updated successfully, but these errors were encountered: