flush
Definition
Flushes all Regions for the defined table/Region Server or all Regions with the specified name. Flushing means moving information from MemStore to HFiles. By default, this process is performed automatically when the MemStore fills up.
Usage
flush '[<namespace_name>:]<table_name>' | '<region_server_name>,<port_number>,<start_code>' | '<region_name>' | '<encoded_region_name>'
Parameter | Description |
---|---|
namespace_name |
A namespace name |
table_name |
A table name |
region_server_name |
A Region Server name |
port_number |
A port number |
start_code |
A Server start code |
region_name |
A Region name without its encoded part. For example, if the full Region name is |
encoded_region_name |
An encoded part of the Region name. For example, if the full Region name is |
TIP
You can get <server_name> , <port_number> , and <start_code> using the status 'simple' command.
|