我有一个脚本a来创建一个hive表,脚本已成功完成但我无法看到该表,请帮助。
下面的是创建表的脚本
#!/bin/bash
hive <<! > hive_out.log
create table GoodRecords(
id int,
name string,
state string,
phone_no int,
gender string) row format delimited fields terminated by ',' stored as
textfile;
exit;
!
生成的日志: `蜂房&GT;创建表GoodRecords(
id int, 名字串, 状态字符串, phone_no int, 性别字符串)行格式分隔的字段以','结尾 存储为文本文件; 蜂房&GT;出口;`
GUI Hadoop显示该表已创建:
/user/hive/warehouse/goodrecords
命令行输出到showtables。
hive> show tables;
OK
Time taken: 0.34 seconds
答案 0 :(得分:0)
设置Hive Metastore服务存在一些问题。
尝试重新启动您的Metastore服务。它应该工作。