You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@streampipes.apache.org by GitBox <gi...@apache.org> on 2022/11/26 13:33:34 UTC

[GitHub] [streampipes] dominikriemer opened a new issue, #367: Cannot start multiple instances of processor

dominikriemer opened a new issue, #367:
URL: https://github.com/apache/streampipes/issues/367

   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.
   
    
   ```
   
       _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()),
      }
   
   ```
   
   
   Imported from Jira [STREAMPIPES-179](https://issues.apache.org/jira/browse/STREAMPIPES-179). Original Jira may contain additional context.
   Reported by: wiener.
   Subtask of issue #365


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [streampipes] dominikriemer closed issue #367: Cannot start multiple instances of processor

Posted by GitBox <gi...@apache.org>.
dominikriemer closed issue #367: Cannot start multiple instances of processor
URL: https://github.com/apache/streampipes/issues/367


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampipes.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org