Hi!
I was able to reproduce the same behaviour using this example:
https://jet-start.sh/docs/tutorials/cdc-postgresBut instead of doing "4. Start Hazelcast Jet", I start JetJob.main() through IDE. In app console I see events coming in but replication slot is parked
postgres@localhost:postgres> select * from pg_replication_slots;
+-------------+-------------+-------------+----------+------------+-------------+----------+--------------+--------+----------------+---------------+-----------------------+
| slot_name | plugin | slot_type | datoid | database | temporary | active | active_pid | xmin | catalog_xmin | restart_lsn | confirmed_flush_lsn |
|-------------+-------------+-------------+----------+------------+-------------+----------+--------------+--------+----------------+---------------+-----------------------|
| debezium | decoderbufs | logical | 13067 | postgres | False | True | 90 | <null> | 601 | 0/207DFE8 | 0/207E038 |
+-------------+-------------+-------------+----------+------------+-------------+----------+--------------+--------+----------------+---------------+-----------------------+
SELECT 1
Time: 0.008s
postgres@localhost:postgres> insert into inventory.customers(id, first_name, last_name, email) values (1006, 'Ivan', 'Belfinger', 'ivan.l...@gmail.com') INSERT 0 1
Time: 0.008s
postgres@localhost:postgres> insert into inventory.customers(id, first_name, last_name, email) values (10061, 'Ivan', 'Belfinger', 'ivan....@gmail.com') INSERT 0 1
Time: 0.006s
postgres@localhost:postgres> insert into inventory.customers(id, first_name, last_name, email) values (101061, 'Ivan', 'Belfinger', 'ivan.l...@gmail.com') INSERT 0 1
Time: 0.006s
postgres@localhost:postgres> select * from pg_replication_slots;
+-------------+-------------+-------------+----------+------------+-------------+----------+--------------+--------+----------------+---------------+-----------------------+
| slot_name | plugin | slot_type | datoid | database | temporary | active | active_pid | xmin | catalog_xmin | restart_lsn | confirmed_flush_lsn |
|-------------+-------------+-------------+----------+------------+-------------+----------+--------------+--------+----------------+---------------+-----------------------|
| debezium | decoderbufs | logical | 13067 | postgres | False | True | 90 | <null> | 601 | 0/207DFE8 | 0/207E038 |
+-------------+-------------+-------------+----------+------------+-------------+----------+--------------+--------+----------------+---------------+-----------------------+