5432
)PostgreSQL 16
dbz_publication
publication on the primary databasehot_standby_feedback
on the standby serverWAL_LEVEL
is set to logical
on the standby serverHeartbeats
Enable heartbeats
under Advanced settings, you will then need to run the following command:Customize publications mode
Filtered
under the Pipeline advanced settings.Changing the behavior of Postgres publications
TOAST columns
text
, jsonb
, bytea
, array
, etc.One thing that is special about TOAST columns is that if the column value has not changed, the column value will not be included in WAL if the table’s replica identity is set to default
. Artie has automatic detection built-in to detect an unchanged TOAST column and will conditionally replicate this into the target database.Our built-in process will detect if an incoming CDC event has an unchanged TOAST column and will not update the column value in the target database. We are able to do all of this without having to increase your table replica identity.Monitoring
idle_in_transaction_session_timeout
.