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

Popular posts from this blog

Prolog - Listing -

orchardcms - change base url in local copy in Orchard CMS -

linear regression - Trying to get confidence/prediction intervals with `predict.lm` in R, but I keep getting an error regarding my dichotomous variable -