gpt4 book ai didi

linux - 如何使用shell脚本加载Hbase表

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:05:12 25 4
gpt4 key购买 nike

我是大数据的学习者,我正在尝试将文件加载到 Hbase 表中。文件内容看起来像-

U100,A300&A301&A302    
U101,A301&A302
U102,A302
U103,A303&A301&A302

此文件存在于本地文件系统中。我想要的是将这些数据加载到 Hbase 表中,就像这样-

enter image description here

我正在尝试下面的脚本,但无法获得准确的输出-

echo "create 'uid-map', 'users'" | hbase shell
file="/home/abc/lookupfiles/uid.txt"
touch /home/abc/lookupfiles/uid1.txt
chmod 775 /home/abc/lookupfiles/uid1.txt
file1="/home/abc/lookupfiles/uid1.txt"
awk '$1=$1' FS="&" OFS=" " $file > $file1
num=1
while IFS= read -r line
do
uid=`echo $line | cut -d',' -f1`
users=`echo $line | cut -d'&' -f2`
for row in $users
do
#artist= 'echo $row | cut -d',' -f$num
echo "put 'uid-map', '$uid', 'users:artist$num', '$row'" | hbase shell
let "num=num+1"
done
num=1
done <"$file"

我得到的输出是-

enter image description here请让我知道我做错了什么。

最佳答案

单个 Awk 程序的优化解决方案:

echo "create 'uid-map', 'users'" | hbase shell
awk -F'[,&]' -v cmd="hbase shell" '{
fmt="put \047uid-map\047, \047%s\047, \047users:artist%d\047, \047%s\047\n";
for (i=2; i<=NF; i++)
printf(fmt, $1, ++c, $i ) | cmd;
c=0
}' "$file"

将传递给 hbase shell 的输出(每次调用一行 ... | cmd):

put 'uid-map', 'U100', 'users:artist1', 'A300'
put 'uid-map', 'U100', 'users:artist2', 'A301'
put 'uid-map', 'U100', 'users:artist3', 'A302'
put 'uid-map', 'U101', 'users:artist1', 'A301'
put 'uid-map', 'U101', 'users:artist2', 'A302'
put 'uid-map', 'U102', 'users:artist1', 'A302'
put 'uid-map', 'U103', 'users:artist1', 'A303'
put 'uid-map', 'U103', 'users:artist2', 'A301'
put 'uid-map', 'U103', 'users:artist3', 'A302'

关于linux - 如何使用shell脚本加载Hbase表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48354697/

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