Is there a `drop and reload` config in meltano? I ...
# best-practices
s
Is there a
drop and reload
config in meltano? I have a source where the records are hard-deleted in a stream. I want to drop the table in destination and reload it during meltano run One approach I have in mind is to run a
drop table
command on the destination first and then use
incremental-method: FULL_TABLE
for that stream.
v
currently this is the way. I do it like this right now
meltano run dbt:drop_table tap-name target-name
and be sure to turned cached schemas off