Simon Thelin
10/01/2022, 6:26 AMincremental append
and my cursor is updated_at
. And I get a new row with PK
id
in a postgres source, it would still append the row with the new id?
And if I do incremental append with let’s say id
PK
will I then loose track of updated values? Since the id could be the same
Assuming this is not CDC
.user
10/01/2022, 1:18 PMSaj Dider (Airbyte)
10/03/2022, 6:09 PMSimon Thelin
10/04/2022, 8:36 AMid
as the incremental append value.
That means, that if the row of id
updates a value at lest say column name
.
I would then miss this update, due to the fact id
is the same?
Hence why you would use update
.
So for tables, which does not have any update
or similar, you can’t use incremental appends. To solve that you would go with CDC.
Is this correct @Saj Dider (Airbyte)?Saj Dider (Airbyte)
10/04/2022, 3:10 PM