Jazmin Velazquez
09/09/2025, 7:45 PMtap-google-sheets
to extract data from multiple google sheets (with different sheet IDs). How do I configure meltano for this?Jazmin Velazquez
09/09/2025, 8:26 PMReuben (Matatika)
09/09/2025, 8:32 PMsheets
setting:
• https://hub.meltano.com/extractors/tap-google-sheets/#sheets-setting
• https://github.com/Matatika/tap-google-sheets/blob/master/README.md#per-sheet-configJazmin Velazquez
09/10/2025, 1:39 PMmeltano config tap-google-sheets set sheets
that will run all the sheets when running the command meltano run tap-google-sheets target-jsonl
?
What if I wanted to run the sheets at different times? Can a sheetid be passed to the run command?Reuben (Matatika)
09/10/2025, 1:58 PMmeltano run tap-google-sheets target-jsonl
?
>
Correct. So if your use-case is specifying the sheet ID at runtime then the approach you linked works.
> Can a sheetid be passed to the run command?
>
You can do
TAP_GOOGLE_SHEETS_SHEET_ID=123 meltano run tap-google-sheets target-jsonl
if you don't want multiple inheriting plugin definitions just for the sake of overriding sheet_id
.