fluent-plugin-s3 1.7.2 → 1.8.5
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/.github/ISSUE_TEMPLATE/bug_report.yaml +1 -0
- data/.github/ISSUE_TEMPLATE/feature_request.yaml +1 -0
- data/.github/dependabot.yml +23 -0
- data/.github/workflows/linux.yml +13 -4
- data/.github/workflows/stale-actions.yml +14 -9
- data/ChangeLog +30 -0
- data/README.md +1 -2
- data/VERSION +1 -1
- data/docs/credentials.md +18 -1
- data/docs/input.md +5 -0
- data/docs/output.md +14 -1
- data/fluent-plugin-s3.gemspec +2 -0
- data/lib/fluent/plugin/in_s3.rb +73 -11
- data/lib/fluent/plugin/out_s3.rb +44 -7
- data/lib/fluent/plugin/s3_compressor_gzip_command.rb +5 -0
- data/lib/fluent/plugin/s3_compressor_zstd.rb +41 -0
- data/lib/fluent/plugin/s3_extractor_gzip_command.rb +9 -20
- data/lib/fluent/plugin/s3_extractor_lzma2.rb +5 -13
- data/lib/fluent/plugin/s3_extractor_lzo.rb +5 -13
- data/test/test_in_s3.rb +123 -12
- data/test/test_out_s3.rb +269 -0
- metadata +36 -7
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-s3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.8.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
- Masahiro Nakagawa
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: fluentd
|
|
@@ -115,6 +114,20 @@ dependencies:
|
|
|
115
114
|
- - ">="
|
|
116
115
|
- !ruby/object:Gem::Version
|
|
117
116
|
version: '0'
|
|
117
|
+
- !ruby/object:Gem::Dependency
|
|
118
|
+
name: ostruct
|
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '0'
|
|
124
|
+
type: :development
|
|
125
|
+
prerelease: false
|
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - ">="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0'
|
|
118
131
|
- !ruby/object:Gem::Dependency
|
|
119
132
|
name: rexml
|
|
120
133
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -129,6 +142,20 @@ dependencies:
|
|
|
129
142
|
- - ">="
|
|
130
143
|
- !ruby/object:Gem::Version
|
|
131
144
|
version: '0'
|
|
145
|
+
- !ruby/object:Gem::Dependency
|
|
146
|
+
name: zstd-ruby
|
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - "~>"
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '1.5'
|
|
152
|
+
type: :development
|
|
153
|
+
prerelease: false
|
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - "~>"
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '1.5'
|
|
132
159
|
description: Amazon S3 output plugin for Fluentd event collector
|
|
133
160
|
email: frsyuki@gmail.com
|
|
134
161
|
executables: []
|
|
@@ -138,6 +165,7 @@ files:
|
|
|
138
165
|
- ".github/ISSUE_TEMPLATE/bug_report.yaml"
|
|
139
166
|
- ".github/ISSUE_TEMPLATE/config.yml"
|
|
140
167
|
- ".github/ISSUE_TEMPLATE/feature_request.yaml"
|
|
168
|
+
- ".github/dependabot.yml"
|
|
141
169
|
- ".github/workflows/linux.yml"
|
|
142
170
|
- ".github/workflows/stale-actions.yml"
|
|
143
171
|
- ".gitignore"
|
|
@@ -162,6 +190,7 @@ files:
|
|
|
162
190
|
- lib/fluent/plugin/s3_compressor_lzma2.rb
|
|
163
191
|
- lib/fluent/plugin/s3_compressor_lzo.rb
|
|
164
192
|
- lib/fluent/plugin/s3_compressor_parquet.rb
|
|
193
|
+
- lib/fluent/plugin/s3_compressor_zstd.rb
|
|
165
194
|
- lib/fluent/plugin/s3_extractor_gzip_command.rb
|
|
166
195
|
- lib/fluent/plugin/s3_extractor_lzma2.rb
|
|
167
196
|
- lib/fluent/plugin/s3_extractor_lzo.rb
|
|
@@ -171,7 +200,6 @@ homepage: https://github.com/fluent/fluent-plugin-s3
|
|
|
171
200
|
licenses:
|
|
172
201
|
- Apache-2.0
|
|
173
202
|
metadata: {}
|
|
174
|
-
post_install_message:
|
|
175
203
|
rdoc_options: []
|
|
176
204
|
require_paths:
|
|
177
205
|
- lib
|
|
@@ -186,8 +214,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
186
214
|
- !ruby/object:Gem::Version
|
|
187
215
|
version: '0'
|
|
188
216
|
requirements: []
|
|
189
|
-
rubygems_version:
|
|
190
|
-
signing_key:
|
|
217
|
+
rubygems_version: 4.0.10
|
|
191
218
|
specification_version: 4
|
|
192
219
|
summary: Amazon S3 output plugin for Fluentd event collector
|
|
193
|
-
test_files:
|
|
220
|
+
test_files:
|
|
221
|
+
- test/test_in_s3.rb
|
|
222
|
+
- test/test_out_s3.rb
|