johannes_rudolph
03/19/2024, 2:14 PMgcs
for production and local file system for local development. I have so far only found solutions involving MELTANO_ENVIRONMENT
variable, but can't seem to figure out how that lets me change anything but the path/bucket name in the same backend.
I've tried putting state_backend
under an environment like so, but that seems to ignore the setting
environments:
- name: prod
config:
state_backend: ...
Andy Carter
03/19/2024, 3:40 PMmeltano.yml
regarding state
MELTANO_STATE_BACKEND_AZURE_CONNECTION_STRING
and MELTANO_STATE_BACKEND_URI
are the two variables I set when running 'non-locally'. That gives me a sqlite backend locally (default behaviour) and Azure Storage blob backend on the cloud.
Docs on env variables: https://docs.meltano.com/reference/settings/#state-backendsAndy Carter
03/19/2024, 3:43 PMjohannes_rudolph
03/20/2024, 10:00 AMAndy Carter
03/20/2024, 2:07 PM