This is an automated email from the ASF dual-hosted git repository.
junegunn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 51d94c26144 HBASE-29916 Correct alter_async help text examples (#7784)
51d94c26144 is described below
commit 51d94c261449c37be6cdf6014229ac94fce28e74
Author: JinHyuk Kim <[email protected]>
AuthorDate: Tue Feb 24 12:07:59 2026 +0900
HBASE-29916 Correct alter_async help text examples (#7784)
Signed-off-by: Junegunn Choi <[email protected]>
Reviewed-by: Vaibhav Joshi <[email protected]>
Reviewed-by: Liu Xiao <[email protected]>
---
hbase-shell/src/main/ruby/shell/commands/alter_async.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hbase-shell/src/main/ruby/shell/commands/alter_async.rb
b/hbase-shell/src/main/ruby/shell/commands/alter_async.rb
index 824de1082b5..8f07eb9826c 100644
--- a/hbase-shell/src/main/ruby/shell/commands/alter_async.rb
+++ b/hbase-shell/src/main/ruby/shell/commands/alter_async.rb
@@ -45,11 +45,11 @@ MEMSTORE_FLUSHSIZE, and READONLY.
For example, to change the max size of a family to 128MB, do:
- hbase> alter 't1', METHOD => 'table_att', MAX_FILESIZE => '134217728'
+ hbase> alter_async 't1', METHOD => 'table_att', MAX_FILESIZE => '134217728'
There could be more than one alteration in one command:
- hbase> alter 't1', {NAME => 'f1'}, {NAME => 'f2', METHOD => 'delete'}
+ hbase> alter_async 't1', {NAME => 'f1'}, {NAME => 'f2', METHOD => 'delete'}
To check if all the regions have been updated, use alter_status <table_name>
EOF