We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Separate topic name from consumer for instance to update this structure:
kafka: bootstrap.servers: ${KAFKA_BOOTSTRAP_SERVERS:localhost:9092} polling.timeout: 10000 consumer: fooEntity: name: queuing.my_application.foo_entity enabled: true '[key.deserializer]': org.apache.kafka.common.serialization.StringDeserializer '[value.deserializer]': com.mycompany.myapp.service.kafka.deserializer.FooDeserializer '[group.id]': my_application '[auto.offset.reset]': earliest barEntity: name: queuing.my_application.bar_entity enabled: true '[key.deserializer]': org.apache.kafka.common.serialization.StringDeserializer '[value.deserializer]': com.mycompany.myapp.service.kafka.deserializer.BarDeserializer '[group.id]': my_application '[auto.offset.reset]': earliest
Into:
kafka: bootstrap.servers: ${KAFKA_BOOTSTRAP_SERVERS:localhost:9092} polling.timeout: 10000 topics: foo-entity: queuing.my_application.foo_entity bar-entity: queuing.my_application.bar_entity consumer: fooEntity: enabled: true '[key.deserializer]': org.apache.kafka.common.serialization.StringDeserializer '[value.deserializer]': com.mycompany.myapp.service.kafka.deserializer.FooDeserializer '[group.id]': my_application '[auto.offset.reset]': earliest barEntity: enabled: true '[key.deserializer]': org.apache.kafka.common.serialization.StringDeserializer '[value.deserializer]': com.mycompany.myapp.service.kafka.deserializer.BarDeserializer '[group.id]': my_application '[auto.offset.reset]': earliest
In Big Bang Mode, previous or existing application.yml configuration will be erased so there is no need to ask for which existing topic name.
application.yml
In Incremental Mode, after choosing components a new question "For what topic?" will be added with following answers:
⚠️ There is a problem when choosing a topic created for a Foo entity consumer in a new Bar entity consumer?
Currently 1 topic = 1 consumer but in real life more than 1 consumer can consume messages from 1 topic.
The text was updated successfully, but these errors were encountered:
Linked with #17
Sorry, something went wrong.
Fixed by #86
fdelbrayelle
No branches or pull requests
Overview of the feature request
Separate topic name from consumer for instance to update this structure:
Into:
In Big Bang Mode, previous or existing
application.yml
configuration will be erased so there is no need to ask for which existing topic name.In Incremental Mode, after choosing components a new question "For what topic?" will be added with following answers:
Motivation for or Use Case
Currently 1 topic = 1 consumer but in real life more than 1 consumer can consume messages from 1 topic.
Related issues or PR
The text was updated successfully, but these errors were encountered: