embulk-output-elasticsearch 0.4.1 → 0.4.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 820af0df51a3e46cfd59a26c60e1fd219134b685
|
|
4
|
+
data.tar.gz: c6fdea4eaa6fe4a26e85c2ee1b5c623224daa317
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81a1fe781d1e176fd8da2c3af19d3ddb1dd5a5dec519f887d072be420224d0168a0ea54f2621a7e50417740320b28f056b0504228bdc826c68e8173bc3bb13b7
|
|
7
|
+
data.tar.gz: d18bc4da9ea81201e72e21d02ec859b5f2a1e2078fd8c1c3a90bd4a01d361746b2b75aedc3baf50098f0b93d2f1ae4993b31eba2cbdd2d8f99d61194220c6a41
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 0.4.2 - 2017-05-31
|
|
2
|
+
|
|
3
|
+
* [maintenance] Update embulk-base-restclient to fix ArrayIndexOutOfBoundsException [#37](https://github.com/muga/embulk-output-elasticsearch/pull/37)
|
|
4
|
+
|
|
1
5
|
## 0.4.1 - 2017-04-21
|
|
2
6
|
|
|
3
7
|
* [maintenance] Check snapshot progress status before delete index [#36](https://github.com/muga/embulk-output-elasticsearch/pull/36)
|
data/build.gradle
CHANGED
|
@@ -18,7 +18,7 @@ configurations {
|
|
|
18
18
|
provided
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
version = "0.4.
|
|
21
|
+
version = "0.4.2"
|
|
22
22
|
|
|
23
23
|
compileJava.options.encoding = 'UTF-8' // source encoding
|
|
24
24
|
sourceCompatibility = 1.7
|
|
@@ -27,8 +27,8 @@ targetCompatibility = 1.7
|
|
|
27
27
|
dependencies {
|
|
28
28
|
compile "org.embulk:embulk-core:0.8.16"
|
|
29
29
|
provided "org.embulk:embulk-core:0.8.16"
|
|
30
|
-
compile "org.embulk.base.restclient:embulk-base-restclient:0.
|
|
31
|
-
compile "org.embulk.base.restclient:embulk-util-retryhelper-jetty92:0.
|
|
30
|
+
compile "org.embulk.base.restclient:embulk-base-restclient:0.5.2"
|
|
31
|
+
compile "org.embulk.base.restclient:embulk-util-retryhelper-jetty92:0.5.2"
|
|
32
32
|
|
|
33
33
|
testCompile "junit:junit:4.+"
|
|
34
34
|
testCompile "org.embulk:embulk-core:0.8.16:tests"
|
|
@@ -235,7 +235,7 @@ public class ElasticsearchOutputPluginDelegate
|
|
|
235
235
|
}
|
|
236
236
|
|
|
237
237
|
@Override // Overridden from |RecordBufferBuildable|
|
|
238
|
-
public RecordBuffer buildRecordBuffer(PluginTask task)
|
|
238
|
+
public RecordBuffer buildRecordBuffer(PluginTask task, Schema schema, int taskIndex)
|
|
239
239
|
{
|
|
240
240
|
Jetty92RetryHelper retryHelper = createRetryHelper(task);
|
|
241
241
|
return new ElasticsearchRecordBuffer("records", task, retryHelper);
|
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.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Muga Nishizawa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -82,9 +82,9 @@ files:
|
|
|
82
82
|
- src/test/java/org/embulk/output/elasticsearch/TestElasticsearchHttpClient.java
|
|
83
83
|
- src/test/java/org/embulk/output/elasticsearch/TestElasticsearchOutputPlugin.java
|
|
84
84
|
- src/test/resources/sample_01.csv
|
|
85
|
-
- classpath/embulk-base-restclient-0.
|
|
86
|
-
- classpath/embulk-output-elasticsearch-0.4.
|
|
87
|
-
- classpath/embulk-util-retryhelper-jetty92-0.
|
|
85
|
+
- classpath/embulk-base-restclient-0.5.2.jar
|
|
86
|
+
- classpath/embulk-output-elasticsearch-0.4.2.jar
|
|
87
|
+
- classpath/embulk-util-retryhelper-jetty92-0.5.2.jar
|
|
88
88
|
- classpath/jetty-client-9.2.14.v20151106.jar
|
|
89
89
|
- classpath/jetty-http-9.2.14.v20151106.jar
|
|
90
90
|
- classpath/jetty-io-9.2.14.v20151106.jar
|