fluent-plugin-s3 1.3.3 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/linux.yml +26 -0
- data/ChangeLog +21 -0
- data/Gemfile +0 -2
- data/README.md +11 -781
- data/VERSION +1 -1
- data/docs/credentials.md +171 -0
- data/docs/howto.md +92 -0
- data/docs/input.md +90 -0
- data/docs/output.md +445 -0
- data/docs/v0.12.md +52 -0
- data/lib/fluent/plugin/in_s3.rb +1 -1
- data/lib/fluent/plugin/out_s3.rb +38 -19
- data/lib/fluent/plugin/s3_compressor_parquet.rb +83 -0
- data/test/test_out_s3.rb +132 -8
- metadata +11 -7
- data/.travis.yml +0 -26
data/.travis.yml
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
|
3
|
-
rvm:
|
4
|
-
- 2.1.10
|
5
|
-
- 2.2.9
|
6
|
-
- 2.3.6
|
7
|
-
- 2.4.3
|
8
|
-
- 2.5.0
|
9
|
-
- ruby-head
|
10
|
-
|
11
|
-
gemfile:
|
12
|
-
- Gemfile
|
13
|
-
|
14
|
-
branches:
|
15
|
-
only:
|
16
|
-
- master
|
17
|
-
- v0.12
|
18
|
-
|
19
|
-
before_install: gem update bundler
|
20
|
-
script: bundle exec rake test
|
21
|
-
|
22
|
-
sudo: false
|
23
|
-
|
24
|
-
matrix:
|
25
|
-
allow_failures:
|
26
|
-
- rvm: ruby-head
|