Anush krishna V created STREAMPIPES-328:
-------------------------------------------
Summary: CLONE - Cannot start multiple instances of processor
Key: STREAMPIPES-328
URL: https://issues.apache.org/jira/browse/STREAMPIPES-328
Project: StreamPipes
Issue Type: Sub-task
Components: Pipeline Elements
Reporter: Anush krishna V
Assignee: Patrick Wiener
There is bug with starting multiple instances of the same processor. The
problem is that we assign a static Kafka consumer *group.id* in the default
consumer dict. This is should be unique over all instances.
{code:python}
_DEFAULT_KAFKA_CONSUMER_CONFIG = { 'bootstrap.servers':
'kafka:9092', 'enable.auto.commit': True,
'auto.commit.interval.ms': 10000, 'session.timeout.ms': 30000,
'fetch.max.bytes': 5000012, 'auto.offset.reset': 'latest',
'group.id': 'streampipes_python_' + str(uuid.uuid4()), }
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)