embulk-output-kafka 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 +1 -1
- data/build.gradle +2 -2
- data/src/main/java/org/embulk/output/kafka/KafkaOutputPlugin.java +0 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 55e78aa9c5aec3c15768aed48208cd4b2023c1cd
|
|
4
|
+
data.tar.gz: fbdac9757f935083ab553d44fd7bfc82a59e84a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87a3889c7e9bcd881301585269086656c479ea8c6c8dc60a03a79f4a13a4d18d186a1f7e0eca5f0a9de002e0adfb20262306f0782a478f8d888642f25a12e33d
|
|
7
|
+
data.tar.gz: a6e44be4d25da3fdf8bd5e836d6ce4e64effaf07dc5d1f860999a1aad661d6edbf0dcc66faa69666b66e988c3c57541cf8d4c8d10396b364641f7bd2591bd265
|
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
- **avsc_file**: avro schema file path (string, default: `null`)
|
|
18
18
|
- **avsc**: inline avro schema config (json, default: `null`)
|
|
19
19
|
- **key_column_name**: use column value as record key (string, default: `null`, if this parameter is null, set random number as record key)
|
|
20
|
-
- **record_batch_size**: kafka producer record batch size (integer, default: `
|
|
20
|
+
- **record_batch_size**: kafka producer record batch size (integer, default: `1000`)
|
|
21
21
|
- **acks**: kafka producer require acks (string, default: `"1"`)
|
|
22
22
|
- **retries**: kafka producer max retry count (integer, default: `1`)
|
|
23
23
|
- **other_producer_configs**: other producer configs (json, default: `{}`)
|
data/build.gradle
CHANGED
|
@@ -17,7 +17,7 @@ configurations {
|
|
|
17
17
|
provided
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
version = "0.1.
|
|
20
|
+
version = "0.1.1"
|
|
21
21
|
|
|
22
22
|
sourceCompatibility = 1.8
|
|
23
23
|
targetCompatibility = 1.8
|
|
@@ -97,7 +97,7 @@ Gem::Specification.new do |spec|
|
|
|
97
97
|
spec.description = %[Dumps records to Kafka.]
|
|
98
98
|
spec.email = ["kakyoin.hierophant@gmail.com"]
|
|
99
99
|
spec.licenses = ["MIT"]
|
|
100
|
-
|
|
100
|
+
spec.homepage = "https://github.com/joker1007/embulk-output-kafka"
|
|
101
101
|
|
|
102
102
|
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
|
|
103
103
|
spec.test_files = spec.files.grep(%r"^(test|spec)/")
|
|
@@ -252,8 +252,6 @@ public class KafkaOutputPlugin
|
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
254
|
|
|
255
|
-
final Object[] key = new Object[1];
|
|
256
|
-
final String[] topicName = new String[1];
|
|
257
255
|
PrimitiveIterator.OfLong randomLong = new Random().longs(1, Long.MAX_VALUE).iterator();
|
|
258
256
|
|
|
259
257
|
AtomicInteger counter = new AtomicInteger(0);
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-kafka
|
|
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
|
|
@@ -54,7 +54,7 @@ files:
|
|
|
54
54
|
- classpath/common-config-5.3.0.jar
|
|
55
55
|
- classpath/common-utils-5.3.0.jar
|
|
56
56
|
- classpath/commons-compress-1.18.jar
|
|
57
|
-
- classpath/embulk-output-kafka-0.1.
|
|
57
|
+
- classpath/embulk-output-kafka-0.1.1.jar
|
|
58
58
|
- classpath/jackson-annotations-2.9.0.jar
|
|
59
59
|
- classpath/jackson-core-2.9.9.jar
|
|
60
60
|
- classpath/jackson-databind-2.9.9.jar
|
|
@@ -94,7 +94,7 @@ files:
|
|
|
94
94
|
- src/test/resources/config_with_key_column.yml
|
|
95
95
|
- src/test/resources/in1.csv
|
|
96
96
|
- src/test/resources/in_complex.csv
|
|
97
|
-
homepage:
|
|
97
|
+
homepage: https://github.com/joker1007/embulk-output-kafka
|
|
98
98
|
licenses:
|
|
99
99
|
- MIT
|
|
100
100
|
metadata: {}
|