DMS configuration for cdc with PostgreSQL as source

0

I need a configuration for DMS to always replicate the entire row when a change occurs and not just the data that has changed, which config can I use? the source database is postgresql and the task is already cdc

preguntada hace 5 meses338 visualizaciones
1 Respuesta
2

Hi,

My understanding is that only changes can be propagated by DMS. Mostly because it uses the rdbms logs to capture those changes and those logs do not contain full rows but only delta.

Nonetheless, you can achieve what you want by using a sql trigger: https://www.postgresql.org/docs/current/sql-createtrigger.html

The idea is the following; the trigger with fire on any change on the row brought by a DMS change. Then this trigger selects in full (i.e. all columns as neeed) the row as change is applied. This trigger then "pushes" the full row whenever you need: write it in another table, steams it outside of pg, etc.

Hope it helps!

Didier

profile pictureAWS
EXPERTO
respondido hace 5 meses
profile picture
EXPERTO
revisado hace 5 meses
  • but apparently when using MySQL as source there is a configuration for this in the DMS it would be (ndb_log_updated_only = OFF), is there really nothing to be done in the DMS itself?

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas