String transportMode = System.getenv("HIVE_SERVER2_TRANSPORT_MODE");
if(transportMode == null) {
transportMode = hiveConf.getVar(HiveConf.ConfVars.HIVE_SERVER2_TRANSPORT_MODE);
}
if(transportMode != null && (transportMode.equalsIgnoreCase("http"))) {
thriftCLIService = new ThriftHttpCLIService(cliService);
}
else {
thriftCLIService = new ThriftBinaryCLIService(cliService);
}