fluent-plugin-aliyun-odps 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/odps_example.conf ADDED
@@ -0,0 +1,30 @@
1
+ ####
2
+ ## Output descriptions:
3
+ ##
4
+
5
+ <source>
6
+ type tail
7
+ path /opt/log/in/in.log
8
+ refresh_interval 5s
9
+ tag in.log
10
+ format csv
11
+ keys dt,week,r1,r2,r3,r4,r5,r6,r7,blue
12
+ </source>
13
+
14
+ <match in.**>
15
+ type aliyun_odps
16
+ aliyun_access_id ************
17
+ aliyun_access_key *********
18
+ aliyun_odps_endpoint http://service.odps.aliyun.com/api
19
+ aliyun_odps_hub_endpoint http://dh.odps.aliyun.com
20
+ buffer_chunk_limit 2m
21
+ buffer_queue_limit 128
22
+ flush_interval 5s
23
+ project your_projectName
24
+ <table in.log>
25
+ table your_tableName
26
+ fields r1,r2,r3,r4,r5,r6,blue
27
+ partition ctime=${dt.strftime('%Y%m%d')}
28
+ shard_number 1
29
+ </table>
30
+ </match>
metadata ADDED
@@ -0,0 +1,174 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fluent-plugin-aliyun-odps
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - ''
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: fluentd
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.10.49
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 0.10.49
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2'
33
+ - !ruby/object:Gem::Dependency
34
+ name: protobuf
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: 3.5.1
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 3.5.1
47
+ - !ruby/object:Gem::Dependency
48
+ name: yajl-ruby
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '1.0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: fluent-mixin-config-placeholders
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rake
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: 0.9.2
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 0.9.2
89
+ - !ruby/object:Gem::Dependency
90
+ name: flexmock
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: 1.2.0
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 1.2.0
103
+ - !ruby/object:Gem::Dependency
104
+ name: test-unit
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: 3.0.8
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: 3.0.8
117
+ description: Aliyun ODPS output plugin for Fluentd event collector
118
+ email: ''
119
+ executables: []
120
+ extensions: []
121
+ extra_rdoc_files: []
122
+ files:
123
+ - ".gitignore"
124
+ - CHANGELOG.md
125
+ - Gemfile
126
+ - License
127
+ - README.md
128
+ - Rakefile
129
+ - VERSION
130
+ - fluent-plugin-aliyun-odps.gemspec
131
+ - lib/fluent/plugin/conf/config.rb
132
+ - lib/fluent/plugin/digest/crc.rb
133
+ - lib/fluent/plugin/digest/crc32.rb
134
+ - lib/fluent/plugin/digest/crc32c.rb
135
+ - lib/fluent/plugin/exceptions.rb
136
+ - lib/fluent/plugin/http/http_connection.rb
137
+ - lib/fluent/plugin/http/http_flag.rb
138
+ - lib/fluent/plugin/odps/odps_table.rb
139
+ - lib/fluent/plugin/odps/odps_table_schema.rb
140
+ - lib/fluent/plugin/odps/xml_template.rb
141
+ - lib/fluent/plugin/odps/xstream_pack.pb.rb
142
+ - lib/fluent/plugin/odps/xstream_pack.proto
143
+ - lib/fluent/plugin/out_odps.rb
144
+ - lib/fluent/plugin/serialize/deserializer.rb
145
+ - lib/fluent/plugin/serialize/serializer.rb
146
+ - lib/fluent/plugin/stream_client.rb
147
+ - lib/fluent/plugin/stream_reader.rb
148
+ - lib/fluent/plugin/stream_writer.rb
149
+ - odps_example.conf
150
+ homepage: https://github.com/aliyun/aliyun-odps-fluentd-plugin
151
+ licenses:
152
+ - Apache-2.0
153
+ metadata: {}
154
+ post_install_message:
155
+ rdoc_options: []
156
+ require_paths:
157
+ - lib
158
+ required_ruby_version: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: '0'
163
+ required_rubygems_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - ">="
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ requirements: []
169
+ rubyforge_project:
170
+ rubygems_version: 2.4.5
171
+ signing_key:
172
+ specification_version: 4
173
+ summary: Aliyun ODPS output plugin for Fluentd event collector
174
+ test_files: []