test-opensearch 0.0.0.5 → 0.0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/fluent-plugin-opensearch.gemspec +1 -1
- data/lib/fluent/plugin/in_opensearch.rb +3 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa673ebc53c796e5a252d1233467baaa43b008012e81dfc23868e99577da7c4d
|
|
4
|
+
data.tar.gz: e829229526efec02e22ab4085dccbea383e5f52de391e27c3e4efca90d1320fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da2839cc17c1e05eeea453ce7aaca64a7c55c05020db3461b6cfbe00a0df17fb4448824d9d8e2211aaf1fcdd6c08377f33425b2ceb0d3131af2877e7e8c9df6f
|
|
7
|
+
data.tar.gz: 1420695eeac03116e00e23ea35f5167bca923a6b50ee377e6e1870dfc8657edc41b135e52b5a0dbfc2f2bf5d6094a56a9b572e9c5a0001e154ffbc178e214e3f
|
|
@@ -86,7 +86,6 @@ module Fluent::Plugin
|
|
|
86
86
|
config_param :retry_timeout, :time, default: 72 * 60 * 60, desc: 'The maximum seconds to retry to flush while failing, until plugin discards buffer chunks.'
|
|
87
87
|
# 72hours == 17 times with exponential backoff (not to change default behavior)
|
|
88
88
|
config_param :retry_max_times, :integer, default: 5, desc: 'The maximum number of times to retry to flush while failing.'
|
|
89
|
-
config_param :retry_secondary_threshold, :float, default: 0.8, desc: 'ratio of retry_timeout to switch to use secondary while failing.'
|
|
90
89
|
# exponential backoff sequence will be initialized at the time of this threshold
|
|
91
90
|
config_param :retry_type, :enum, list: [:exponential_backoff, :periodic], default: :periodic
|
|
92
91
|
### Periodic -> fixed :retry_wait
|
|
@@ -160,9 +159,9 @@ module Fluent::Plugin
|
|
|
160
159
|
|
|
161
160
|
def retry_state(randomize)
|
|
162
161
|
retry_state_create(
|
|
163
|
-
:input_retries
|
|
164
|
-
forever: @retry_forever,max_steps: @retry_max_times,
|
|
165
|
-
max_interval: @retry_max_interval,backoff_base: @retry_exponential_backoff_base,
|
|
162
|
+
:input_retries, @retry_type, @retry_wait, @retry_timeout,
|
|
163
|
+
forever: @retry_forever, max_steps: @retry_max_times,
|
|
164
|
+
max_interval: @retry_max_interval, backoff_base: @retry_exponential_backoff_base,
|
|
166
165
|
randomize: randomize
|
|
167
166
|
)
|
|
168
167
|
end
|