码迷,mamicode.com
首页 >  
搜索关键字:spark streaming stop    ( 14227个结果
zabbix本地和第三方邮箱配置
环境说明: node1: 192.168.44.128 服务端 (已经装好zabbix_agentd和zabbix_server) node2: 192.168.44.129 客户端 (已经装好zabbix_agentd) //配置本地邮箱[root@node1 ~]# systemctl stop ...
分类:其他好文   时间:2021-04-27 14:45:06    阅读次数:0
无序点位的轮播
<template> <div class="box"> <div class="swipers"> <template v-for="(item, index) in lists" > <div class="item" v-if="index==active" :key="'0'+index" ...
分类:其他好文   时间:2021-04-26 13:50:48    阅读次数:0
计算Spark StorageMemory Heap内存
#计算Spark StorageMemory Heap内存 tag: Spark, Spark Memory, Spark Storage Memory 2021-04-23 21:26:25 星期五 version: spark-2.4.5 Executor 进程 org.apache.spark ...
分类:其他好文   时间:2021-04-24 13:38:45    阅读次数:0
本地调试spark
1、改成本地模式 . val conf = new SparkConf().setAppName("ScalaWordCount").setMaster("local") 2、编写入参 传参 ...
分类:其他好文   时间:2021-04-24 13:30:06    阅读次数:0
07 Spark RDD编程 综合实例 英文词频统计
1. 用Pyspark自主实现词频统计过程。 >>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] ...
分类:其他好文   时间:2021-04-23 12:19:08    阅读次数:0
07 Spark RDD编程 综合实例 英文词频统计
>>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] + 1...>>> ss = sorted( ...
分类:其他好文   时间:2021-04-23 12:18:32    阅读次数:0
07 Spark RDD编程 综合实例 英文词频统计
1. 用Pyspark自主实现词频统计过程。 >>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] ...
分类:其他好文   时间:2021-04-23 12:10:50    阅读次数:0
docker 7 :docker基本操作
常用的基本操作列表 命令行 解释 创建container docker container create image_name 创建并运行container 及进入交互终端参数 docker container run -it image_id CMD -i 交互模式 -t 终端 -it 为分配一个 ...
分类:其他好文   时间:2021-04-20 15:28:37    阅读次数:0
Spark OneHot编码原理
python - How to interpret results of Spark OneHotEncoder - Stack Overflow ...
分类:其他好文   时间:2021-04-20 15:16:33    阅读次数:0
05 RDD编程
一、词频统计: 读文本文件生成RDD lines lines=sc.textFile("file:///usr/local/spark/mycode/rdd/word.txt") lines.foreach(print) 将一行一行的文本分割成单词 words flatmap() words=lin ...
分类:其他好文   时间:2021-04-20 14:04:55    阅读次数:0
14227条   上一页 1 ... 11 12 13 14 15 ... 1423 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!