embulk-output-cassandra 0.1.0 → 0.1.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/README.md +8 -2
- data/build.gradle +18 -7
- metadata +29 -31
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e128e8bd86c8b5573a718700e449160a47e9fa8d
|
4
|
+
data.tar.gz: 5bf5acfb7cc3d84360a5f7889f60f5575608000f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 623b2b2b23945c8ebd2519b41e580636581b4ac4fcd305c1f60d84ccb73f7bad89ae0abfbfa20d35cb5598b507b161ead4ae0b8c9235650de538611a8a763d4c
|
7
|
+
data.tar.gz: 7c9a6cfd7e008a4621b866b516057bb0d6277a3c875a6a8f95eeb735b977ae7b21e8325cf40d1f5e53c7da76004e45d54ec942e47b8958d24b7441a47e54aa53
|
data/README.md
CHANGED
@@ -6,8 +6,14 @@ Apache Cassandra output plugin for Embulk.
|
|
6
6
|
|
7
7
|
* **Plugin type**: output
|
8
8
|
* **Load all or nothing**: no
|
9
|
-
* **Resume supported**:
|
10
|
-
* **Cleanup supported**:
|
9
|
+
* **Resume supported**: yes
|
10
|
+
* **Cleanup supported**: no
|
11
|
+
|
12
|
+
## Caution
|
13
|
+
In current, version of netty components conflicts to one that is used by embulk-core.
|
14
|
+
This probrem is very severe.
|
15
|
+
I tested this plugin on embulk-0.9.7.
|
16
|
+
But future embulk version may break this plugin.
|
11
17
|
|
12
18
|
## Configuration
|
13
19
|
|
data/build.gradle
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
plugins {
|
2
2
|
id "com.jfrog.bintray" version "1.1"
|
3
|
-
id "com.github.jruby-gradle.base" version "
|
3
|
+
id "com.github.jruby-gradle.base" version "1.5.0"
|
4
4
|
id "java"
|
5
5
|
id "checkstyle"
|
6
6
|
}
|
@@ -13,14 +13,23 @@ configurations {
|
|
13
13
|
provided
|
14
14
|
}
|
15
15
|
|
16
|
-
version = "0.1.
|
16
|
+
version = "0.1.1"
|
17
17
|
|
18
18
|
sourceCompatibility = 1.8
|
19
19
|
targetCompatibility = 1.8
|
20
20
|
|
21
21
|
dependencies {
|
22
22
|
compile "org.embulk:embulk-core:0.9.7"
|
23
|
-
compile
|
23
|
+
compile("com.datastax.cassandra:cassandra-driver-core:3.5.0") {
|
24
|
+
exclude module: 'netty-buffer'
|
25
|
+
exclude module: 'netty-codec'
|
26
|
+
exclude module: 'netty-common'
|
27
|
+
exclude module: 'netty-handler'
|
28
|
+
exclude module: 'netty-transport'
|
29
|
+
}
|
30
|
+
compile "io.netty:netty-codec:4.0.44.Final"
|
31
|
+
compile "io.netty:netty-handler:4.0.44.Final"
|
32
|
+
compile "io.netty:netty-transport:4.0.44.Final"
|
24
33
|
provided "org.embulk:embulk-core:0.9.7"
|
25
34
|
testCompile "junit:junit:4.+"
|
26
35
|
testCompile "org.embulk:embulk-test:0.9.7"
|
@@ -52,14 +61,16 @@ task checkstyle(type: Checkstyle) {
|
|
52
61
|
}
|
53
62
|
|
54
63
|
task gem(type: JRubyExec, dependsOn: ["gemspec", "classpath"]) {
|
55
|
-
jrubyArgs "-
|
56
|
-
script "
|
64
|
+
jrubyArgs "-S"
|
65
|
+
script "gem"
|
66
|
+
scriptArgs "build", "${project.name}.gemspec"
|
57
67
|
doLast { ant.move(file: "${project.name}-${project.version}.gem", todir: "pkg") }
|
58
68
|
}
|
59
69
|
|
60
70
|
task gemPush(type: JRubyExec, dependsOn: ["gem"]) {
|
61
|
-
jrubyArgs "-
|
62
|
-
script "
|
71
|
+
jrubyArgs "-S"
|
72
|
+
script "gem"
|
73
|
+
scriptArgs "push", "pkg/${project.name}-${project.version}.gem"
|
63
74
|
}
|
64
75
|
|
65
76
|
task "package"(dependsOn: ["gemspec", "classpath"]) {
|
metadata
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-output-cassandra
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- joker1007
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07-
|
11
|
+
date: 2018-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
|
-
- - ~>
|
16
|
+
- - "~>"
|
17
17
|
- !ruby/object:Gem::Version
|
18
18
|
version: '1.0'
|
19
19
|
name: bundler
|
@@ -21,13 +21,13 @@ dependencies:
|
|
21
21
|
type: :development
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - ~>
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
29
29
|
requirements:
|
30
|
-
- -
|
30
|
+
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '10.0'
|
33
33
|
name: rake
|
@@ -35,7 +35,7 @@ dependencies:
|
|
35
35
|
type: :development
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
41
|
description: Dumps records to Apache Cassandra.
|
@@ -45,10 +45,29 @@ executables: []
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
-
- .gitignore
|
48
|
+
- ".gitignore"
|
49
49
|
- LICENSE.txt
|
50
50
|
- README.md
|
51
51
|
- build.gradle
|
52
|
+
- classpath/asm-5.0.3.jar
|
53
|
+
- classpath/asm-analysis-5.0.3.jar
|
54
|
+
- classpath/asm-commons-5.0.3.jar
|
55
|
+
- classpath/asm-tree-5.0.3.jar
|
56
|
+
- classpath/asm-util-5.0.3.jar
|
57
|
+
- classpath/cassandra-driver-core-3.5.0.jar
|
58
|
+
- classpath/embulk-output-cassandra-0.1.1.jar
|
59
|
+
- classpath/guava-19.0.jar
|
60
|
+
- classpath/jffi-1.2.16-native.jar
|
61
|
+
- classpath/jffi-1.2.16.jar
|
62
|
+
- classpath/jnr-constants-0.9.9.jar
|
63
|
+
- classpath/jnr-ffi-2.1.7.jar
|
64
|
+
- classpath/jnr-posix-3.0.44.jar
|
65
|
+
- classpath/jnr-x86asm-1.0.2.jar
|
66
|
+
- classpath/metrics-core-3.2.2.jar
|
67
|
+
- classpath/netty-codec-4.0.44.Final.jar
|
68
|
+
- classpath/netty-handler-4.0.44.Final.jar
|
69
|
+
- classpath/netty-transport-4.0.44.Final.jar
|
70
|
+
- classpath/slf4j-api-1.7.25.jar
|
52
71
|
- config/checkstyle/checkstyle.xml
|
53
72
|
- config/checkstyle/default.xml
|
54
73
|
- embulk-output-cassandra.iml
|
@@ -93,27 +112,6 @@ files:
|
|
93
112
|
- src/test/resources/org/embulk/output/cassandra/test_basic.yaml
|
94
113
|
- src/test/resources/org/embulk/output/cassandra/test_complex.yaml
|
95
114
|
- src/test/resources/org/embulk/output/cassandra/test_uuid.yaml
|
96
|
-
- classpath/asm-util-5.0.3.jar
|
97
|
-
- classpath/asm-analysis-5.0.3.jar
|
98
|
-
- classpath/asm-tree-5.0.3.jar
|
99
|
-
- classpath/guava-19.0.jar
|
100
|
-
- classpath/jnr-constants-0.9.9.jar
|
101
|
-
- classpath/jnr-posix-3.0.44.jar
|
102
|
-
- classpath/cassandra-driver-core-3.5.0.jar
|
103
|
-
- classpath/jnr-ffi-2.1.7.jar
|
104
|
-
- classpath/netty-codec-4.0.56.Final.jar
|
105
|
-
- classpath/asm-commons-5.0.3.jar
|
106
|
-
- classpath/netty-buffer-4.0.56.Final.jar
|
107
|
-
- classpath/metrics-core-3.2.2.jar
|
108
|
-
- classpath/netty-common-4.0.56.Final.jar
|
109
|
-
- classpath/jnr-x86asm-1.0.2.jar
|
110
|
-
- classpath/asm-5.0.3.jar
|
111
|
-
- classpath/netty-transport-4.0.56.Final.jar
|
112
|
-
- classpath/embulk-output-cassandra-0.1.0.jar
|
113
|
-
- classpath/jffi-1.2.16.jar
|
114
|
-
- classpath/jffi-1.2.16-native.jar
|
115
|
-
- classpath/slf4j-api-1.7.25.jar
|
116
|
-
- classpath/netty-handler-4.0.56.Final.jar
|
117
115
|
homepage: https://github.com/joker1007/embulk-output-cassandra
|
118
116
|
licenses:
|
119
117
|
- MIT
|
@@ -124,17 +122,17 @@ require_paths:
|
|
124
122
|
- lib
|
125
123
|
required_ruby_version: !ruby/object:Gem::Requirement
|
126
124
|
requirements:
|
127
|
-
- -
|
125
|
+
- - ">="
|
128
126
|
- !ruby/object:Gem::Version
|
129
127
|
version: '0'
|
130
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
129
|
requirements:
|
132
|
-
- -
|
130
|
+
- - ">="
|
133
131
|
- !ruby/object:Gem::Version
|
134
132
|
version: '0'
|
135
133
|
requirements: []
|
136
134
|
rubyforge_project:
|
137
|
-
rubygems_version: 2.
|
135
|
+
rubygems_version: 2.6.8
|
138
136
|
signing_key:
|
139
137
|
specification_version: 4
|
140
138
|
summary: Cassandra output plugin for Embulk
|