For example, I run hive query "SELECT COUNT(1) FROM DB.TABLE_NAME;".
Then hive will translate to MapReduce, and then submit to ResourceManager. The Hadoop's concept is application will be deployed where node that data existing. But, ResourceManager don't know where data is. How to deploy tasks the ResourceManager?
Thank you very much.