Number of batched RPCs sent to the network. While #puts and #deletes indicate the number of RPCs created at the application level, they don't reflect the actual number of RPCs sent to the network because of batching (see HBaseClient#setFlushInterval). Note that {@link
()
| 236 | * above. |
| 237 | */ |
| 238 | public long numBatchedRpcSent() { |
| 239 | return num_multi_rpcs; |
| 240 | } |
| 241 | |
| 242 | /** Number of calls to {@link HBaseClient#get}. */ |
| 243 | public long gets() { |