embulk-output-elasticsearch 0.3.0 → 0.3.1
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/CHANGELOG.md +4 -0
- data/README.md +5 -0
- data/build.gradle +7 -2
- metadata +25 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d90cf5dd0d129a6494e834700ade73ed349f32c8
|
|
4
|
+
data.tar.gz: 04daf21aaac3f43874b15f062a58628940ee1d93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6cd37883a5921dac22cd794952717c1a1eb0874e52a0bde5a8bd4cd953a40928c69ce676b3a64aa216eb6f67d3e185f258930671490982edb49cd4e49b9dbaa
|
|
7
|
+
data.tar.gz: 5c4da5add896bd7e3ae3ff8a2e3f2f107007dc53e7927fe8d9a60937563bd70b304f3f4a578d704280c538bf1ad84ab1b97cabb8c8dd579673c531c6f08c83df
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 0.3.1 - 2016-06-21
|
|
2
|
+
|
|
3
|
+
* [maintenance] Update Elasticsearch client to 2.3.3 [#25](https://github.com/muga/embulk-output-elasticsearch/pull/25)
|
|
4
|
+
|
|
1
5
|
## 0.3.0 - 2016-02-22
|
|
2
6
|
|
|
3
7
|
* [maintenance] Upgrade Embulk v08 [#21](https://github.com/muga/embulk-output-elasticsearch/pull/21)
|
data/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Elasticsearch output plugin for Embulk
|
|
2
2
|
|
|
3
|
+
**Notice** This plugin doesn't support [Amazon(AWS) Elasticsearch Service](https://aws.amazon.com/elasticsearch-service/).
|
|
4
|
+
Plugin uses [Transport Client](https://www.elastic.co/guide/en/elasticsearch/client/java-api/2.0/transport-client.html) but AWS Elasticsearch doesn't support this method.
|
|
5
|
+
> The service supports HTTP on port 80, but does not support TCP transport.
|
|
6
|
+
- *[Amazon Elasticsearch Service Limits](http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/aes-limits.html)*
|
|
7
|
+
|
|
3
8
|
## Overview
|
|
4
9
|
|
|
5
10
|
* **Plugin type**: output
|
data/build.gradle
CHANGED
|
@@ -14,7 +14,7 @@ configurations {
|
|
|
14
14
|
provided
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
version = "0.3.
|
|
17
|
+
version = "0.3.1"
|
|
18
18
|
|
|
19
19
|
compileJava.options.encoding = 'UTF-8' // source encoding
|
|
20
20
|
sourceCompatibility = 1.7
|
|
@@ -23,7 +23,7 @@ targetCompatibility = 1.7
|
|
|
23
23
|
dependencies {
|
|
24
24
|
compile "org.embulk:embulk-core:0.8.5"
|
|
25
25
|
provided "org.embulk:embulk-core:0.8.5"
|
|
26
|
-
compile 'org.elasticsearch:elasticsearch:2.
|
|
26
|
+
compile 'org.elasticsearch:elasticsearch:2.3.3'
|
|
27
27
|
|
|
28
28
|
testCompile "junit:junit:4.+"
|
|
29
29
|
testCompile "org.embulk:embulk-core:0.8.5:tests"
|
|
@@ -48,6 +48,11 @@ task gem(type: JRubyExec, dependsOn: ["build", "gemspec", "classpath"]) {
|
|
|
48
48
|
doLast { ant.move(file: "${project.name}-${project.version}.gem", todir: "pkg") }
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
task "package"(dependsOn: ["gemspec", "classpath"]) << {
|
|
52
|
+
println "> Build succeeded."
|
|
53
|
+
println "> You can run embulk with '-L ${file(".").absolutePath}' argument."
|
|
54
|
+
}
|
|
55
|
+
|
|
51
56
|
task gemspec << { file("build/gemspec").write($/
|
|
52
57
|
Gem::Specification.new do |spec|
|
|
53
58
|
spec.name = "${project.name}"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-elasticsearch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Muga Nishizawa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -74,31 +74,35 @@ files:
|
|
|
74
74
|
- src/test/resources/sample_01.csv
|
|
75
75
|
- classpath/commons-cli-1.3.1.jar
|
|
76
76
|
- classpath/compress-lzf-1.0.2.jar
|
|
77
|
-
- classpath/elasticsearch-2.
|
|
78
|
-
- classpath/embulk-output-elasticsearch-0.3.
|
|
77
|
+
- classpath/elasticsearch-2.3.3.jar
|
|
78
|
+
- classpath/embulk-output-elasticsearch-0.3.1.jar
|
|
79
79
|
- classpath/HdrHistogram-2.1.6.jar
|
|
80
80
|
- classpath/hppc-0.7.1.jar
|
|
81
|
-
- classpath/jackson-
|
|
82
|
-
- classpath/jackson-dataformat-
|
|
83
|
-
- classpath/jackson-dataformat-
|
|
81
|
+
- classpath/jackson-core-2.6.6.jar
|
|
82
|
+
- classpath/jackson-dataformat-cbor-2.6.6.jar
|
|
83
|
+
- classpath/jackson-dataformat-smile-2.6.6.jar
|
|
84
|
+
- classpath/jackson-dataformat-yaml-2.6.6.jar
|
|
84
85
|
- classpath/joda-convert-1.2.jar
|
|
85
86
|
- classpath/joda-time-2.8.2.jar
|
|
86
87
|
- classpath/jsr166e-1.1.0.jar
|
|
87
|
-
- classpath/lucene-analyzers-common-5.
|
|
88
|
-
- classpath/lucene-backward-codecs-5.
|
|
89
|
-
- classpath/lucene-core-5.
|
|
90
|
-
- classpath/lucene-grouping-5.
|
|
91
|
-
- classpath/lucene-highlighter-5.
|
|
92
|
-
- classpath/lucene-join-5.
|
|
93
|
-
- classpath/lucene-memory-5.
|
|
94
|
-
- classpath/lucene-misc-5.
|
|
95
|
-
- classpath/lucene-queries-5.
|
|
96
|
-
- classpath/lucene-queryparser-5.
|
|
97
|
-
- classpath/lucene-sandbox-5.
|
|
98
|
-
- classpath/lucene-spatial-5.
|
|
99
|
-
- classpath/lucene-
|
|
88
|
+
- classpath/lucene-analyzers-common-5.5.0.jar
|
|
89
|
+
- classpath/lucene-backward-codecs-5.5.0.jar
|
|
90
|
+
- classpath/lucene-core-5.5.0.jar
|
|
91
|
+
- classpath/lucene-grouping-5.5.0.jar
|
|
92
|
+
- classpath/lucene-highlighter-5.5.0.jar
|
|
93
|
+
- classpath/lucene-join-5.5.0.jar
|
|
94
|
+
- classpath/lucene-memory-5.5.0.jar
|
|
95
|
+
- classpath/lucene-misc-5.5.0.jar
|
|
96
|
+
- classpath/lucene-queries-5.5.0.jar
|
|
97
|
+
- classpath/lucene-queryparser-5.5.0.jar
|
|
98
|
+
- classpath/lucene-sandbox-5.5.0.jar
|
|
99
|
+
- classpath/lucene-spatial-5.5.0.jar
|
|
100
|
+
- classpath/lucene-spatial3d-5.5.0.jar
|
|
101
|
+
- classpath/lucene-suggest-5.5.0.jar
|
|
100
102
|
- classpath/netty-3.10.5.Final.jar
|
|
101
|
-
- classpath/
|
|
103
|
+
- classpath/securesm-1.0.jar
|
|
104
|
+
- classpath/snakeyaml-1.15.jar
|
|
105
|
+
- classpath/spatial4j-0.5.jar
|
|
102
106
|
- classpath/t-digest-3.0.jar
|
|
103
107
|
homepage: https://github.com/muga/embulk-output-elasticsearch
|
|
104
108
|
licenses:
|