Hey folks, just getting started with Meltano! Sorr...
# getting-started
p
Hey folks, just getting started with Meltano! Sorry if this is an obvious question, but is there any way to do an "Full refresh append" for snapshot purposes? i.e The tap always does a full load, but we don't want data to be deleted, so we can time travel We are currently using tap-launchdarkly with target-snowflake, but I can't seem to find any configuration to allow that
1
v
"append only" is normally done with no key properties. target-snowflake may have some other options for this. Then the tap just needs to not have state passed into it and you're good to go. Hard to know which holes in understanding you need plugged so I"ll leave it here for now 😄
👍 1
p
That makes sense! Managed to get it to work by setting
key_properties: []
on
metadata
target-snowflake
seems to run a merge command by default if you provide key combination, but runs
copy
if you have no key Anyway, thanks for the help!