Searches the meta table for all of the regions associated with the given table. This method does not use the cache, rather it will scan HBase every time you use it. The fetch does not populate the local region cache with the discovered regions. To do so, use prefetchMeta. @param table The ta
(final String table)
| 2629 | * @since 1.7 |
| 2630 | */ |
| 2631 | public Deferred<List<RegionLocation>> locateRegions(final String table) { |
| 2632 | return locateRegions(table.getBytes()); |
| 2633 | } |
| 2634 | |
| 2635 | /** |
| 2636 | * Searches the meta table for all of the regions associated with the given |
nothing calls this directly
no test coverage detected