eshepelyuk commented on issue #8239:
URL: https://github.com/apache/camel-quarkus/issues/8239#issuecomment-4386021000
This is Camel-K dependencies declaration
```yaml
dependencies:
- camel:bean
- camel:groovy
- camel:micrometer
- camel:kubernetes
- camel:debezium-mongodb
```
This is sample from route declaration
```yaml
- route:
id: debezium-mongodb-dlst
from:
uri: debezium-mongodb:dlst-dbzm
parameters:
offsetStorage:
"org.apache.kafka.connect.storage.KafkaOffsetBackingStore"
additionalProperties.bootstrap.servers: "{{app.kafkaBrokers}}"
additionalProperties.offset.storage.topic: dbzm-offsets
mongodbUser: "{{secret:kpi-cdc-mongodb/username}}"
mongodbPassword: "{{secret:kpi-cdc-mongodb/password}}"
mongodbConnectionString: "{{secret:kpi-cdc-mongodb/url}}"
topicPrefix: dlst-dbzm
mongodbPollIntervalMs: 300000
heartbeatIntervalMs: 30000
databaseIncludeList: "dlst_"
steps:
- setVariables:
variables:
- name: "metadata"
simple: ${headerAs("CamelDebeziumSourceMetadata",
java.util.Map)}
- name: "collection"
simple: "${variables.metadata[collection]}"
..............
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]