Spark之spark shell


前言:要學習spark程序開發,建議先學習spark-shell交互式學習,加深對spark程序開發的理解。spark-shell提供了一種學習API的簡單方式,以及一個能夠進行交互式分析數據的強大工具,可以使用scala編寫(scala運行與Java虛擬機可以使用現有的Java庫)或使用Python編寫。

1.啟動spark-shell

    spark-shell的本質是在后台調用了spark-submit腳本來啟動應用程序的,在spark-shell中已經創建了一個名為sc的SparkContext對象,在4個CPU核運行spark-shell命令如下:

spark-shell --master local[4]

    如果指定Jar包路徑,則命令如下:

spark-shell --master local[4] --jars xxx.jar,yyy,jar

    --master用來設置context將要連接並使用的資源主節點,master的值是standalone模式中spark的集群地址、yarn或mesos集群的URL,或是一個local地址

    --jars可以添加需要用到的jar包,通過逗號分隔來添加多個包。

2.加載text文件

    spark創建sc后,可以加載本地文件創建RDD,這里測試是加載spark自帶的本地文件README.md,返回一個MapPartitionsRDD文件。

scala> val textFile = sc.textFile("file:///opt/cloud/spark-2.1.1-bin-hadoop2.7/README.md");
textFile: org.apache.spark.rdd.RDD[String] = file:///opt/cloud/spark-2.1.1-bin-hadoop2.7/README.md MapPartitionsRDD[9] at textFile at <console>:24

    加載HDFS文件和本地文件都是使用textFile,區別是添加前綴(hdfs://和file://)進行標識,從本地讀取文件直接返回MapPartitionsRDD,而從HDFS讀取的文件是先轉成HadoopRDD,然后隱試轉換成MapPartitionsRDD。想了解MapPartitions可以看這篇MapPartition和Map的區別

3.簡單RDD操作

    對於RDD可以執行Transformation返回新的RDD,也可以執行Action得到返回結果。first命令返回文件第一行,count命令返回文件所有行數。

scala> textFile.first();
res6: String = # Apache Spark

scala> textFile.count();
res7: Long = 104

 接下來進行transformation操作,使用filter命令從README.md文件中抽取出一個子集,返回一個新的FilteredRDD。

scala> val textFilter = textFile.filter(line=>line.contains("Spark"));
textFilter: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[16] at filter at <console>:26

 鏈接多個Transformation和Action,計算包括"Spark"字符串的行數。

scala> textFile.filter(line=>line.contains("Spark")).count();
res10: Long = 20

4.RDD應用的簡單操作

 (1)計算文本中單詞最多的一行的單詞數

scala> textFile.map(line =>line.split(" ").size).reduce((a,b) => if (a > b) a else b);
res11: Int = 22

 先將每一行的單詞使用空格進行拆分,並統計每一行的單詞數,創建一個基於單詞數的新RDD,然后對該RDD進行Reduce操作返回最大值。

 (2)統計單詞

 詞頻統計WordCount是大數據處理最流行的入門程序之一,Spark可以很容易實現WordCount操作。

//這個過程返回的是一個(string,int)類型的鍵值對ShuffledRDD(y執行reduceByKey的時候需要進行Shuffle操作,返回的是一個Shuffle形式的RDD),最后用Collect聚合統計結果
scala> val wordCount = textFile.flatMap(line =>line.split(" ")).map(x => (x,1)).reduceByKey((a,b) => a+b); wordCount: org.apache.spark.rdd.RDD[(String, Int)] = ShuffledRDD[23] at reduceByKey at <console>:26 scala> wordCount.collect [Stage 7:> (0 + 0)
[Stage 7:> (0 + 2)
res12: Array[(String, Int)] = Array((package,1), (this,1), (Version"](http://spark.apache.org/docs/latest/building-spark.html#specifying-the-hadoop-version),1), (Because,1), (Python,2), (page](http://spark.apache.org/documentation.html).,1), (cluster.,1), (its,1), ([run,1), (general,3), (have,1), (pre-built,1), (YARN,,1), ([http://spark.apache.org/developer-tools.html](the,1), (changed,1), (locally,2), (sc.parallelize(1,1), (only,1), (locally.,1), (several,1), (This,2), (basic,1), (Configuration,1), (learning,,1), (documentation,3), (first,1), (graph,1), (Hive,2), (info,1), (["Specifying,1), ("yarn",1), ([params]`.,1), ([project,1), (prefer,1), (SparkPi,2), (<http://spark.apache.org/>,1), (engine,1), (version,1), (file,1), (documentation,,1), (MASTER,1), (example,3), (["Parallel,1), (ar...
//這里使用了占位符_,使表達式更為簡潔,是Scala語音的特色,每個_代表一個參數。
scala> val wordCount2 = textFile.flatMap(_.split(" ")).map((_,1)).reduceByKey(_+_); wordCount2: org.apache.spark.rdd.RDD[(String, Int)] = ShuffledRDD[26] at reduceByKey at <console>:26 scala> wordCount2.collect res14: Array[(String, Int)] = Array((package,1), (this,1), (Version"](http://spark.apache.org/docs/latest/building-spark.html#specifying-the-hadoop-version),1), (Because,1), (Python,2), (page](http://spark.apache.org/documentation.html).,1), (cluster.,1), (its,1), ([run,1), (general,3), (have,1), (pre-built,1), (YARN,,1), ([http://spark.apache.org/developer-tools.html](the,1), (changed,1), (locally,2), (sc.parallelize(1,1), (only,1), (locally.,1), (several,1), (This,2), (basic,1), (Configuration,1), (learning,,1), (documentation,3), (first,1), (graph,1), (Hive,2), (info,1), (["Specifying,1), ("yarn",1), ([params]`.,1), ([project,1), (prefer,1), (SparkPi,2), (<http://spark.apache.org/>,1), (engine,1), (version,1), (file,1), (documentation,,1), (MASTER,1), (example,3), (["Parallel,1), (ar...
//Spark默認不進行排序,如有需要排序輸出,排序的時候將key和value互換,使用sortByKey方法指定升序(true)和降序(false)
scala> val wordCount3 = textFile.flatMap(_.split(" ")).map((_,1)).reduceByKey(_+_).map(x=>(x._2,x._1)).sortByKey(false).map(x=>(x._2,x._1)); wordCount3: org.apache.spark.rdd.RDD[(String, Int)] = MapPartitionsRDD[34] at map at <console>:26 scala> wordCount3.collect res15: Array[(String, Int)] = Array(("",71), (the,24), (to,17), (Spark,16), (for,12), (##,9), (and,9), (a,8), (can,7), (run,7), (on,7), (is,6), (in,6), (using,5), (of,5), (build,4), (Please,4), (with,4), (also,4), (if,4), (including,4), (an,4), (You,4), (you,4), (general,3), (documentation,3), (example,3), (how,3), (one,3), (For,3), (use,3), (or,3), (see,3), (Hadoop,3), (Python,2), (locally,2), (This,2), (Hive,2), (SparkPi,2), (refer,2), (Interactive,2), (Scala,2), (detailed,2), (return,2), (Shell,2), (class,2), (Python,,2), (set,2), (building,2), (SQL,2), (guidance,2), (cluster,2), (shell:,2), (supports,2), (particular,2), (following,2), (which,2), (should,2), (To,2), (be,2), (do,2), (./bin/run-example,2), (It,2), (1000:,2), (tests,2), (examples,2), (at,2), (`examples`,2), (that,2), (H...

5.RDD緩存使用RDD的cache()方法

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM