You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have multiple data sources in S3 that have the same format and the same (>20) tables but delivered from separate S3 buckets. I am running from Meltano.
There are several possible solutions:
create a separate meltano environment for each dataset (separate s3 buckets)
Cumbersome, bulky and very inflexible. Error prone.
create a different JSON config file for each dataset and load into TAP_SPREADSHEETS_ANYWHERE_TABLES
I have attempted to load the JSON tables array into TAP_SPREADSHEETS_ANYWHERE_TABLES but it only works when the string is stored in .env and does not work with an exported variable.
I also tried setting TAP_SPREADSHEETS_ANYWHERE_TABLES to the filename of the tables config but it only expects a JSON string.
Are there any other solutions to dealing with multiple environments, with this tap, that I could explore?
I have multiple data sources in S3 that have the same format and the same (>20) tables but delivered from separate S3 buckets. I am running from Meltano.
There are several possible solutions:
create a separate meltano environment for each dataset (separate s3 buckets)
Cumbersome, bulky and very inflexible. Error prone.
parameterise the
s3_bucketands3_prefixsettings inside meltano.yml (for each table) using environment variablesI have tried this and it just doesn't work. May be related to this which will (I hope) fix the issue feat: Expand environment variables in array setting values meltano/meltano#8268
create a different JSON config file for each dataset and load into TAP_SPREADSHEETS_ANYWHERE_TABLES
I have attempted to load the JSON tables array into
TAP_SPREADSHEETS_ANYWHERE_TABLESbut it only works when the string is stored in.envand does not work with an exported variable.I also tried setting
TAP_SPREADSHEETS_ANYWHERE_TABLESto the filename of the tables config but it only expects a JSON string.Are there any other solutions to dealing with multiple environments, with this tap, that I could explore?