When I run below command , looks like hive runs mapper-reducer and then shows the result -
hive> select count(*) from nyse;
but below command gives the output instantly like in any other rdb -
hive> select * from nyse limit 3;
Why is different behaviour for two commands ? Does hive not run maper reducer for the 2nd command ?