Hi David,
You may try this in hbase shell:
scan '.META.', {FILTER=>"PrefixFilter('table_name')"}
this will scan all regions in .META. table with table_name prefix.
Cheers:)
Samir
On Fri, Apr 25, 2014 at 11:49 AM, David Koch <[email protected]> wrote:
> Hi,
>
> How do I get all rows from .META. pertaining to a specific table? I don't
> want to scan all of .META. and then do a grep on the output since .META. is
> quite large but I don't know how to use HBase filters from hbase shell.
>
> Thanks,
>
> /David
>