gpt4 book ai didi

nosql - HBase Shell 命令问题

转载 作者:行者123 更新时间:2023-12-05 00:28:33 26 4
gpt4 key购买 nike

我有一些关于 HBase Shell 命令工具的问题:

1: How to list all column family names (just names!) in a table?
2: How to count the number of rows in a column family?

最佳答案

1:如何在表中列出所有列族名称(只是名称!)?

不可能的 OOTB。但是你可以做这样的事情:

echo "scan 'table'" | bin/hbase shell | awk -F'=' '{print $2}' | awk -F ':' '{print $1}'

2:如何统计一个列族的行数?

你这是什么意思?你是不是想问如何统计一行中的列族数?如果这是你需要的,试试这个:
echo "scan 'table'" | bin/hbase shell | grep cf | wc -l

关于nosql - HBase Shell 命令问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18833469/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com