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.ClientCnxn: Exception while closing send thread for session 0x12d350a0e84001b : Read error rc = -1 java.nio.DirectByteBuffer[pos=0 lim=4 cap=4] How to fix that? Thank a lot for support.
