I'm currently using org.apache.hadoop.hbase.client.ConnectionFactory to
connect to HBase:
import rg.apache.hadoop.hbase.client.*;
....
Connection connection = ConnectionFactory.createConnection(conf);
Table table = connection.getTable(TableName.valueOf("mytable"));
If there is a HTTPS proxy in between the client and HBase server, is it
possible to configure proxy host, port, basic authentication under
Configuration object?
I want to avoid applying proxy settings globally using -Dhttps.proxyHost
and affect all HTTP connections.