stephen_bailey
07/23/2021, 5:47 PMload_schema
and the loader schema
config for target-snowflake
. I'm using the pipelinewise
variant, and it looks like it adds the following default_target_schema: $MELTANO_EXTRACT__LOAD_SCHEMA
. However, I noticed that if I change the loader's name (e.g. to target-snowflake-prod
, that "auto" connection breaks, and i have to manually add the config line.
It raises a question for me -- where is that "auto" functionality being set? It's documented in Meltano Hub (https://hub.meltano.com/loaders/snowflake--transferwise.html), but I didn't change any executables, only the namespace and name. When Meltano executes, does it check the hub for additional configs?stephen_bailey
07/23/2021, 5:53 PMdouwe_maan
07/23/2021, 6:30 PMnamespace
on target-snowflake-prod
, it won’t pick up the defaults from https://gitlab.com/meltano/meltano/blob/master/src/meltano/core/bundle/discovery.yml#L1802 anymore, including the default value for `default_target_schema`: ``MELTANO_EXTRACT__LOAD_SCHEMA``douwe_maan
07/23/2021, 6:30 PMnamespace
, so that it uses the defaults, or explicitly setting default_target_schema: $MELTANO_EXTRACT__LOAD_SCHEMA
in meltano.yml
stephen_bailey
07/23/2021, 8:02 PMnamespace
drive the environment variable settings (i.e. TARGET_SNOWFLAKE_PROD_USER
)? I was planning to have target-snowflake-prod
and target-snowflake-dev
just to make it easier to work with in orchestration / clearer for the team on what they should / should not usestephen_bailey
07/23/2021, 8:05 PMdiscovery.yml
file is a big ooooooh moment for me. i'll look into this a bittaylor
07/23/2021, 8:30 PMI was planning to haveÂThis gets into a topic we discussed at office hours about building a native understanding of environment into Meltano. @aaronsteers were you still planning on making an issue around that? andÂtarget-snowflake-prod
 just to make it easier to work with in orchestration / clearer for the team on what they should / should not usetarget-snowflake-dev
douwe_maan
07/23/2021, 8:34 PMaaronsteers
07/24/2021, 6:05 PM