Is it possible to have meltano run with a full ref...
# troubleshooting
s
Is it possible to have meltano run with a full refresh on just one stream? What would the
meltano run
command look like for that?
a
I think you'd need to use elt instead of run since elt supports
--select
if you want it to update state after the full refresh and you're usually running as a job, you can look up the state id to use with
--state-id
with
meltano state list
so all together
meltano elt --state-id STATE_ID --select STREAM_NAME --full-refresh TAP TARGET
s
got it thanks!