Hi Folks
we need some help here
- we are using dbezium connector with our postgres db which is fairly big ( around 2 TB )
- Debezium conector version 1.5.2.Final
- Postgres 11
Issue we noticed while the initial snapshot is, db disk space was increased from 50 % to around 80% in two days. we had to stop the connector and delete the replication slot to avoid a downtime .
one other issue we noticed is while snapshot is progressing the replication slot is not active not sure if both the issues are related
select * from pg_replication_slots
shows
active | f
temporary| f
here is our debezium connector configurations
{"name": "{{ GROUP_ID }}","config": { "connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"tasks.max": "1",
"snapshot.mode": "initial",
"database.hostname": "{{ DB_HOST }}",
"database.port": "{{ DB_PORT }}",
"database.user": "{{ SECRET_USERNAME }}",
"database.password": "{{ SECRET_PASSWORD }}",
"database.dbname": "{{ DB_DBNAME }}",
"schema.include.list": “my_schema”,
"table.exclude.list": "" }}
please help if any one has seen this kind of issue or apologize is this is something already discussed