hi, is there a way to just select on stream per jo...
# troubleshooting
m
hi, is there a way to just select on stream per job? for example, a meltano.yml
Copy code
jobs:
- name: hello
  tasks: tap-postgres
  config:
    tap-postgres:
      select: 'public-orders.*'
?
r
You can specify
config
per environment, so you would be able to do something like
Copy code
meltano --environment job1 run tap-postgres ...
meltano --environment job2 run tap-postgres ...
meltano --environment job3 run tap-postgres ...
m
thanks. my understanding of
environment
is prod, staging, etc. so with that creds with those resources. seems the only way to do what i want is possibly re-write the .env variables under
TAP_POSTGRES_SELECT
; ideally i want one yaml with the all the jobs and i could just run
Copy code
meltano ... run hello
meltano ... run world
rather than creating a separate yaml for each job; unless i'm missing something?
r
No, I don't believe there is a way to specify configuration per-job at the moment, so setting
TAP_POSTGRES_SELECT
might be your best bet.
🙂 1