博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spark Python 快速体验
阅读量:6505 次
发布时间:2019-06-24

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

hot3.png

Spark是2015年最受热捧大数据开源平台,我们花一点时间来快速体验一下Spark。

Spark 技术栈

103717_d6qN_1450051.png

如上图所示,Spark的技术栈包括了这些模块:

  • 核心模块 :Spark Core

  • 集群管理 

    • Standalone Scheduler

    • YARN

    • Mesos

  • Spark SQL

  • Spark 流 Streaming

  • Spark 机器学习 MLLib

  • GraphX 图处理模块

安装和启动Spark

Spark Python Shell

> bin/pyspark

Spark Ipython Shell

> IPYTHON=1 ./bin/pyspark> IPYTHON_OPTS="notebook" ./bin/pyspark

Spark 架构

133119_8CZR_1450051.png

初始化 Spark Context

在使用Spark的功能之前首先要初始化Spark的context,Context包含了Spark的连接和配置信息。

Spark Context,Driver和Worker节点之间的关系如下图:

104355_Wazv_1450051.png

from pyspark import SparkConf, SparkContextconf = SparkConf().setMaster("local").setAppName("My App")sc = SparkContext(conf = conf)

创建 RDD

RDD是Spark的基本数据模型,所有的操作都是基于RDD。RDD是inmutable(不可改变)的。

104758_XUvl_1450051.png

lines = sc.textFile("README.md")pythonLines = lines.filter(lambda line: "Python" in line) pythonLines.first()pythonLines.count()

RDD 操作:

下面是一些对RDD的变形操作

RDD Transformation on {1,2,3,4}

104932_fuNZ_1450051.png

两个RDD之间的操作, Transformation on {1,2,3} and {3,4,5}

105040_IRIP_1450051.png

RDD actions on {1,2,3,3}

110942_wuT1_1450051.png

111023_hPfv_1450051.png

Transformation on pair RDD {(1,2),(3,4),(3,6)}

111500_Avgl_1450051.png

111548_2uHT_1450051.png

Transform on two pair RDDs {(1,2),(3,4),(3,6)}, {(3,9)}

111705_hKRC_1450051.png

Spark 流 stream

Spark流基于RDD,可以理解对小的时间片段上的RDD操作。

091935_8CFC_1450051.png

092052_b6w8_1450051.png

092143_HsOa_1450051.png

SparkSQL

Spark SQL可以用于操作和查询结构化和半结构化的数据。包括Hive,JSON, CSV等。

# Import Spark SQLfrom pyspark.sql import HiveContext, Row# Or if you can't include the hive requirementsfrom pyspark.sql import SQLContext, Row 					input = hiveCtx.jsonFile(inputFile)# Register the input schema RDDinput.registerTempTable("tweets")# Select tweets based on the retweetCounttopTweets = hiveCtx.sql("SELECT text, retweetCount FROM tweets ORDER BY retweetCount LIMIT 10")

Spark SQL支持JDBC

SparkML 

机器学习的基本流程如下:

    1. 获得数据

    2. 从数据中提取特征

    3. 对数据进行有监督的或者无监督的学习,训练机器学习的模型

    4. 对模型进行评估,找出最佳模型

095704_bxG8_1450051.png

由于Spark的架构特点,Spark支持的机器学习算法是哪些可以并行的算法。

from pyspark.mllib.regression import LabeledPointfrom pyspark.mllib.feature import HashingTFfrom pyspark.mllib.classification import LogisticRegressionWithSGD					spam = sc.textFile("spam.txt")normal = sc.textFile("normal.txt")				# Create a HashingTF instance to map email text to vectors of 10,000 features.				tf = HashingTF(numFeatures = 10000)# Each email is split into words, and each word is mapped to one feature.spamFeatures = spam.map(lambda email: tf.transform(email.split(" ")))normalFeatures = normal.map(lambda email: tf.transform(email.split(" ")))				# Create LabeledPoint datasets for positive (spam) and negative (normal) examples.					positiveExamples = spamFeatures.map(lambda features: LabeledPoint(1, features))negativeExamples = normalFeatures.map(lambda features: LabeledPoint(0, features))trainingData = positiveExamples.union(negativeExamples)trainingData.cache() # Cache since Logistic Regression is an iterative algorithm.			# Run Logistic Regression using the SGD algorithm.				model = LogisticRegressionWithSGD.train(trainingData)				# Test on a positive example (spam) and a negative one (normal). We first apply# the same HashingTF feature transformation to get vectors, then apply the model.posTest = tf.transform("O M G GET cheap stuff by sending money to ...".split(" "))negTest = tf.transform("Hi Dad, I started studying Spark the other ...".split(" "))print "Prediction for positive test example: %g" % model.predict(posTest)print "Prediction for negative test example: %g" % model.predict(negTest) 

转载于:https://my.oschina.net/taogang/blog/652287

你可能感兴趣的文章
spring-data-elasticsearch 概述及入门(二)
查看>>
1.12 xshell密钥认证
查看>>
3.2 用户组管理
查看>>
ibatis 动态查询
查看>>
汇编语言之实验一
查看>>
git 调用 Beyond Compare
查看>>
SQL基础-->层次化查询(START BY ... CONNECT BY PRIOR)[转]
查看>>
android实现图片识别的几种方法
查看>>
mvc学习地址
查看>>
masonry 基本用法
查看>>
Word产品需求文档,已经过时了【转】
查看>>
dtoj#4299. 图(graph)
查看>>
关于网站的一些js和css常见问题的记录
查看>>
zabbix-3.4 触发器
查看>>
换用代理IP的Webbrowser方法
查看>>
【视频编解码·学习笔记】7. 熵编码算法:基础知识 & 哈夫曼编码
查看>>
spark集群安装部署
查看>>
MySql 查询表字段数
查看>>
mariadb 内存占用优化
查看>>
Centos7安装编译安装zabbix2.219及mariadb-5.5.46
查看>>