Python Spark Shell – PySpark - Tutorial Kart

[Pages:6]Python Spark Shell ? PySpark

Spark Shell is an interactive shell through which we can access Spark's API. Spark provides the shell in two programming languages : Scala and Python. In this tutorial, we shall learn the usage of Python Spark Shell with a basic word count example.

Python Spark Shell

Prerequisites

Prerequisite is that Apache Spark is already installed on your local machine. If not, please refer Install Spark on Ubuntu or Install Spark on MacOS based on your Operating System.

Start Spark Interactive Python Shell

Python Spark Shell can be started through command line. To start pyspark, open a terminal window and run the following command:

~$ pyspark

For the word-count example, we shall start with option?master local[4] meaning the spark context of this spark shell acts as a master on local node with 4 threads.

~$ pyspark --master local[4]

If you accidentally started spark shell without options, you may kill the shell instance.

~$ pyspark --master local[4]

Python 2.7.12 (default, Nov 19 2016, 06:48:10)

[GCC 5.4.0 20160609] on linux2

Type "help", "copyright", "credits" or "license" for more information.

Using Spark's default log4j profile: org/apache/spark/log4j-defaults.properties

Setting default log level to "WARN".

To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use setLogLevel(newLevel).

17/11/13 12:10:21 WARN NativeCodeLoader: Unable to load native-hadoop library for your platform...

17/11/13 12:10:22 WARN Utils: Your hostname, tutorialkart resolves to a loopback address: 127.0.0.1

17/11/13 12:10:22 WARN Utils: Set SPARK_LOCAL_IP if you need to bind to another address

17/11/13 12:10:40 WARN ObjectStore: Failed to get database global_temp, returning NoSuchObjectExcep

Welcome to

____

__

____

__

/ __/__ ___ _____/ /__

_\ \/ _ \/ _ `/ __/ '_/

/__ / .__/\_,_/_/ /_/\_\

/_/

version 2.2.0

Using Python version 2.7.12 (default, Nov 19 2016 06:48:10) SparkSession available as 'spark'. >>>

Spark context Web UI would be available at [The default port is 4040]. Open a browser and hit the url .

Spark context : You can access the spark context in the shell as variable named sc .

Spark session : You can access the spark session in the shell as variable named spark .

Word-Count Example with PySpark

We shall use the following Python statements in PySpark Shell in the respective order.

input_file = sc.textFile("/path/to/text/file") map = input_file.flatMap(lambda line: line.split(" ")).map(lambda word: (word, 1)) counts = map.reduceByKey(lambda a, b: a + b) counts.saveAsTextFile("/path/to/output/")

Input

In this step, using Spark context variable, sc, we read a text file.

input_file = sc.textFile("/path/to/text/file")

Map

We can split each line of input using space " " as separator.

flatMap(lambda line: line.split(" "))

and we map each word to a tuple (word, 1), 1 being the number of occurrences of word.

map(lambda word: (word, 1))

We use the tuple (word,1) as (key, value) in reduce stage.

Reduce

Reduce all the words based on Key. Here a, b are values and for the same key, values are reduced to a+b .

counts = map.reduceByKey(lambda a, b: a + b)

Save counts to local file

At the end, counts could be saved to a local file.

counts.saveAsTextFile("/path/to/output/")

When all the commands are run in Terminal, following would be the output :

>>> input_file = sc.textFile("/home/arjun/data.txt") >>> map = input_file.flatMap(lambda line: line.split(" ")).map(lambda word: (word, 1)) >>> counts = map.reduceByKey(lambda a, b: a + b) >>> counts.saveAsTextFile("/home/arjun/output/") >>> Output can be verified by checking the save location.

/home/arjun/output$ls part-00000 part-00001 _SUCCESS

Sample of the contents of output file, part-00000, is shown below : /home/arjun/output$cat part-00000 (branches,1) (sent,1) (mining,1) (tasks,4)

We have successfully counted unique words in a file with the help of Python Spark Shell ? PySpark. You can use Spark Context Web UI to check the details of the Job (Word Count) we have just run.

Navigate through other tabs to get an idea of Spark Web UI and the details about the Word Count Job.

Conclusion

In this Apache Spark Tutorial, we have learnt the usage of Spark Shell using Python programming language with the help of Word Count Example.

Learn Apache Spark Apache Spark Tutorial Install Spark on Ubuntu

Install Spark on Ubuntu Install Spark on Mac OS Scala Spark Shell - Example Python Spark Shell - PySpark Setup Java Project with Spark Spark Scala Application - WordCount Example Spark Python Application Spark DAG & Physical Execution Plan Setup Spark Cluster Configure Spark Ecosystem Configure Spark Application Spark Cluster Managers

Spark RDD Spark RDD Spark RDD - Print Contents of RDD Spark RDD - foreach Spark RDD - Create RDD Spark Parallelize Spark RDD - Read Text File to RDD Spark RDD - Read Multiple Text Files to Single RDD Spark RDD - Read JSON File to RDD Spark RDD - Containing Custom Class Objects Spark RDD - Map Spark RDD - FlatMap Spark RDD - Filter Spark RDD - Distinct Spark RDD - Reduce

Spark Dataseet Spark - Read JSON file to Dataset Spark - Write Dataset to JSON file Spark - Add new Column to Dataset Spark - Concatenate Datasets

Spark - Concatenate Datasets

Spark MLlib (Machine Learning Library) Spark MLlib Tutorial KMeans Clustering & Classification Decision Tree Classification Random Forest Classification Naive Bayes Classification Logistic Regression Classification Topic Modelling

Spark SQL Spark SQL Tutorial Spark SQL - Load JSON file and execute SQL Query

Spark Others Spark Interview Questions

................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download