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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/README.md +5 -0
  4. data/build.gradle +7 -2
  5. metadata +25 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e69eededaa3567e928cfb6edd1879607ba8b7f3
4
- data.tar.gz: 014e076a87a6c6adde4b8d6fa2177f0f0966e81d
3
+ metadata.gz: d90cf5dd0d129a6494e834700ade73ed349f32c8
4
+ data.tar.gz: 04daf21aaac3f43874b15f062a58628940ee1d93
5
5
  SHA512:
6
- metadata.gz: 8e9fbcd1b6632993a74896d35609df6d6153ab2369292d26e90496d475d30a5530a88478f4ea964dba50f483bdd47f30f58a3ccac02f850bf543ff21cfe0c544
7
- data.tar.gz: a9d9b764357a8d11693c0d93f745a57aecce0a68e5265bd82a2ee79b9ce89ac0a3df2c2b344a846018a2ecf6f24fb9bf0549c92e6bafc0fb58a045a22c52400c
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.0"
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.0.0'
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.0
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-02-22 00:00:00.000000000 Z
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.0.0.jar
78
- - classpath/embulk-output-elasticsearch-0.3.0.jar
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-dataformat-cbor-2.5.3.jar
82
- - classpath/jackson-dataformat-smile-2.5.3.jar
83
- - classpath/jackson-dataformat-yaml-2.5.3.jar
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.2.1.jar
88
- - classpath/lucene-backward-codecs-5.2.1.jar
89
- - classpath/lucene-core-5.2.1.jar
90
- - classpath/lucene-grouping-5.2.1.jar
91
- - classpath/lucene-highlighter-5.2.1.jar
92
- - classpath/lucene-join-5.2.1.jar
93
- - classpath/lucene-memory-5.2.1.jar
94
- - classpath/lucene-misc-5.2.1.jar
95
- - classpath/lucene-queries-5.2.1.jar
96
- - classpath/lucene-queryparser-5.2.1.jar
97
- - classpath/lucene-sandbox-5.2.1.jar
98
- - classpath/lucene-spatial-5.2.1.jar
99
- - classpath/lucene-suggest-5.2.1.jar
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/spatial4j-0.4.1.jar
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: