Relationship between Hive and Hadoop MapReduce?

后端 未结 1 1891
南方客
南方客 2021-01-13 05:54

Is there any Hive internal process that connects to reduce or map tasks?

Adding to that!

  • How does Hive work in relation with MapReduce
1条回答
  •  生来不讨喜
    2021-01-13 06:12

    For HIVE there is no process to communicate Map/Reduce tasks directly. It's communicates (flow 6.3) with Jobtracker(Application Master in YARN) only for job processing related things once it got scheduled.


    This image will give clear understanding about,

    1. How HIVE uses MapReduce as execution engine?
    2. How is the job getting scheduled?
    3. How does the result return to the driver?

    Edit: suggested by dennis-jaheruddin

    Hive is typically controlled by means of HQL (Hive Query Language) which is often conveniently abbreviated to Hive.

    source

    0 讨论(0)
提交回复
热议问题