Stores data in HBase. Note that this provides no guarantee as to the order in which subsequent put requests are going to be applied to the backend. If you need ordering, you must enforce it manually yourself by starting the next put once the Deferred of this one complete
(final PutRequest request)
| 2018 | * TODO(tsuna): Document failures clients are expected to handle themselves. |
| 2019 | */ |
| 2020 | public Deferred<Object> put(final PutRequest request) { |
| 2021 | num_puts.increment(); |
| 2022 | return sendRpcToRegion(request); |
| 2023 | } |
| 2024 | |
| 2025 | /** |
| 2026 | * Appends data to (or creates) one or more columns in HBase. |