I am trying to connect to a client's data platform with Cloudera Impala JDBC Driver. Our application is a spring boot application where we are initializing com.cloudera.impala.jdbc.DataSource and setting it to org.springframework.jdbc.core.JdbcTemplate. Application needs to use https proxy to connect to the database.
I am able to establish the connectivity as a test with below curl:
curl -vk --proxy dev-https-proxy.com:1234 gmv-testing.cli-app.com:21050
I would like to know if there is property available to set the HTTPS PROXY in the datasource.
Below is the connection string used
jdbc:impala://gmv-testing.cli-app.com:21050/test_db;AuthMech=3;SSL=1;TransportMode=sasl;UID=test_user;PWD=testPwd
Could you please help me to set https proxy to establish the db connection to cloudera impala db?