Hello!, this is my first post here! Im currentIy t...
# advice-data-ingestion
p
Hello!, this is my first post here! Im currentIy testing the tool, it's really nice, Great Job guys! 😄! I have a problem i cannot fix, maybe you could help me :3 I would like to use Postgresql Source using Logical Replication! Following the instructions i manage to replicate a test table successfully executing the following commands on my postgres db:
Copy code
SELECT 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!!