fluent-plugin-azure-storage-table 0.0.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 +7 -0
- data/.gitignore +9 -0
- data/CHANGELOG.md +8 -0
- data/Gemfile +4 -0
- data/LICENSE +21 -0
- data/README.md +39 -0
- data/Rakefile +1 -0
- data/fluent-plugin-azure-storage-tables.gemspec +24 -0
- data/lib/fluent/plugin/out_azuretables.rb +145 -0
- metadata +109 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 568fa4b709daacaf59329304e91e418821b23108
|
4
|
+
data.tar.gz: 44c4fa0da5cb8faadc884aa00d3b711f3f12c0ec
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 50e06246274c8ee444cce9dfa404a144476eab82f0784dda340c450ddf0021ef93bb519febbd587e07e7d47cf4ffb90c5c9610f5f1cd2f615c95a0beb414cfb8
|
7
|
+
data.tar.gz: 124fc9f863054a0f537794223d98916d0bb99d7fb76cbbeac6e8c9fdda6d516510bed1f61a104601e3402d0a05e2543e0f59736a371e86319701fe55446baebb
|
data/.gitignore
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) <2015> <Anh Phong (dev.hibiki@gmail.com)>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# Azure Tables output plugin for [Fluentd](http://www.fluentd.org/)
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
```ruby
|
6
|
+
fluent-gem install fluent-plugin-azuretables
|
7
|
+
```
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
### Configuration
|
12
|
+
```
|
13
|
+
<match azuretables.**>
|
14
|
+
type azuretables
|
15
|
+
account_name AZURE_STORAGE_ACCOUNT
|
16
|
+
access_key AZURE_STORAGE_ACCESS_KEY
|
17
|
+
table YOUR_TABLE_NAME
|
18
|
+
detach_process 6
|
19
|
+
create_table_if_not_exists false
|
20
|
+
partition_keys test-partition-key-01,test-partition-key-02
|
21
|
+
row_keys rk1 test-row-key-01,test-row-key-02
|
22
|
+
key_delimiter __
|
23
|
+
</match>
|
24
|
+
```
|
25
|
+
|
26
|
+
* type (required) - azuretables
|
27
|
+
* account_name (required) - AZURE_STORAGE_ACCOUNT (from your Azure portal).
|
28
|
+
* access_key (required) - AZURE_STORAGE_ACCESS_KEY (from your Azure portal).
|
29
|
+
* table (required) - table name where you want to store event records.
|
30
|
+
* detach_process (optional) - number of processes. You can launch multiprocessing if you need high throughput.
|
31
|
+
* create_table_if_not_exists (optional) - Set __true__ if you want create table if it doesn't exist. Default: __false__.
|
32
|
+
* partition_keys (optional) - A string with comma delimiter.List of properties which are used to create a composite __PartitionKey__.
|
33
|
+
* row_keys (optional) - A string with comma delimiter.List of properties which are used to create a composite __RowKey__.
|
34
|
+
* key_delimiter (optional) - A string becomes delimiter of partition key and row key in table. Default: "__" (underscores x2)
|
35
|
+
|
36
|
+
## TODO
|
37
|
+
|
38
|
+
## Contributing
|
39
|
+
Bug reports and pull requests are welcome on GitHub at [https://github.com/heocoi/fluent-plugin-azuretables](https://github.com/heocoi/fluent-plugin-azuretables).
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "fluent-plugin-azure-storage-table"
|
7
|
+
spec.version = "0.0.5"
|
8
|
+
spec.authors = ["Donny Xia"]
|
9
|
+
spec.email = ["xiadong.main@gmail.com"]
|
10
|
+
spec.summary = "Fluentd plugin for Azure Tables Storage."
|
11
|
+
spec.description = "Fluentd plugin to add event record into Azure Tables Storage. This plugin is only for internal purpose and isn't for general usage"
|
12
|
+
spec.homepage = "https://github.com/Shell32-Natsu/fluent-plugin-azuretables"
|
13
|
+
spec.licenses = ["MIT"]
|
14
|
+
spec.has_rdoc = false
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_dependency "fluentd", '>= 0.14.10'
|
21
|
+
spec.add_dependency "azure", '~> 0'
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.14"
|
23
|
+
spec.add_development_dependency "rake", "~> 12.0"
|
24
|
+
end
|
@@ -0,0 +1,145 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
require 'azure'
|
3
|
+
require 'time'
|
4
|
+
|
5
|
+
module Fluent
|
6
|
+
class AzuretablesOutput < BufferedOutput
|
7
|
+
Plugin.register_output('azuretables', self)
|
8
|
+
|
9
|
+
include DetachMultiProcessMixin
|
10
|
+
|
11
|
+
ENTITY_SIZE_LIMIT = 1024*1024 # 1MB
|
12
|
+
BATCHWRITE_ENTITY_LIMIT = 100
|
13
|
+
BATCHWRITE_SIZE_LIMIT = 4*1024*1024 # 4MB
|
14
|
+
|
15
|
+
# config_param defines a parameter
|
16
|
+
config_param :account_name, :string # your azure storage account
|
17
|
+
config_param :access_key, :string, :secret => true # your azure storage access key
|
18
|
+
config_param :table, :string # azure storage table name
|
19
|
+
config_param :create_table_if_not_exists, :bool, :default => false
|
20
|
+
config_param :key_delimiter, :string, :default => '__'
|
21
|
+
config_param :partition_keys, :string, :default => nil
|
22
|
+
config_param :row_keys, :string, :default => nil
|
23
|
+
|
24
|
+
# This method is called before starting.
|
25
|
+
# 'conf' is a Hash that includes configuration parameters.
|
26
|
+
# If the configuration is invalid, raise Fluent::ConfigError.
|
27
|
+
def configure(conf)
|
28
|
+
super
|
29
|
+
unless @partition_keys.nil?
|
30
|
+
@partition_key_array = @partition_keys.split(',')
|
31
|
+
end
|
32
|
+
|
33
|
+
unless @row_keys.nil?
|
34
|
+
@row_key_array = @row_keys.split(',')
|
35
|
+
end
|
36
|
+
|
37
|
+
@row_key_cnt = 0
|
38
|
+
end
|
39
|
+
|
40
|
+
# connect azure table storage service
|
41
|
+
def start
|
42
|
+
super
|
43
|
+
unless @account_name.nil? || @access_key.nil?
|
44
|
+
Azure.config.storage_account_name = @account_name
|
45
|
+
Azure.config.storage_access_key = @access_key
|
46
|
+
end
|
47
|
+
|
48
|
+
begin
|
49
|
+
@azure_table_service = Azure::Table::TableService.new
|
50
|
+
# create table if not exits
|
51
|
+
@azure_table_service.create_table(@table) if !table_exists?(@table) && @create_table_if_not_exists
|
52
|
+
rescue Exception => e
|
53
|
+
log.error e
|
54
|
+
exit!
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def table_exists?(table_name)
|
59
|
+
begin
|
60
|
+
@azure_table_service.get_table(table_name)
|
61
|
+
true
|
62
|
+
rescue Azure::Core::Http::HTTPError => e
|
63
|
+
false
|
64
|
+
rescue Exception => e
|
65
|
+
log.fatal "UnknownError: '#{e}'"
|
66
|
+
exit!
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
# This method is called when shutting down.
|
71
|
+
def shutdown
|
72
|
+
super
|
73
|
+
end
|
74
|
+
|
75
|
+
# create entity from event record
|
76
|
+
def format(tag, time, record)
|
77
|
+
partition_keys = []
|
78
|
+
row_keys = []
|
79
|
+
record.each_pair do |name, val|
|
80
|
+
if @partition_key_array && @partition_key_array.include?(name)
|
81
|
+
partition_keys << val
|
82
|
+
record.delete(name)
|
83
|
+
elsif @row_key_array && @row_key_array.include?(name)
|
84
|
+
row_keys << val
|
85
|
+
record.delete(name)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
partition_keys << Time.now.strftime("%Y%m%d")
|
89
|
+
row_keys << Time.now.getutc.to_i
|
90
|
+
row_keys << @row_key_cnt
|
91
|
+
@row_key_cnt += 1
|
92
|
+
|
93
|
+
entity = Hash.new
|
94
|
+
entity['partition_key'] = partition_keys.join(@key_delimiter)
|
95
|
+
entity['row_key'] = row_keys.join(@key_delimiter)
|
96
|
+
entity['entity_values'] = record
|
97
|
+
entity.to_msgpack
|
98
|
+
end
|
99
|
+
|
100
|
+
def format_key(record, keys, key_delimiter)
|
101
|
+
ret = []
|
102
|
+
record.each_pair do |name, val|
|
103
|
+
ret << val if keys.include?(name)
|
104
|
+
end
|
105
|
+
ret.join(key_delimiter)
|
106
|
+
end
|
107
|
+
|
108
|
+
def write(chunk)
|
109
|
+
batch_size = 0
|
110
|
+
group_entities = Hash.new
|
111
|
+
chunk.msgpack_each do |entity|
|
112
|
+
partition_key = entity['partition_key']
|
113
|
+
group_entities[partition_key] = [] unless group_entities.has_key?(partition_key)
|
114
|
+
group_entities[partition_key] << entity
|
115
|
+
batch_size += entity.to_json.length
|
116
|
+
if group_entities[partition_key].size >= BATCHWRITE_ENTITY_LIMIT || batch_size >= BATCHWRITE_SIZE_LIMIT
|
117
|
+
insert_entities(partition_key, group_entities[partition_key])
|
118
|
+
group_entities[partition_key] = []
|
119
|
+
batch_size = 0
|
120
|
+
end
|
121
|
+
end
|
122
|
+
unless group_entities.empty?
|
123
|
+
group_entities.each_pair do |partition_key, entities|
|
124
|
+
insert_entities(partition_key, entities)
|
125
|
+
end
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
def insert_entities(partition_key, entities)
|
130
|
+
begin
|
131
|
+
batch = Azure::Table::Batch.new(@table, partition_key) do
|
132
|
+
entities.each do |entity|
|
133
|
+
insert entity['row_key'], entity['entity_values']
|
134
|
+
end
|
135
|
+
end
|
136
|
+
return @azure_table_service.execute_batch(batch)
|
137
|
+
rescue Exception => e
|
138
|
+
log.fatal "UnknownError: '#{e}'"
|
139
|
+
log.debug partition_key
|
140
|
+
log.debug entities.inspect
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
end # class
|
145
|
+
end # module
|
metadata
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fluent-plugin-azure-storage-table
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Donny Xia
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-10-25 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.14.10
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.14.10
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: azure
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.14'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.14'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '12.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '12.0'
|
69
|
+
description: Fluentd plugin to add event record into Azure Tables Storage. This plugin
|
70
|
+
is only for internal purpose and isn't for general usage
|
71
|
+
email:
|
72
|
+
- xiadong.main@gmail.com
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- CHANGELOG.md
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- fluent-plugin-azure-storage-tables.gemspec
|
84
|
+
- lib/fluent/plugin/out_azuretables.rb
|
85
|
+
homepage: https://github.com/Shell32-Natsu/fluent-plugin-azuretables
|
86
|
+
licenses:
|
87
|
+
- MIT
|
88
|
+
metadata: {}
|
89
|
+
post_install_message:
|
90
|
+
rdoc_options: []
|
91
|
+
require_paths:
|
92
|
+
- lib
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
requirements: []
|
104
|
+
rubyforge_project:
|
105
|
+
rubygems_version: 2.6.14.3
|
106
|
+
signing_key:
|
107
|
+
specification_version: 4
|
108
|
+
summary: Fluentd plugin for Azure Tables Storage.
|
109
|
+
test_files: []
|