Hi!
I deployed a Debezium instance on my Kubernetes cluster.
I allocated 1 CPU, 1 GB memory, and 100 GB SSD local disk.
The Debezium instance is connected to Postgres and has Google Pub/Sub set to sink.
Usually, it works great but every now and then (few days) it just stops sending messages. To resolve the issue I delete the pod and Kubernetes recreates it.
Here are the props:
```
debezium.source.connector.class=io.debezium.connector.postgresql.PostgresConnector
debezium.source.offset.storage.file.filename=data/offsets.dat
debezium.source.database.hostname=%hostname%
debezium.source.database.port=5432
debezium.source.database.user=%database_user%
debezium.source.database.password=%database_pass%
debezium.source.database.dbname=%database_dbname%
debezium.source.table.include.list=public.comment,public.comment_upvote,public.source_request,public.upvote,
public.post,public.user,public.post_report
debezium.source.column.exclude.list=public.post.tsv,public.post.placeholder
debezium.transforms=Reroute
debezium.transforms.Reroute.type=io.debezium.transforms.ByLogicalTableRouter
debezium.transforms.Reroute.topic.regex=(.*)
debezium.transforms.Reroute.topic.replacement=%topic%
debezium.sink.type=pubsub
```
I use Debezium 1.5 and I have another instance with the same config but for a different DB that works just fine.
If you have any suggestions this would be great. 🙏
Thanks!