Pablo Castelletto
08/31/2022, 4:33 PMSELECT pg_create_logical_replication_slot('airbyte_slot', 'pgoutput');
ALTER TABLE test.test REPLICA IDENTITY DEFAULT;
CREATE PUBLICATION airbyte_publication FOR TABLE test.test;
Sadly, it starting taking all of my diskspace on my source db, so i deleted the slot
It seems that the slot was producing events for every table in my db instead of just for the test table indicated in the publication and no one were consuming them 😞.
What can i do to fix this issue? i couldn't find a solution
Thanks!!