zoukankan      html  css  js  c++  java
  • mapred-site.xml

    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
    <!--
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License. See accompanying LICENSE file.
    -->

    <!-- Put site-specific property overrides in this file. -->

    <configuration>
    <property>
    <name>mapreduce.framework.name</name>
    <value>yarn</value>
    <description>指定mr框架为yarn方式 </description>
    </property>
    <!-- 历史日志服务jobhistory相关配置 -->
    <property>
    <name>mapreduce.jobhistory.address</name>
    <value>node02:10020</value>
    <description>历史服务器端口号</description>
    </property>
    <property>
    <name>mapreduce.jobhistory.webapp.address</name>
    <value>node02:19888</value>
    <description>历史服务器的WEB UI端口号</description>
    </property>
    <property>
    <name>mapreduce.jobhistory.joblist.cache.size</name>
    <value>2000</value>
    <description>内存中缓存的historyfile文件信息(主要是job对应的文件目录)</description>
    </property>
    </configuration>

  • 相关阅读:
    Python必须知道的异常处理
    类的内置方法(用实际代码来验证)
    类的三大特性(继承, 封装, 多态)
    面向对象编程代码详解(依赖关系,关联关系,组合关系)
    函数(匿名函数,嵌套函数,高阶函数,装饰器)
    常用模块
    对磁盘文件的操作(文件处理)
    字符编码
    常用数据类型
    编程介绍
  • 原文地址:https://www.cnblogs.com/llphhl/p/8847900.html
Copyright © 2011-2022 走看看