embulk-output-kafka 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c3f5f6030d31658069560ca259993a1b4032522
4
- data.tar.gz: a1b253e969692fdb3838aaf311450e31c870aba5
3
+ metadata.gz: 55e78aa9c5aec3c15768aed48208cd4b2023c1cd
4
+ data.tar.gz: fbdac9757f935083ab553d44fd7bfc82a59e84a2
5
5
  SHA512:
6
- metadata.gz: 94e2243466075f14a158e0142eabebf51b81b828434b0189d0e600ec48379fd1dce7fcd5c3d49a44e2962173104952905e495b8f45d42e289bd2e07a735611d1
7
- data.tar.gz: '08af7e9195d7d44a109021cf929cb024fdbe2d8baef8f877586dbe96745e65da307d8fbc8c27506b12727c6f420f275fe860dcb17cba88028416c4b17fd86ebc'
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: `500`)
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.0"
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
- # TODO set this: spec.homepage = "https://github.com/kakyoin.hierophant/embulk-output-kafka"
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.0
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.0.jar
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: {}