willi_langlitz
08/10/2022, 8:31 AMchristoph
08/10/2022, 8:39 AMselect plugin extra
The extra can be specified in many different ways.
I typically use either the --select cli parameter to meltano elt or the environment variable for the tap (e.g.TAP_CSV__SELECT='["customer.*"]' meltano elt tap-csv target-postgres ......)
Documentation: https://docs.meltano.com/guide/configuration#plugin-extraswilli_langlitz
08/11/2022, 7:06 AMdocker run -v {PWD}:/project -w /project meltano/meltano elt tap-csv target-postgres --transform=skip --job_id=plan_data --select=planchristoph
08/11/2022, 7:24 AM--select parameter is usually used liked this:
meltano elt tap-csv target-postgres --select 'plan.*' --state-id=plan_data