Entry: Postgresql, Output: typesense | CDC not working #35398
Unanswered
florian-deroo
asked this question in
Connector Questions
Replies: 2 comments 1 reply
-
This is still an issue for me. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone! I'm having some trouble when i'm trying to use CDC with the postgres connector. When i add new values to my table, the value is not sent to my output which is typesense. However, it's working when i'm doing a manual sync, so i guess i have misconfigured the CDC, here is my current config in postgresql.conf (i've restarted my postgres server)
wal_level = 'logical'
max_wal_senders = 1
max_replication_slots = 1
When i verify my config with the postgres requests:
SHOW max_wal_senders;
SHOW wal_level;
SHOW max_replication_slots ;
Publication table:
SELECT * FROM pg_publication_tables;
Replication slots
SELECT * FROM pg_replication_slots;
On the previous screen we can see that active is false but i have no idea why?
Here is my CDC Config on postgresql:
Do you have an idea why it's not working?
Beta Was this translation helpful? Give feedback.
All reactions