Locates the region in which the given row key for the given table is. This does a lookup in the .META. / -ROOT- table(s), no cache is used. If you want to use a cache, call #getRegion instead. @param request The RPC that's hunting for a region. @param table The table to which the row bel
(final HBaseRpc request,
final byte[] table, final byte[] key)
| 2703 | * carries an unspecified result. |
| 2704 | */ |
| 2705 | private Deferred<Object> locateRegion(final HBaseRpc request, |
| 2706 | final byte[] table, final byte[] key) { |
| 2707 | return locateRegion(request, table, key, false, false); |
| 2708 | } |
| 2709 | |
| 2710 | /** |
| 2711 | * Locates the region in which the given row key for the given table is. |
no test coverage detected