we have a database that’s exposed via HTTPS, I bel...
# ingestion
p
we have a database that’s exposed via HTTPS, I believe that DataHub uses SQLAlchemy under the hood, is there a way we can add these parameters to our ingestion script?
Copy code
ssl_args = {'ssl_ca': ca_path}
engine = create_engine("mysql+mysqlconnector://<user>:<pass>@<addr>/<schema>",
                        connect_args=ssl_args)
r
Hi @proud-table-38689, you could use the
options
config param (see this) to pass these additional args as key value pairs (this is how the engine gets created).