zoukankan      html  css  js  c++  java
  • hadoop测试题目每天5题,总35题,第三天

    地址: http://www.cnblogs.com/jarlean/archive/2013/04/10/3011667.html                       

    Q11. Give an example scenario where a cobiner can be used and where it cannot be used
    There can be several examples following are the most common ones
    - Scenario where you can use combiner
      Getting list of distinct words in a file (进行distinct操作时用combiner)
    - Scenario where you cannot use a combiner
      Calculating mean of a list of numbers (计算平均值时用)
    Q12. What is job tracker
    Job Tracker is the service within Hadoop that runs Map Reduce jobs on the cluster (jt是运行MR作业的集群)
    Q13. What are some typical functions of Job Tracker(jobtracker 的作用)
    The following are some typical tasks of Job Tracker
    - Accepts jobs from clients(接收客户端的任务)
    - It talks to the NameNode to determine the location of the data(获取namenode返回的数据位置信息)
    - It locates TaskTracker nodes with available slots at or near the data(定位于数据近的可用的tasktracker节点)
    - It submits the work to the chosen Task Tracker nodes and monitors progress of each task by receiving heartbeat signals from Task tracker(将作业提交给tasktracker,接收tasktracker的heartbeat信息)
    Q14. What is task tracker
    Task Tracker is a node in the cluster that accepts tasks like Map, Reduce and Shuffle operations - from a JobTracker(从jobtracker接收Map,Reduce任务和进行Shuffle操作)
    Q15. Whats the relationship between Jobs and Tasks in Hadoop
    One job is broken down into one or many tasks in Hadoop.(job分解为1或多个task)

  • 相关阅读:
    设计师
    仅用递归函数和栈操作逆序一个栈
    用两个栈实现队列
    设计一个有getMin功能的栈(2)
    设计一个有getMin功能的栈(1)
    Java 泛型
    servlet里获得jsp页面里select的选项之值
    mac上mysql的GUI工具sequel pro
    mac安装mysql的两种方法(含配置)
    [转]在Mac系统中安装配置Tomcat及和Eclipse 配置
  • 原文地址:https://www.cnblogs.com/jarlean/p/3011667.html
Copyright © 2011-2022 走看看