list_replicated_tables

Definition

Lists all tables and column families that are replicated from the current HBase cluster.

Usage

list_replicated_tables ['<table_regex>']
Arguments
Parameter Description

table_regex

A regular expression for searching tables

Examples

Without regular expressions

hbase(main):017:0> list_replicated_tables
TABLE:COLUMNFAMILY                                  ReplicationType
 articles:basic                                     GLOBAL
 articles:tags                                      GLOBAL
2 row(s)
Took 0.0130 seconds

With regular expressions

hbase(main):031:0> list_replicated_tables 'art.*'
TABLE:COLUMNFAMILY                                  ReplicationType
 articles:basic                                     GLOBAL
 articles:tags                                      GLOBAL
2 row(s)
Took 0.0102 seconds
Found a mistake? Seleсt text and press Ctrl+Enter to report it