It seems that HTable atomic operations (e.g., checkAndPut and
checkAndDelete) are not supported by the current REST implementation. The
RemoteHTable class throws an IOException when these methods are called. Is
there any reason why these operations are unsupported in REST? Are any plans
to support them in the future releases?
590 public boolean checkAndDelete(byte[] row, byte[] family, byte[]
qualifier,
591 byte[] value, Delete delete) throws IOException {
592 throw new IOException("checkAndDelete not supported");
593 }
- Henri