Hadoop 学习 --- Yarn(四)

Hadoop – yarn

1. Yarn 资源调度器

Yarn 是一个资源调度平台,负责为运算程序提供服务器运算资源,相当于一个分布式的操作系统平台,而 MapReduce 等运算程序则相当于运行于操作系统之上的应用程序。

1.1 Yarn 的基础架构

YARN 主要由 ResourceManager、NodeManager、ApplicationMaster 和 Container 等组件构成

Hadoop 学习 --- Yarn(四)_第1张图片

1.2 Yarn 工作机制

Hadoop 学习 --- Yarn(四)_第2张图片

(1)MR 程序提交到客户端所在的节点。

(2)YarnRunner 向 ResourceManager 申请一个 Application。

(3)RM 将该应用程序的资源路径返回给 YarnRunner。

(4)该程序将运行所需资源提交到 HDFS 上。

(5)程序资源提交完毕后,申请运行 mrAppMaster。

(6)RM 将用户的请求初始化成一个 Task。

(7)其中一个 NodeManager 领取到 Task 任务。

(8)该 NodeManager 创建容器 Container,并产生 MRAppmaster。

(9)Container 从 HDFS 上拷贝资源到本地。

(10)MRAppmaster 向 RM 申请运行 MapTask 资源。

(11)RM 将运行 MapTask 任务分配给另外两个 NodeManager,另两个 NodeManager 分

别领取任务并创建容器。

(12)MR 向两个接收到任务的 NodeManager 发送程序启动脚本,这两个 NodeManager

分别启动 MapTask,MapTask 对数据分区排序。

(13)MrAppMaster 等待所有 MapTask 运行完毕后,向 RM 申请容器,运行 ReduceTask。

(14)ReduceTask 向 MapTask 获取相应分区的数据。

(15)程序运行完毕后,MR 会向 RM 申请注销自己。

1.3 作业提交全过程

HDFS 、YARN 、MapReduce 三者关系

Hadoop 学习 --- Yarn(四)_第3张图片

作业提交过程之YARN
Hadoop 学习 --- Yarn(四)_第4张图片
作业提交过程之HDFS & MapReduce
Hadoop 学习 --- Yarn(四)_第5张图片
作业提交全过程详解

(1)作业提交

第 1 步:Client 调用 job.waitForCompletion 方法,向整个集群提交 MapReduce 作业。

第 2 步:Client 向 RM 申请一个作业 id。

第 3 步:RM 给 Client 返回该 job 资源的提交路径和作业 id。

第 4 步:Client 提交 jar 包、切片信息和配置文件到指定的资源提交路径。

第 5 步:Client 提交完资源后,向 RM 申请运行 MrAppMaster。

(2)作业初始化

第 6 步:当 RM 收到 Client 的请求后,将该 job 添加到容量调度器中。

第 7 步:某一个空闲的 NM 领取到该 Job。

第 8 步:该 NM 创建 Container,并产生 MRAppmaster。

第 9 步:下载 Client 提交的资源到本地。

(3)任务分配

第 10 步:MrAppMaster 向 RM 申请运行多个 MapTask 任务资源。

第 11 步:RM 将运行 MapTask 任务分配给另外两个 NodeManager,另两个 NodeManager

分别领取任务并创建容器。

(4)任务运行

第 12 步:MR 向两个接收到任务的 NodeManager 发送程序启动脚本,这两个

NodeManager 分别启动 MapTask,MapTask 对数据分区排序。

第13步:MrAppMaster等待所有MapTask运行完毕后,向RM申请容器,运行ReduceTask。

第 14 步:ReduceTask 向 MapTask 获取相应分区的数据。

第 15 步:程序运行完毕后,MR 会向 RM 申请注销自己。

(5)进度和状态更新

YARN 中的任务将其进度和状态(包括 counter)返回给应用管理器, 客户端每秒(通过

mapreduce.client.progressmonitor.pollinterval 设置)向应用管理器请求进度更新, 展示给用户。

(6)作业完成

除了向应用管理器请求作业进度外, 客户端每 5 秒都会通过调用 waitForCompletion()来

检查作业是否完成。时间间隔可以通过 mapreduce.client.completion.pollinterval 来设置。作业

完成之后, 应用管理器和 Container 会清理工作状态。作业的信息会被作业历史服务器存储

以备之后用户核查。

1.4 Yarn 调度器和调度算法

目前,Hadoop 作业调度器主要有三种:FIFO、容量(Capacity Scheduler)和公平(Fair Scheduler)。Apache Hadoop3.1.3 默认的资源调度器是 Capacity Scheduler。

CDH 框架默认调度器是 Fair Scheduler。

具体设置详见:yarn-default.xml 文件

<property>
 <description>The class to use as the resource scheduler.description>
 <name>yarn.resourcemanager.scheduler.classname>
<value>org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacitySchedulervalue>
property>

1.4.1 先进先出调度器(FIFO)

FIFO 调度器(First In First Out):单队列,根据提交作业的先后顺序,先来先服务。

Hadoop 学习 --- Yarn(四)_第6张图片

优点:简单易懂;

缺点:不支持多队列,生产环境很少使用;

1.4.2 容量调度器(Capacity Scheduler

Capacity Scheduler 是 Yahoo 开发的多用户调度器。

Hadoop 学习 --- Yarn(四)_第7张图片

1、多队列:每个队列可配置一定的资源量,每个队列采用FIFO调度策略。

2、容量保证:管理员可为每个队列设置资源最低保证和资源使用上限

3、灵活性:如果一个队列中的资源有剩余,可以暂时共享给那些需要资源的队列,而一旦该队列有新的应用

程序提交,则其他队列借调的资源会归还给该队列。

4、多租户:

支持多用户共享集群和多应用程序同时运行。

为了防止同一个用户的作业独占队列中的资源,该调度器会对同一用户提交的作业所占资源量进行限定。

容量调度器资源分配算法

Hadoop 学习 --- Yarn(四)_第8张图片

1.4.3 **公平调度器(**Fair Scheduler)

Fair Schedulere 是 Facebook 开发的多用户调度器。

Hadoop 学习 --- Yarn(四)_第9张图片

  1. 与容量调度器相同点

​ (1)多队列:支持多队列多作业

​ (2)容量保证:管理员可为每个队列设置资源最低保证和资源使用上线

​ (3)灵活性:如果一个队列中的资源有剩余,可以暂时共享给那些需要资源的队列,而一旦该队列有新的应用程序提交,则其他队列借调的资源会归还给该队列。

​ (4)多租户:支持多用户共享集群和多应用程序同时运行;为了防止同一个用户的作业独占队列中的资源,该调度器会对同一用户提交的作业所占资源量进行限定。

  1. 与容量调度器不同点

    (1)核心调度策略不同

    ​ 容量调度器:优先选择资源利用率低的队列

    ​ 公平调度器:优先选择对资源的缺额比例大的

    (2)每个队列可以单独设置资源分配方式

    ​ 容量调度器:FIFO、 DRF

    ​ 公平调度器:FIFO、FAIR、DRF

公平调度器——缺额

Hadoop 学习 --- Yarn(四)_第10张图片

  • 公平调度器设计目标是:在时间尺度上,所有作业获得公平的资源。某一时刻一个作业应获资源和实际获取资源的差距叫“缺额”
  • 调度器会优先为缺额大的作业分配资源

公平调度器队列资源分配方式

  1. FIFO策略

公平调度器每个队列资源分配策略如果选择FIFO的话,此时公平调度器相当于上面讲过的容量调度器。

  1. Fair策略

Fair 策略(默认)是一种基于最大最小公平算法实现的资源多路复用方式,默认情况下,每个队列内部采用该方式分配资源。这意味着,如果一个队列中有两个应用程序同时运行,则每个应用程序可得到1/2的资源;如果三个应用程序同时运行,则每个应用程序可得到1/3的资源。

具体资源分配流程和容量调度器一致;

(1)选择队列

(2)选择作业

(3)选择容器

以上三步,每一步都是按照公平策略分配资源

实际最小资源份额:mindshare = Min(资源需求量,配置的最小资源)

是否饥饿:isNeedy = 资源使用量 < mindshare(实际最小资源份额)

资源分配比:minShareRatio = 资源使用量 / Max(mindshare, 1)

资源使用权重比:useToWeightRatio = 资源使用量 / 权重

Hadoop 学习 --- Yarn(四)_第11张图片

公平调度器资源分配算法

Hadoop 学习 --- Yarn(四)_第12张图片

公平调度器队列资源分配方式

Hadoop 学习 --- Yarn(四)_第13张图片

(3DRF策略

DRF(Dominant Resource Fairness),我们之前说的资源,都是单一标准,例如只考虑内存(也是Yarn默认的情况)。但是很多时候我们资源有很多种,例如内存,CPU,网络带宽等,这样我们很难衡量两个应用应该分配的资源比例。

​ 那么在YARN中,我们用DRF来决定如何调度:

​ 假设集群一共有100 CPU和10T 内存,而应用A需要(2 CPU, 300GB),应用B需要(6 CPU,100GB)。则两个应用分别需要A(2%CPU, 3%内存)和B(6%CPU, 1%内存)的资源,这就意味着A是内存主导的, B是CPU主导的,针对这种情况,我们可以选择DRF策略对不同应用进行不同资源(CPU和内存)的一个不同比例的限制。

1.5 Yarn 常用命令

Yarn 状态的查询,除了可以在 hadoop103:8088 页面查看外,还可以通过命令操作。常见的命令操作如下所示:

# 先启动集群
$ myhadoop.sh start 
# 启动wordcount案例 ,准备好输入 ,输出文件不能存在
[rose@hadoop102 hadoop-3.1.3]$ hadoop jar share/hadoop/mapreduce/hadoop-mapreduce-examples-3.1.3.jar  wordcount /input /output

1.5.1 yarn application 查看任务

(1)列出所有 Application:

[rose@hadoop102 hadoop-3.1.3]$  yarn application -list
2021-12-13 21:30:58,451 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Total number of applications (application-types: [], states: [SUBMITTED, ACCEPTED, RUNNING] and tags: []):0
                Application-Id	    Application-Name	    Application-Type	      User	     Queue	             State	       Final-State	       Progress	                       Tracking-URL

(2)根据 Application 状态过滤:yarn application -list -appStates (所有状态:ALL、NEW、NEW_SAVING、SUBMITTED、ACCEPTED、RUNNING、FINISHED、FAILED、KILLED)

[rose@hadoop102 hadoop-3.1.3]$ yarn application -list -appStates FINISHED
2021-12-13 21:33:06,655 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Total number of applications (application-types: [], states: [FINISHED] and tags: []):1
                Application-Id	    Application-Name	    Application-Type	      User	     Queue	             State	       Final-State	       Progress	                       Tracking-URL
application_1639401828037_0001	          word count	           MAPREDUCE	      rose	   default	          FINISHED	         SUCCEEDED	           100%	http://hadoop102:19888/jobhistory/job/job_1639401828037_0001

(3)Kill 掉 Application:

[rose@hadoop102 hadoop-3.1.3]$ yarn application -kill application_1639401828037_0001
2021-12-13 21:36:17,669 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Application application_1639401828037_0001 has already finished 

1.5.2 yarn logs 查看日志

(1)查询 Application 日志:yarn logs -applicationId

[rose@hadoop102 hadoop-3.1.3]$ yarn logs -applicationId  application_1639401828037_0001

(2)查询 Container 日志:yarn logs -applicationId -containerId

1.5.3 yarn applicationattempt 查看尝试运行的任务

(1)列出所有 Application 尝试的列表:yarn applicationattempt -list

[rose@hadoop102 hadoop-3.1.3]$ yarn applicationattempt -list application_1639401828037_0001
2021-12-13 21:46:02,453 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Total number of application attempts :1
         ApplicationAttempt-Id	               State	                    AM-Container-Id	                       Tracking-URL
appattempt_1639401828037_0001_000001	            FINISHED	container_1639401828037_0001_01_000001	http://hadoop103:8088/proxy/application_1639401828037_0001/

(2)打印 ApplicationAttemp 状态:yarn applicationattempt -status

[rose@hadoop102 hadoop-3.1.3]$ yarn applicationattempt -status appattempt_1639401828037_0001_000001
2021-12-13 21:47:10,022 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Application Attempt Report : 
	ApplicationAttempt-Id : appattempt_1639401828037_0001_000001
	State : FINISHED
	AMContainer : container_1639401828037_0001_01_000001
	Tracking-URL : http://hadoop103:8088/proxy/application_1639401828037_0001/
	RPC Port : 32930
	AM Host : hadoop104
	Diagnostics : 

1.5.4 yarn container 查看容器

(1)列出所有 Container:yarn container -list

[rose@hadoop102 hadoop-3.1.3]$ yarn container -list appattempt_1639401828037_0001_000001
2021-12-13 21:49:51,217 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Total number of containers :0
                  Container-Id	          Start Time	         Finish Time	               State	                Host	   Node Http Address	                            LOG-URL

(2)打印 Container 状态:yarn container -status

[rose@hadoop102 hadoop-3.1.3]$ yarn container -status container_1639401828037_0001_01_000001
2021-12-13 21:51:48,517 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Container with id 'container_1639401828037_0001_01_000001' doesn't exist in RM or Timeline Server.

注:只有在任务跑的途中才能看到 container 的状态

1.5.5 yarn node 查看节点状态

列出所有节点:yarn node -list -all

[rose@hadoop102 hadoop-3.1.3]$ yarn node -list -all
2021-12-13 21:53:18,759 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Total Nodes:3
         Node-Id	     Node-State	Node-Http-Address	Number-of-Running-Containers
 hadoop102:40321	        RUNNING	   hadoop102:8042	                           0
 hadoop103:45285	        RUNNING	   hadoop103:8042	                           0
 hadoop104:38359	        RUNNING	   hadoop104:8042	                           0

1.5.6 yarn rmadmin 更新配置

加载队列配置:yarn rmadmin -refreshQueues

[rose@hadoop102 hadoop-3.1.3]$ yarn rmadmin -refreshQueues
2021-12-13 21:53:57,087 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8033

1.5.7 yarn queue 查看队列

打印队列信息:yarn queue -status

[rose@hadoop102 hadoop-3.1.3]$  yarn queue -status default
2021-12-13 21:54:50,690 INFO client.RMProxy: Connecting to ResourceManager at hadoop103/192.168.10.103:8032
Queue Information : 
Queue Name : default
	State : RUNNING
	Capacity : 100.0%
	Current Capacity : .0%
	Maximum Capacity : 100.0%
	Default Node Label expression : <DEFAULT_PARTITION>
	Accessible Node Labels : *
	Preemption : disabled
	Intra-queue Preemption : disabled

1.6 Yarn 生产环境核心参数

Hadoop 学习 --- Yarn(四)_第14张图片

2. Yarn 案例实操

注:调整下列参数之前尽量拍摄 Linux 快照,否则后续的案例,还需要重写准备集群。

2.1 Yarn 生产环境核心参数配置案例

需求:从 1G 数据中,统计每个单词出现次数。服务器 3 台,每台配置 4G 内存,4 核

CPU,4 线程。

需求分析: 1G / 128m = 8 个 MapTask;1 个 ReduceTask;1 个 mrAppMaster

平均每个节点运行 10 个 / 3 台 ≈ 3 个任务( 4 3 3)。

修改 yarn-site.xml 配置


<property>
<description>The class to use as the resource scheduler.description>
<name>yarn.resourcemanager.scheduler.classname>
<value>org.apache.hadoop.yarn.server.resourcemanager.scheduler.capaci
ty.CapacitySchedulervalue>
property>

<property>
<description>Number of threads to handle scheduler 
interface.description>
<name>yarn.resourcemanager.scheduler.client.thread-countname>
<value>8value>
property>

<property>
<description>Enable auto-detection of node capabilities such as
memory and CPU.
description>
<name>yarn.nodemanager.resource.detect-hardware-capabilitiesname>
<value>falsevalue>
property>

<property>
<description>Flag to determine if logical processors(such as
hyperthreads) should be counted as cores. Only applicable on Linux
when yarn.nodemanager.resource.cpu-vcores is set to -1 and
yarn.nodemanager.resource.detect-hardware-capabilities is true.
description>
<name>yarn.nodemanager.resource.count-logical-processors-ascoresname>
<value>falsevalue>
property>

<property>
<description>Multiplier to determine how to convert phyiscal cores to
vcores. This value is used if yarn.nodemanager.resource.cpu-vcores
is set to -1(which implies auto-calculate vcores) and
yarn.nodemanager.resource.detect-hardware-capabilities is set to true. 
The number of vcores will be calculated as number of CPUs * multiplier.
description>
<name>yarn.nodemanager.resource.pcores-vcores-multipliername>
<value>1.0value>
property>

<property>
<description>Amount of physical memory, in MB, that can be allocated 
for containers. If set to -1 and
yarn.nodemanager.resource.detect-hardware-capabilities is true, it is
automatically calculated(in case of Windows and Linux).
In other cases, the default is 8192MB.
description>
<name>yarn.nodemanager.resource.memory-mbname>
<value>4096value>
property>

<property>
<description>Number of vcores that can be allocated
for containers. This is used by the RM scheduler when allocating
resources for containers. This is not used to limit the number of
CPUs used by YARN containers. If it is set to -1 and
yarn.nodemanager.resource.detect-hardware-capabilities is true, it is
automatically determined from the hardware in case of Windows and Linux.
In other cases, number of vcores is 8 by default.description>
<name>yarn.nodemanager.resource.cpu-vcoresname>
<value>4value>
property>

<property>
<description>The minimum allocation for every container request at the
    RM in MBs. Memory requests lower than this will be set to the value of 
this property. Additionally, a node manager that is configured to have 
less memory than this value will be shut down by the resource manager.
description>
<name>yarn.scheduler.minimum-allocation-mbname>
<value>1024value>
property>

<property>
<description>The maximum allocation for every container request at the 
RM in MBs. Memory requests higher than this will throw an
InvalidResourceRequestException.
description>
<name>yarn.scheduler.maximum-allocation-mbname>
<value>2048value>
property>

<property>
<description>The minimum allocation for every container request at the 
RM in terms of virtual CPU cores. Requests lower than this will be set to 
the value of this property. Additionally, a node manager that is configured 
to have fewer virtual cores than this value will be shut down by the 
resource manager.
description>
<name>yarn.scheduler.minimum-allocation-vcoresname>
<value>1value>
property>

<property>
<description>The maximum allocation for every container request at the 
RM in terms of virtual CPU cores. Requests higher than this will throw an
InvalidResourceRequestException.description>
<name>yarn.scheduler.maximum-allocation-vcoresname>
<value>2value>
property>

<property>
<description>Whether virtual memory limits will be enforced for
containers.description>
<name>yarn.nodemanager.vmem-check-enabledname>
<value>falsevalue>
property>

<property>
<description>Ratio between virtual memory to physical memory when
setting memory limits for containers. Container allocations are
expressed in terms of physical memory, and virtual memory usage is 
allowed to exceed this allocation by this ratio.
description>
<name>yarn.nodemanager.vmem-pmem-rationame>
<value>2.1value>
property>

关闭虚拟内存检查原因

Hadoop 学习 --- Yarn(四)_第15张图片

注意:如果集群的硬件资源不一致,要每个 NodeManager 单独配置

2.2 容量调度器多队列提交案例

  1. 在生产环境怎么创建队列?

    (1)调度器默认就 1 个 default 队列,不能满足生产要求。

    (2)按照框架:hive /spark/ flink 每个框架的任务放入指定的队列(企业用的不是特别多)

    (3)按照业务模块:登录注册、购物车、下单、业务部门 1、业务部门 2

  2. 创建多队列的好处?

    (1)因为担心员工不小心,写递归死循环代码,把所有资源全部耗尽。

    (2)实现任务的降级使用,特殊时期保证重要的任务队列资源充足。11.11 6.18 业务部门 1(重要)=》业务部门 2(比较重要)=》下单(一般)=》购物车(一般)=》登录注册(次要)

2.2.1 需求

需求 1:default 队列占总内存的 40%,最大资源容量占总资源 60%,hive 队列占总内存

的 60%,最大资源容量占总资源 80%。

需求 2:配置队列优先级

2.2.2 配置多队列的容量调度器

在 capacity-scheduler.xml 中配置如下:

下面的是需要修改的


<property>
 <name>yarn.scheduler.capacity.root.queuesname>
 <value>default,hivevalue>
 <description>
 The queues at the this level (root is the root queue).
 description>
property>

<property>
 <name>yarn.scheduler.capacity.root.default.capacityname>
 <value>40value>
property>

<property>
 <name>yarn.scheduler.capacity.root.default.maximum-capacityname>
 <value>60value>
property>

下面的是对原有的进行增加 ,有default 的增加 hive


<property>
 <name>yarn.scheduler.capacity.root.hive.capacityname>
 <value>60value>
property>

<property>
 <name>yarn.scheduler.capacity.root.hive.user-limit-factorname>
 <value>1value>
property>

<property>
 <name>yarn.scheduler.capacity.root.hive.maximum-capacityname>
 <value>80value>
property>

<property>
 <name>yarn.scheduler.capacity.root.hive.statename>
 <value>RUNNINGvalue>
property>

<property>
 <name>yarn.scheduler.capacity.root.hive.acl_submit_applicationsname>
 <value>*value>
property>

<property>
 <name>yarn.scheduler.capacity.root.hive.acl_administer_queuename>
 <value>*value>
property>

<property>
 
<name>yarn.scheduler.capacity.root.hive.acl_application_max_prioritynam
e>
 <value>*value>
property>
 
<property>
 <name>yarn.scheduler.capacity.root.hive.maximum-applicationlifetimename>
 <value>-1value>
property>

<property>
 <name>yarn.scheduler.capacity.root.hive.default-applicationlifetimename>
 <value>-1value>
property>

分发完配置文件之后可以使用 yarn rmadmin -refreshQueues 进行对队列的刷新,可以不同重启集群

2.2.3 想 Hive 队列提交任务

[rose@hadoop102 hadoop-3.1.3]$ hadoop jar share/hadoop/mapreduce/hadoop-mapreduce-examples-3.1.3.jar  wordcount -D mapreduce.job.queuename=hive /input /output 

注: -D 表示运行时改变参数值

还有一种选择队列的方式 , 在mp 阶段打 jar 包之前进行,在 Driver 类中对配置进行设置

Configuration conf = new Configuration();
conf.set("mapreduce.job.queuename","hive");

2.2.4 任务优先级

​ 容量调度器,支持任务优先级的配置,在资源紧张时,优先级高的任务将优先获取资源。默认情况,Yarn 将所有任务的优先级限制为 0,若想使用任务的优先级功能,须开放该限制。

(1)修改 yarn-site.xml 文件,增加以下参数

<property>
 <name>yarn.cluster.max-application-priorityname>
 <value>5value>
property>

(2)分发配置,并重启 Yarn

[rose@hadoop102 hadoop]$ xsync yarn-site.xml
[rose@hadoop103 hadoop-3.1.3]$ sbin/stop-yarn.sh
[rose@hadoop103 hadoop-3.1.3]$ sbin/start-yarn.sh

(3) 提交优先级高的任务

hadoop jar share/hadoop/mapreduce/hadoop-mapreduce-examples-3.1.3.jar pi -D mapreduce.job.priority=5 5 2000000

(4) 也可以通过以下命令修改正在执行的任务的优先级。

$ yarn application -appID  application_1611133087930_0009 -updatePriority 5

2.3 公平调度器的案例

2.3.1 需求

​ 创建两个队列,分别是 test 和 atguigu(以用户所属组命名)。期望实现以下效果:若用户提交任务时指定队列,则任务提交到指定队列运行;若未指定队列,test 用户提交的任务到 root.group.test 队列运行,atguigu 提交的任务到 root.group.atguigu 队列运行(注:group 为用户所属组)。

​ 公平调度器的配置涉及到两个文件,一个是 yarn-site.xml,另一个是公平调度器队列分配文件 fair-scheduler.xml(文件名可自定义)。

(1)配置文件参考资料:

https://hadoop.apache.org/docs/r3.1.3/hadoop-yarn/hadoop-yarn-site/FairScheduler.html

(2)任务队列放置规则参考资料:

https://blog.cloudera.com/untangling-apache-hadoop-yarn-part-4-fair-scheduler-queue-basics/

2.3.2 配置多队列的公平调度器

  1. 修改 yarn-site.xml 文件,加入以下参数
<property>
 <name>yarn.resourcemanager.scheduler.classname>
<value>org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairS
chedulervalue>
 <description>配置使用公平调度器description>
property>
<property>
 <name>yarn.scheduler.fair.allocation.filename>
 <value>/opt/module/hadoop-3.1.3/etc/hadoop/fair-scheduler.xmlvalue>
 <description>指明公平调度器队列分配配置文件description>
property>
<property>
 <name>yarn.scheduler.fair.preemptionname>
 <value>falsevalue>
 <description>禁止队列间资源抢占description>
property>
  1. 配置 fair-scheduler.xml

<allocations>
 
 <queueMaxAMShareDefault>0.5queueMaxAMShareDefault>
 
 <queueMaxResourcesDefault>4096mb,4vcoresqueueMaxResourcesDefault>
 
 <queue name="test">
 
 <minResources>2048mb,2vcoresminResources>
 
 <maxResources>4096mb,4vcoresmaxResources>
 
 <maxRunningApps>4maxRunningApps>
 
 <maxAMShare>0.5maxAMShare>
 
     <weight>1.0weight>
 
 <schedulingPolicy>fairschedulingPolicy>
 queue>
 
 <queue name="atguigu" type="parent">
 
 <minResources>2048mb,2vcoresminResources>
 
 <maxResources>4096mb,4vcoresmaxResources>
 
 <maxRunningApps>4maxRunningApps>
 
 <maxAMShare>0.5maxAMShare>
 
 <weight>1.0weight>
 
 <schedulingPolicy>fairschedulingPolicy>
 queue>
 
 <queuePlacementPolicy>
 
 <rule name="specified" create="false"/>
 
 <rule name="nestedUserQueue" create="true">
 <rule name="primaryGroup" create="false"/>
 rule>
 
 <rule name="reject" />
 queuePlacementPolicy>
allocations>
  1. 分发配置 重启 Yarn

2.3.3 测试提交任务

(1)提交任务时指定队列,按照配置规则,任务会到指定的 root.test 队列

[rose@hadoop102 hadoop-3.1.3]$ hadoop jar /opt/module/hadoop-
3.1.3/share/hadoop/mapreduce/hadoop-mapreduce-examples-3.1.3.jar pi -
Dmapreduce.job.queuename=root.test 1 1

(2)提交任务时不指定队列,按照配置规则,任务会到 root.atguigu.atguigu 队列

2.3.4 Yarn 的 Tool 接口案例

期望可以动态传参数,会将第一个参数误以为传入的参数

[rose@hadoop102 hadoop-3.1.3]$ hadoop jar wc.jar 
com.atguigu.mapreduce.wordcount2.WordCountDriver -
Dmapreduce.job.queuename=root.test /input /output1

(1)需求:自己写的程序也可以动态修改参数。编写 Yarn 的 Tool 接口

(2)具体实现

新建项目 Maven 工程 YarnDemo


<project xmlns="http://maven.apache.org/POM/4.0.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelVersion>4.0.0modelVersion>
 <groupId>com.atguigu.hadoopgroupId>
 <artifactId>yarn_tool_testartifactId>
 <version>1.0-SNAPSHOTversion>
 <dependencies>
 <dependency>
 <groupId>org.apache.hadoopgroupId>
 <artifactId>hadoop-clientartifactId>
 <version>3.1.3version>
 dependency>
 dependencies>
project>

创建类 WordCount 并实现 了 Tool 接口:

public class WordCount implements Tool {
   
   private Configuration conf;
   
   @Override
   public int run(String[] args) throws Exception {
      
      Job job = Job.getInstance(conf);
      
      job.setJarByClass(WordCountDriver.class);
      job.setMapperClass(WordCountMapper.class);
      job.setReducerClass(WordCountReducer.class);
      
      job.setMapOutputKeyClass(Text.class);
      job.setMapOutputValueClass(IntWritable.class);
      job.setOutputKeyClass(Text.class);
      job.setOutputValueClass(IntWritable.class);
      
      FileInputFormat.setInputPaths(job,new Path(args[0]));
      FileOutputFormat.setOutputPath(job,new Path(args[1]));
      
      return job.waitForCompletion(true) ? 0 : 1 ;
   }
   
   @Override
   public void setConf(Configuration conf) {
      this.conf = conf ;
   }
   
   @Override
   public Configuration getConf() {
      return conf;
   }
   
   public static class WordCountMapper extends Mapper<LongWritable, Text ,Text , IntWritable>{
      
      private Text outK = new Text();
      private IntWritable outV = new IntWritable(1);
      
      @Override
      protected void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException {
         
         String line = value.toString();
         
         String[] split = line.split(" ");
         
         for(String string : split){
            outK.set(string);
            context.write(outK,outV);
         }
      }
   }
   
   public static class WordCountReducer extends Reducer<Text,IntWritable,Text , IntWritable>{
      
      private IntWritable outV = new IntWritable();
      @Override
      protected void reduce(Text key, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException {
         
         int sum = 0 ;
         for(IntWritable i : values){
            sum += i.get();
         }
         outV.set(sum);
         
         context.write(key,outV);
      }
   }
}

新建一个 WordCountDriver 作为程序的入口, 并对传入的参数进行处理

public class WordCountDriver {
   
   private static Tool tool ;
   
   public static void main(String[] args) throws Exception {
      
      // 1.创建配置文件
      Configuration conf  = new Configuration();
      
      // 2.判断是否有tool 接口
      switch (args[0]){
         case "wordcount":
            tool = new WordCount();
            break;
         default:
            throw  new RuntimeException("NO such tool :"+ args[0]);
      }
     
      // 用tool 执行程序
      int run = ToolRunner.run(conf, tool, Arrays.copyOfRange(args, 1, args.length));
      
      System.exit(run);
      
   }
}

(3 ) 将项目打包,然后传入到集群的目录下,运行 传入相应的参数进行测试

[rose@hadoop102 hadoop-3.1.3]$ yarn jar YarnDemo.jar 
com.atguigu.yarn.WordCountDriver wordcount -
Dmapreduce.job.queuename=root.test /input /output1

(4) 注:以上操作全部做完过后,快照回去或者手动将配置文件修改成之前的状态,因为本

身资源就不够,分成了这么多,不方便以后测试。

你可能感兴趣的:(大数据,框架)