What versions of hbase? The 'exception' is INFO level -- not WARN or
ERROR -- coming up out of zookeeper. When does it happen? When you
shut down your client? Close up of zk client connection can be a
little awkward. This note from 0.90.0RC2 javadoc says a little on
whats going on:
http://peop
Hi all,
I have exception with HBase Client. Here is my code
HTable client = new HTable(conf, this.table);
Put put = new Put(rowid);
put.add(cf, columnkey, columnval);
hTable.put(put);
client.close();
Data put well. But some time client raise the error.
10/12/30 11:48:33 INFO zookeeper.ClientC