Is there any issue if I start a table replication ...
# getting-started
c
Is there any issue if I start a table replication as
FULL_TABLE
and later changed to
INCREMENTAL
? My pipelines run on incremental, but for whatever reason a table is missing some rows in a specific timestamp... I want to force a full copy and then go back to incremental
v
No issue but most the time you'd just reset the state instead by running --full-refresh with your run
c
thank you!