How to run a query for a map job only in Apache hive -
if write query in apache hive executes mapreduce job behind scene how can run map job in hive?
thanks
certain optimized queries in fact require map phase. may provide mapjoin hint in hive achieve same: recommended small secondary tables:
select /*+ mapjoin(...) */ * ...
Comments
Post a Comment