I am trying to connect to Phoenix using sqlline and a cdh4 (4.5) cluster running HBase 0.94.6. I built off of the current main branch to deploy. I checked each RegionServer log and it seems the phoenix jar is being loaded. When I run sqlline client i get the following stack trace.
The Phoenix jars were built and run on the same machine that I can connect using the hbase shell, create tables, etc... Am I missing something? Thanks, Abe org.apache.phoenix.exception.PhoenixIOException: Retried 14 times at org.apache.phoenix.util.ServerUtil.parseServerException(ServerUtil.java:99) at org.apache.phoenix.query.ConnectionQueryServicesImpl.ensureTableCreated(ConnectionQueryServicesImpl.java:665) at org.apache.phoenix.query.ConnectionQueryServicesImpl.createTable(ConnectionQueryServicesImpl.java:806) at org.apache.phoenix.schema.MetaDataClient.createTableInternal(MetaDataClient.java:995) at org.apache.phoenix.schema.MetaDataClient.createTable(MetaDataClient.java:387) at org.apache.phoenix.compile.CreateTableCompiler$2.execute(CreateTableCompiler.java:168) at org.apache.phoenix.jdbc.PhoenixStatement$ExecutableCreateTableStatement.executeUpdate(PhoenixStatement.java:350) at org.apache.phoenix.jdbc.PhoenixStatement.executeUpdate(PhoenixStatement.java:1047) at org.apache.phoenix.query.ConnectionQueryServicesImpl.init(ConnectionQueryServicesImpl.java:1001) at org.apache.phoenix.jdbc.PhoenixDriver.getConnectionQueryServices(PhoenixDriver.java:79) at org.apache.phoenix.jdbc.PhoenixEmbeddedDriver.connect(PhoenixEmbeddedDriver.java:107) at sqlline.SqlLine$DatabaseConnection.connect(SqlLine.java:4650) at sqlline.SqlLine$DatabaseConnection.getConnection(SqlLine.java:4701) at sqlline.SqlLine$Commands.connect(SqlLine.java:3942) at sqlline.SqlLine$Commands.connect(SqlLine.java:3851) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at sqlline.SqlLine$ReflectiveCommandHandler.execute(SqlLine.java:2810) at sqlline.SqlLine.dispatch(SqlLine.java:817) at sqlline.SqlLine.initArgs(SqlLine.java:633) at sqlline.SqlLine.begin(SqlLine.java:680) at sqlline.SqlLine.mainWithInputRedirection(SqlLine.java:441) at sqlline.SqlLine.main(SqlLine.java:424) Caused by: org.apache.hadoop.hbase.MasterNotRunningException: Retried 14 times at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:139) at org.apache.phoenix.query.ConnectionQueryServicesImpl.ensureTableCreated(ConnectionQueryServicesImpl.java:591) ... 23 more
