diff options
author | Bryan Newbold <bnewbold@archive.org> | 2018-12-01 18:42:21 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2018-12-01 18:42:21 -0800 |
commit | 08e0bee3570bd3a5e846c92276fd339ce66af059 (patch) | |
tree | d5fcfc05f3c8c74c0d73daa49eb66ccabd7b5599 /python | |
parent | 32ae240fdb7b6439f094208c248cc81fcd3bf51d (diff) | |
download | sandcrawler-08e0bee3570bd3a5e846c92276fd339ce66af059.tar.gz sandcrawler-08e0bee3570bd3a5e846c92276fd339ce66af059.zip |
work around kafka topic/group mistakes
Diffstat (limited to 'python')
-rwxr-xr-x | python/kafka_grobid_hbase.py | 2 |
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'] |