Hi, I was earlier using `meltano elt`, but for on...
# troubleshooting
a
Hi, I was earlier using
meltano elt
, but for one of my requirements now, I need to use mappings, so I have to switch to
meltano run
. I also need to do filters via cmd line, like
--select <tbl1> <tbl3>
, but this is only allowed in
elt
and not on
run
. Is there any other way around it?
c
The
--select
option is specifict to the legacy
elt
command. the more modern
run
and
invoke
commands use what is called 'extras'
The "extra" for stream selection is unsurprisingly the "select extra" 😁 https://docs.meltano.com/concepts/plugins/#select-extra
In your case, you can just add the environment variable as part of your
meltano
command invocation.
a
This is very helpful. Thanks @christoph