ptd
05/05/2022, 2:40 PMmeltano install without connecting to the system database. My usecase is that I’m trying to install extractors and loaders at docker build time in an environment that doesn’t have network access to the system database and has no real reason to have the db credentials. I then plan to run migrations separately (it seems like I can do that using meltano upgrade database, but I haven’t tested that yet). Even running meltano install extractors loaders fails if database_uri is not reachable.
Based on this, it seems like my only option is to not set database_uri in the config and use an env variable instead an just have the docker build run migrations against a local sqlite database even though I don’t plan to use that database. Or is there another approach to this?ptd
05/05/2022, 2:41 PMpymysql (or any other sqlalchemy-compatible db adapter) if I want to use mysql for the system database, right?matt_cooley
05/06/2022, 11:38 PMjanis_puris
01/24/2023, 6:35 PMptd
01/24/2023, 7:40 PMdatabase_uri in the config and just use a local sqlite database during install time.