已经在linux云服务器上搭建了hadoop和hive,现在通过hive往hdfs写入数据,并通过9870端口查看数据

  1. 确认hadoop中相关进程已经开启,再开启hive,当前进程可通过jps命令查看
[root@cloudmyc tmp]# jps
4689 Jps
2561 NodeManager
2167 SecondaryNameNode
1930 DataNode
2428 ResourceManager
1791 NameNode
  1. 进入hive命令行后,新建表create table test(id string);
    再向其中插入数据,insert into test values '1001';
  2. 此时可以在9870端口查看写入hdfs的test表数据在这里插入图片描述
    在图中路径下,可以看到其中的文件,打开后便是插入进去的’1001‘数据在这里插入图片描述
Logo

更多推荐