FAILED: ParseException line 1:0 character '#' not supported here

楔子

hive 使用.hiverc配置出现错误 FAILED: ParseException line 1:0 character '#' not supported here

.hiverc

hive执行是配置参数文件 ,经过测试 ,注释  用`--` 来代替 `# `。每个配置之后加上 `;`
--在命令行中显示当前数据库名
set hive.cli.print.current.db=true; 
--查询出来的结果显示列的名称
set hive.cli.print.header=true;
--启用桶表
set hive.enforce.bucketing=true;
--压缩hive的中间结果
set hive.exec.compress.intermediate=true;
--对map端输出的内容使用BZip2编码/解码器
set mapred.map.output.compression.codec=org.apache.hadoop.io.compress.BZip2Codec;
--压缩hive的输出
set hive.exec.compress.output=true;
-- 对hive中的MR输出内容使用BZip2编码/解码器
set mapred.output.compression.codec=org.apache.hadoop.io.compress.BZip2Codec;
-- 让hive尽量尝试local模式查询而不是mapred方式
set hive.exec.mode.local.auto=true;
 

文件存放路径

1 用户目录下

2 /etc/hive/conf

放在此目录,所有用户都生效

你可能感兴趣的:(大数据系列,hive)