visch
09/22/2022, 2:35 PMmeltano invoke tap-name > tap-name.singer
then I take that file and I can develop locally with my other taps/targets locally without needing to have the special access for that one tap.
Now comes the annoying part. cat tap-name.singer | meltano invoke target-postgres
works, but I need to provide a target_schema for target-postgres
So I use this bash script
#/bin/bash
export TARGET_POSTGRES_DEFAULT_TARGET_SCHEMA="TAP_ACTIVEDIRECTORY"
cat tap-ad.singer | meltano invoke target-postgres
But I don't love it. It's almost like I want something like
meltano run (cat tap-ad.singer as tap-ad) target-postgres
visch
09/22/2022, 2:36 PMflorian.hines
09/22/2022, 4:14 PMmeltano invoke --save-replay=mysave.singer tap-name
meltano invoke --replay=mysave.singer target-name
florian.hines
09/22/2022, 4:15 PMvisch
09/22/2022, 8:54 PM