I have a Hortonwork cluster (Linux) and want to use JDBC for loading data into Hive from a remote host. I am trying to get the JDBC connection to work locally on the cluster
Oops found it. I was using the wrong Drivername and the correct one should be:
private static String driverName = "org.apache.hive.jdbc.HiveDriver";
As suspected a silly mistake...