博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
修改yarn监控web页面上展示的StartFime和FinishTime【GMT时间】
阅读量:6606 次
发布时间:2019-06-24

本文共 1588 字,大约阅读时间需要 5 分钟。

应用场景

当部署好hadoop集群后,搭建了YARN集群,开启了hadoop的HDFS和YARN服务,访问主节点IP和8088端口的YARN监控界面,发现这个All Applications界面中的开始执行时间和结束执行时间不对,应该往后加8个小时才对,导致在页面中对任务监控的时候容易出错,所以现在要进行修改!

这里写图片描述

操作步骤

错误显示如上图,如果正确的话,应该加上8小时,才是我应该想要的时间。


将hadoop-yarn-common-2.6.0.jar这个包下载到本地

该包在您安装的hadoop目录中的【/opt/hadoop2.6.0/share/hadoop/yarn】目录中!

然后进入到包中,找到webapps/static/yarn.dt.plugins.js,修改yarn.dt.plugins.js

按照下面修改步骤,修改完后,替换之前的jar包即可!

修改步骤1. 在yarn.dt.plugins.js文件中添加如下代码Date.prototype.Format = function (fmt) {
//author: meizz var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //小时 "m+": this.getMinutes(), //分 "s+": this.getSeconds(), //秒 "q+": Math.floor((this.getMonth() + 3) / 3), //季度 "S": this.getMilliseconds() //毫秒 }; if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; };
修改步骤2. 找到函数renderHadoopDate,修改为如下内容:function renderHadoopDate(data, type, full) {    if (type === 'display' || type === 'filter') {      if(data === '0'|| data === '-1') {        return "N/A";      }      return new Date(parseInt(data)).Format("yyyy-MM-dd hh:mm:ss");    }    // 'sort', 'type' and undefined all just use the number    // If date is 0, then for purposes of sorting it should be consider max_int    return data === '0' ? '9007199254740992' : data;    }

修改后效果

这里写图片描述

你可能感兴趣的文章
mysql-用命令导出、导入表结构或数据
查看>>
Tinkphp
查看>>
EntityFrameworkCore 一对一 && 一对多 && 多对多配置
查看>>
How to temporally disable IDE tools (load manually)
查看>>
Vue.js学习 Item4 -- 数据双向绑定
查看>>
几种排序方式的java实现(01:插入排序,冒泡排序,选择排序,快速排序)
查看>>
server application unavailable
查看>>
浅谈尾递归的优化方式
查看>>
eclipse 的小技巧
查看>>
频率域滤波
查看>>
图片存储类型的种类、特点、区别
查看>>
GETTING UP AND RUNNING WITH NODE.JS, EXPRESS, JADE, AND MONGODB
查看>>
求二叉树第K层节点的个数
查看>>
关于cocos2d-x面试的问题
查看>>
MySQLs数据库建外键时自动跑到缩影处,真奇怪
查看>>
static关键字
查看>>
js 合并多个对象 Object.assign
查看>>
Java 反射机制
查看>>
Unity 碰撞检测中碰撞器与触发器的区别
查看>>
Elasticsearch配置文件说明
查看>>