steven_brandt
01/18/2022, 3:51 PMaaron_phethean
01/18/2022, 4:17 PMsteven_brandt
01/18/2022, 4:35 PMaaron_phethean
01/18/2022, 4:54 PMsteven_brandt
01/18/2022, 4:57 PMaaron_phethean
01/18/2022, 5:28 PMvisch
01/18/2022, 5:34 PM#!/bin/bash
export TAP_ABC_PASSWORD=abc
export TAP_ABC_CLIETN_ID=id_for_client1
export CLIENT_NAME=client_name
meltano elt tap-abc target-abc --job_id=tap-abc2target-abc-$CLIENT_NAME
Cool you now have a runner that works for any client assuming you pass in the right data
Next
1. Have dagster go get your list of clients from whatever dataset you want (Google Sheet / Airtable)
2. Run that script, but inject your variables as needed
Simple and quick, and allows you to iterate to your solution 😄steven_brandt
01/18/2022, 5:52 PMaaron_phethean
01/18/2022, 6:03 PM