Create table t1(id int)
I was firing above query on Hive 2.3.6 (MapR Hadoop Distribution 6.3.0).
Default hive engine was tez. So after firing the query I was not able to see any TEZ application is launched on the yarn resource manager web ui
So I've changed the execution engine to MapReduce.
set hive.execution.engine=mr
And tried to run the same query again. Same I was not able to see any MR application was launched on the yarn resource manager web ui
So my questions are how hive manage such types of queries? And where the details of this queries are stored like application id, start time so on?