Do anyone know how to resolve Jetty ALPN not properly configured error, when I attempting to connect to Google Cloud BigTable?
Blockquote 2015-12-11 19:53:15,056 INFO [main] grpc.BigtableSession: Opening connection for projectId crawl-corpus-app, zoneId us-central1-c, clusterId crawl-corpus, on data host bigtable.googleapis.com, table admin host bigtabletableadmin.googleapis.com. java.io.IOException: java.lang.reflect.InvocationTargetException at org.apache.hadoop.hbase.client.ConnectionFactory.createConnection(ConnectionFactory.java:240)................................................................................................................................................ Caused by: java.lang.IllegalStateException: Jetty ALPN has not been properly configured. at com.google.cloud.bigtable.grpc.BigtableSession.(BigtableSession.java:243) at com.google.cloud.bigtable.grpc.BigtableSession.(BigtableSession.java:232) at org.apache.hadoop.hbase.client.AbstractBigtableConnection.(AbstractBigtableConnection.java:128) at com.google.cloud.bigtable.hbase1_1.BigtableConnection.(BigtableConnection.java:42)
public static void main(String[] args) {
Connection connection;
try {
connection = ConnectionFactory.createConnection();
} catch (IOException e) {
e.printStackTrace();
}