发现spark集群重启突然异常无法正常提供服务,两个master都没有人正常起来提供服务,不是防火墙规则导致的,不是因为更改端口导致的1.异常情况:spark-master报错:20/07/1616:52:35WARNClientCnxn:Session0x57355eb34540d0cforserverhadoop5/"ip":7072,unexpectederror,clo
分类:
数据库 时间:
2020-07-17 01:17:59
阅读次数:
135
想要实现vue动态改变页面title,需要给每个页面设置标题。并且在路由发生变化时修改页面title router - index.js const router = new Router({ mode: 'history', routes: [ { path: '/index', name: 'i ...
分类:
其他好文 时间:
2020-07-16 12:22:20
阅读次数:
82
什么是Shuffle 在RDD中,将每个相同key的value聚合起来。相同key的value可能在不同partition,也可能在不同节点。因此shuffle操作会影响多个节点。 常见的shuffle操作有:groupByKey(),reduceBykey()等。 Shuffle Write和Re ...
分类:
其他好文 时间:
2020-07-16 10:12:36
阅读次数:
63
Hadoop原生的计算框架MapReduce,简单概括一下:进程量级很重,启动很慢,但能承载的数据量很大,效率相较于Spark微批处理和Flink实时来讲很慢,Shuffle任何一个写MR同学都必须掌握的东西,说难不难,说简单也不简单 MapReduce程序的五个阶段: input map shuf ...
分类:
其他好文 时间:
2020-07-15 15:53:30
阅读次数:
58
转自:https://blog.csdn.net/andy572633/article/details/7220668 linux命令行的history是一个熟知但不常用的命令,原因是要查某个命令的编号需要输入 history|grep xxx ,又因为!?xxx,!xxx 属于运行即执行也不方便, ...
分类:
系统相关 时间:
2020-07-15 13:00:28
阅读次数:
79
function pushHistory() { var state = {}; state = { // title: "itGrade", 自定义参数:自定义参数 }; console.log(state); window.history.pushState(state, null, "#"); ...
分类:
移动开发 时间:
2020-07-15 12:56:46
阅读次数:
119
原文出处: A Brief, Incomplete, and Mostly Wrong History of Programming Languages 译文出处: Mort Yao 警告: 原文中的内容不一定都是真实的。 小字部分不属于原文,是翻译君为了便于读者读懂原文擅自所加的注解。当然,也不能 ...
分类:
编程语言 时间:
2020-07-14 16:18:01
阅读次数:
118
ylbtech-JavaScript-Runoob-JS 浏览器BOM:JavaScript Window History 1.返回顶部 1、 JavaScript Window History window.history 对象包含浏览器的历史。 Window History window.his ...
分类:
编程语言 时间:
2020-07-14 14:58:05
阅读次数:
55
This week we are reading about the beginnings of Islam, and the simultaneous expansion of Christianity in the West. You may notice that the two overla ...
分类:
其他好文 时间:
2020-07-14 13:02:46
阅读次数:
101
1.Hadoop (1)安装配置 基础只需要配置core-site.xml和hdfs-site.xml就行。 参考: https://www.jianshu.com/p/aa8cfaa26790【这个教程的core-site.xml和hdfs-site.xml的内容弄反了,交换一下就行】 http: ...