remove_peer_tableCFs

Definition

Removes tables/column families from the replication relationship (peer) configuration.

Usage

remove_peer_tableCFs '<peer_id>',
                     {'[<namespace_name>:]<table_name>' => <column_families_array[]>[,...]}
Arguments
Parameter Description

peer_id

A unique identifier of the replication peer. Should not contain hyphens

namespace_name

A namespace name

table_name

A table name

column_families_array

An array of strings specified in the format '<column_family>', where <column_family> — a column family name

Examples

hbase(main):014:0> show_peer_tableCFs '1'
default.articles
Took 0.0066 seconds
=> "default.articles"
hbase(main):014:0> remove_peer_tableCFs '1', {'articles' => []}
Took 0.0306 seconds
hbase(main):017:0> show_peer_tableCFs '1'

Took 0.0037 seconds
Found a mistake? Seleсt text and press Ctrl+Enter to report it