FetchTask直接MapReduceのマップジョブ
<property>
<name>hive.fetch.task.conversion</name>
<value>minimal</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>
を低減呼び出すのに対し、また0.10から0.13にデフォルトで-1および> 0.14である他のパラメータhive.fetch.task.conversion.threshold
があり、データをフェッチ1G(1073741824) これは、テーブルサイズが1Gを超える場合、フェッチタスクの代わりにMapreduceを使用することを示します。
more detail
このリンクをお寄せいただきありがとうございます。 – leftjoin
ur welcome .... –