Hi PG Users, We are running into the postgres toasted values showing up in
replication slots. We are using debezium and have gone through the following
1. Various options for handling toasted values during replication at the
application level.2. Postgres option to turn on replica identitiy to full.
While these are solutions to the problem. Wanted to understand if there is any
scope for enhancement / improvements in postgres itself to handle such
scenarios.
For instance : Can the postgres internal component (wal-sender / *) interpret
this special toasted-col-value sitting in the wal-file -> replace it with the
actual value and send it to the replication slot. I presume, today the
wal-sender does not have this support and it just sends whatever data that the
wal log has. So if the wal-sender - can intercept such toasted values and
translate it to actual values before being sent - that would solve the problem
without every consumer having to implement a solution to handle toasted value.
This would also help prevent the unwarranted increase of the wal-log if
replica-identity to full is set as a w/a.
Any thoughts?
Thanks.