aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2018-12-01 18:42:21 -0800
committerBryan Newbold <bnewbold@archive.org>2018-12-01 18:42:21 -0800
commit08e0bee3570bd3a5e846c92276fd339ce66af059 (patch)
treed5fcfc05f3c8c74c0d73daa49eb66ccabd7b5599
parent32ae240fdb7b6439f094208c248cc81fcd3bf51d (diff)
downloadsandcrawler-08e0bee3570bd3a5e846c92276fd339ce66af059.tar.gz
sandcrawler-08e0bee3570bd3a5e846c92276fd339ce66af059.zip
work around kafka topic/group mistakes
-rwxr-xr-xpython/kafka_grobid_hbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/kafka_grobid_hbase.py b/python/kafka_grobid_hbase.py
index 986448b..a7f2a5e 100755
--- a/python/kafka_grobid_hbase.py
+++ b/python/kafka_grobid_hbase.py
@@ -40,7 +40,7 @@ class KafkaGrobidHbaseWorker:
def __init__(self, kafka_hosts, consume_topic, **kwargs):
self.consume_topic = consume_topic
- self.consumer_group = kwargs.get('consumer_group', 'grobid-hbase-insert')
+ self.consumer_group = kwargs.get('consumer_group', 'grobid-hbase-insert2')
self.kafka_hosts = kafka_hosts or 'localhost:9092'
self.hbase_host = kwargs['hbase_host']
self.hbase_table = kwargs['hbase_table']