hbase list
命令用于列出 HBase 中的所有表,而不是版本
hbase org.apache.hadoop.hbase.client.ConnectionFactory --list-tables
这将返回一个包含所有表名的列表。如果你需要查看表的版本信息,可以使用 hbase org.apache.hadoop.hbase.client.ConnectionFactory table
命令,后跟表名。例如:
hbase org.apache.hadoop.hbase.client.ConnectionFactory table --name my_table
这将显示有关 my_table
的详细信息,包括其版本信息。