The examples in this repository are support to the Spark in Action, 2nd edition book by Jean-Georges Perrin and published by Manning. Find out more about the book on Manning's website.
Chapter 13 introduces transforming entire documents.
This code is designed to work with Apache Spark v3.0.0.
Datasets can be downloaded from:
- ... (to be added)
Each chapter has one or more labs. Labs are examples used for teaching in the book. You are encouraged to take ownership of the code and modify it, experiment with it, hence the use of the term lab. This chapter has only one lab.
The JsonShipmentDisplayApp
application does the following:
- It acquires a session (a
SparkSession
). - It asks Spark to load (ingest) a dataset in JSON format.
- Spark stores the contents in a dataframe, then process of invoices formatted using the schema.org format.
For information on running the Java lab, see chapter 1 in Spark in Action, 2nd edition.
Prerequisites:
You will need:
git
.- Apache Spark (please refer Appendix P - 'Spark in production: installation and a few tips').
-
Clone this project
git clone https://github.com/jgperrin/net.jgp.books.spark.ch13
-
Go to the lab in the Python directory
cd net.jgp.books.spark.ch13/src/main/python/lab100_json_shipment/
-
Execute the following spark-submit command to create a jar file to our this application
spark-submit jsonShipmentDisplayApp.py
Prerequisites:
You will need:
git
.- Apache Spark (please refer Appendix K - 'Spark in production: installation and a few tips').
-
Clone this project
git clone https://github.com/jgperrin/net.jgp.books.spark.ch13
-
Change to the right directory
cd net.jgp.books.spark.ch13
-
Package application using sbt command
sbt clean assembly
-
Run Spark/Scala application using spark-submit command as shown below:
spark-submit --class net.jgp.books.spark.ch13.lab100_json_shipment.JsonShipmentDisplayScalaApp target/scala-2.12/SparkInAction2-Chapter13-assembly-1.0.0.jar
- [2020-06-13] Updated the
pom.xml
to support Apache Spark v3.1.2. - [2020-06-13] As we celebrate the first anniversary of Spark in Action, 2nd edition is the best-rated Apache Spark book on Amazon.
- [Java] Due to renaming the packages to match more closely Java standards, this project is not in sync with the book's MEAP prior to v10 (published in April 2019).
- [Scala, Python] As of MEAP v14, we have introduced Scala and Python examples (published in October 2019).
- The master branch contains the last version of the code running against the latest supported version of Apache Spark. Look in specifics branches for specific versions.
Follow me on Twitter to get updates about the book and Apache Spark: @jgperrin. Join the book's community on Facebook or in Manning's community site.