silverbullet1
07/15/2023, 12:28 PMmeltano run command ? I have a use case where I have multiple configurations and I want to specify the path for every file sequentiallysilverbullet1
07/15/2023, 6:35 PMedgar_ramirez_mondragon
07/16/2023, 4:56 PMI want to specify the path for every file sequentially
Can you expand on this a bit more? Do you mean you want to use multiple yaml files with a single run, or use a different file in each run?
silverbullet1
07/16/2023, 5:35 PMWill Da Silva (Arch)
07/17/2023, 12:26 PMmeltano.yml file) using inherits_from to have different plugin configurations for the same plugins, and possibly multiple environments to switch between plugin configs and environment variables using the --environment CLI option for meltano run.
• Multiple separate Meltano projects (i.e. multiple meltano.yml files, possibly still located within the same repository).silverbullet1
07/17/2023, 12:36 PMmeltano.yml files in the same repo. I want to invoke meltano run my-tap my-target and optionally specify the path of my meltano.yml file(it might be in some other folder) with -c /some/other/foldermeltano.ymluser
07/17/2023, 12:44 PMmeltano.yml files are required? Why is plugin inheritance and multiple environments not sufficient for running your distinct pipelines using a single meltano.yml file?
In any case, if the meltano.yml files are in different directories, you can use the top-level --cwd CLI option to specify the directory Meltano should run in, and by extension, which meltano.yml file it should use.silverbullet1
07/17/2023, 12:47 PM--cwd might work, let me checkuser
07/17/2023, 12:50 PMinherits_from and environments to address this use-case. That is exactly what they were designed to support. Using multiple different Meltano projects will be cumbersome by comparison.silverbullet1
07/17/2023, 3:54 PM