我是靠谱客的博主 善良盼望,最近开发中收集的这篇文章主要介绍2021-06-16,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一 关于hbase命令
1.启动Hadoop启动hbase的命令
cd /usr/local/hadoop
./sbin/start-dfs.sh
cd /usr/local/hbase
./bin/start-hbase.sh
./bin/hbase shell
2.在hbase中创建表
hbase> create ‘student’,‘Sname’,‘Ssex’,‘Sage’,‘Sdept’,‘course’
查看表基本信息:
hbase>describe ‘student’
3.添加数据
hbase> put ‘student’,‘95001’,‘Sname’,‘LiYing’
hbase> put ‘student’,‘95001’,‘Ssex’,‘male’
hbase> put ‘student’,‘95001’,‘Sage’,‘22’
hbase> put ‘student’,‘95001’,‘Sdept’,‘CS’
hbase> put ‘student’,‘95001’,‘course:math’,‘80’
4.查看数据
• get命令:用于查看表的某一个单元格数据;
hbase> get ‘student’,‘95001’
• scan命令:用于查看某个表的全部数据。
hbase> scan ‘student’
5.删除数据
使用delete命令删除student表中95001这行中的Ssex列的所有数据:
hbase > delete ‘student’,‘95001’,‘Ssex’
使用deleteall命令删除student表中的95001行的全部数据
hbase> deleteall ‘student’,‘95001’
6.删除表
hbase> disable ‘student’ 首先让表不可用
hbase> drop ‘student’ 其次删除表
二 hdfs相关命令
打开一个终端,首先启动Hadoop,命令如下:
cd /usr/local/hadoop
./sbin/start-dfs.sh
创建mkdir文件目录:
./bin/hdfs dfs -mkdir -p /user/stu
./bin/hdfs dfs -mkdir mkdir
查看是否创建成功stu:
./bin/hdfs dfs -ls .
创建测试文件:
vim /home/stu/test.txt
上传文件:
./bin/hdfs dfs -put /home/stu/test.txt /mkdir
查看文件内容:
./bin/hdfs dfs -cat /mkdir/test.txt

最后

以上就是善良盼望为你收集整理的2021-06-16的全部内容,希望文章能够帮你解决2021-06-16所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部