Hi all, I'm trying to ingest data from a Trino dat...
# troubleshoot
b
Hi all, I'm trying to ingest data from a Trino database but need a way to pass SOCKS proxy host/port information to connect due to my company's security policies. In DataGrip, I would do this by editing the database connection and adding the following parameters
DsocksProxyHost=127.0.0.1 -DsocksProxyPort=8080
 in 
VM Options
 under the
Advanced Settings
Is there any way to mimic this in a data ingestion recipe yml file?
d
It seems like if you set your proxy url to
SOCKS_PROXY
environment variable then the trino sqlalchemy driver will pick it up. https://github.com/trinodb/trino-python-client/blob/8342c69f0ee688be0163cbd0976c83ac7c05722b/trino/client.py#L53
plus1 1
thank you 1