mykola_zavada
06/04/2023, 3:33 AMINCREMENTAL
select in tap-postgres meltanolabs
. Am I right that it takes all the records that >=
than the last value from the state? If that's correct may I ask if that was made on purpose? I would assume to see just >
there. Thank you!Henning Holgersen
06/04/2023, 6:11 AMmykola_zavada
06/04/2023, 11:08 AMHenning Holgersen
06/04/2023, 11:09 AMpat_nadolny
06/05/2023, 2:08 PM>
. For example if your replication key is a date then a sync in the morning would replicate data and store the latest date 2023-05-06
in the state file, if later in the day you get additional records with that same date 2023-05-06
then tomorrow when you run > 2023-05-06
you'll miss those new records post sync on 2023-05-06
.pat_nadolny
06/05/2023, 2:09 PMmykola_zavada
06/05/2023, 2:37 PM>=
with >
as I have a timestamp column as the replication key. I'm ok with taking that risk of possible loosing some data.user
06/05/2023, 2:45 PM