MCPcopy Index your code
hub / github.com/OpenTSDB/asynchbase / createRegionSearchKey

Method createRegionSearchKey

src/HBaseClient.java:3058–3061  ·  view source on GitHub ↗

Creates the META key to search for in order to locate the given key. @param table The table the row belongs to. @param key The key to search for in META. @return A row key to search for in the META table, that will help us locate the region serving the given (table, key).

(final byte[] table,
                                      final byte[] key)

Source from the content-addressed store, hash-verified

3056 * locate the region serving the given {@code (table, key)}.
3057 */
3058 static byte[] createRegionSearchKey(final byte[] table,
3059 final byte[] key) {
3060 return createRegionSearchKey(table, key, false);
3061 }
3062
3063 /**
3064 * Creates the META key to search for in order to locate the given key.

Calls

no outgoing calls