hive 0.10.0 杂记

来源:互联网 发布:视频录播软件 编辑:程序博客网 时间:2024/05/20 13:40
 1. conf/hive-site.xml支持 Allow SELECT <col> without a mapreduce job
<property>
  <name>hive.fetch.task.conversion</name>
  <value>more</value>
  <description>
    Some select queries can be converted to single FETCH task minimizing latency.
    Currently the query should be single sourced not having any subquery and should not have
    any aggregations or distincts (which incurrs RS), lateral views and joins.
    1. minimal : SELECT STAR, FILTER on partition columns, LIMIT only
    2. more    : SELECT, FILTER, LIMIT only (+TABLESAMPLE, virtual columns)
  </description>
</property>

https://issues.apache.org/jira/browse/HIVE-887

2. show create table 可用!