Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Spark Cookbook
  • Table Of Contents Toc
Spark Cookbook

Spark Cookbook

By : Yadav
4.4 (18)
close
close
Spark Cookbook

Spark Cookbook

4.4 (18)
By: Yadav

Overview of this book

If you are a data engineer, an application developer, or a data scientist who would like to leverage the power of Apache Spark to get better insights from big data, then this is the book for you.
Table of Contents (14 chapters)
close
close
13
Index

Programmatically specifying the schema


There are few cases where case classes might not work; one of these cases is that the case classes cannot take more than 22 fields. Another case can be that you do not know about schema beforehand. In this approach, the data is loaded as an RDD of the Row objects. Schema is created separately using the StructType and StructField objects, which represent a table and a field respectively. Schema is applied to the Row RDD to create a DataFrame.

How to do it...

  1. Start the Spark shell and give it some extra memory:

    $ spark-shell --driver-memory 1G
    
  2. Import for the implicit conversion:

    scala> import sqlContext.implicit._
    
  3. Import the Spark SQL datatypes and Row objects:

    scala> import org.apache.spark.sql._
    scala> import org.apache.spark.sql.types._
    
  4. In another shell, create some sample data to be put in HDFS:

    $ mkdir person
    $ echo "Barack,Obama,53" >> person/person.txt
    $ echo "George,Bush,68" >> person/person.txt
    $ echo "Bill,Clinton,68" &gt...
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Spark Cookbook
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon