Appends data to (or creates) one or more columns in HBase. Note that this provides no guarantee as to the order in which subsequent append requests are going to be applied to the column(s). If you need ordering, you must enforce it manually yourself by starting the next append o
(final AppendRequest request)
| 2037 | * at least an errback to this {@code Deferred} to handle failures. |
| 2038 | */ |
| 2039 | public Deferred<Object> append(final AppendRequest request) { |
| 2040 | num_appends.increment(); |
| 2041 | return sendRpcToRegion(request).addCallback(APPEND_CB); |
| 2042 | } |
| 2043 | |
| 2044 | /** Callback to type-check responses of {@link AppendRequest}. */ |
| 2045 | // TODO - this should really return a KeyValue or whatever HTable returns. For |