The number of times sending an RPC was blocked due to the socket send buffer being full. This means HBase was not consuming RPCs fast enough. @return The number of writes blocked due to a full buffer.
()
| 167 | * @return The number of writes blocked due to a full buffer. |
| 168 | */ |
| 169 | public long writesBlocked() { |
| 170 | return writes_blocked; |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Represents the number of responses that were received from HBase for RPCs |
no outgoing calls