xinge_li
09/24/2021, 9:08 PMtap-postgres
to extract some data, I would like to pick only some columns from the table not all the columns. After I set meltano select tap-postgres "schema-table" "id"
I can see from meltano select tap-postgres --list
that it only contains the id in selected attributes. however, when I run meltano elt
I still get all the columns from the original table, anyone knows a solution for it? Thank you!visch
09/25/2021, 12:26 AMmeltano elt tap-postgres target-whatever --dump=catalog > catalog.json
Then look at the catalog.json, find your stream, are the fields you expect selected and the fields you're not expecting not seleted?xinge_li
09/25/2021, 9:03 AMtaylor
09/27/2021, 3:24 PMluis_atala
09/27/2021, 3:54 PMrefresh_streams_schema()
on __init__.py
seems the culprit on the tapprateek_gupta
10/14/2021, 7:36 AM