Hey everyone :)
I have some questions regarding the Debezium Engine:
I saw a few blog posts about Debezium Engine in combination with Spring Boot. Do you have further experiences if it works fine?
On a platform like Cloudfoundry, you typically have multiple instances running of a microservice. I know there are solutions e. g. to restrict the execution of a job to one instance. This should also work to run the engine only in one of the instances to avoid problems. However, are there also some built-in capabilities that solve this or is it may possible to parallelize the engine execution over multiple instances?
I get to know Debezium coming from Kafka and would like to use it for the implementation of the outbox pattern. Unfortunately I have no Kafka Connect cluster available so I am searching for different options to run the Debezium Connector. I know the Debezium Engine is not made with the focus of sending events to Kafka but is it still possible? If yes, can I use the same transaction of the KafkaOffsetBackingStore to send my custom events for reaching the quality of the outbox pattern?
Are there other options to run the Debezium Connector without Connect Cluster? I read the Debezium Server is a standalone solution but only recommended for Kinesis and others but not Kafka.
Thanks a lot!
Clemens