Scalable programming with Scala and Spark
Scalable programming with Scala and Spark, available at $19.99, has an average rating of 4.15, with 56 lectures, based on 462 reviews, and has 6193 subscribers.
You will learn about Use Spark for a variety of analytics and Machine Learning tasks Understand functional programming constructs in Scala Implement complex algorithms like PageRank or Music Recommendations Work with a variety of datasets from Airline delays to Twitter, Web graphs, Social networks and Product Ratings Use all the different features and libraries of Spark : RDDs, Dataframes, Spark SQL, MLlib, Spark Streaming and GraphX Write code in Scala REPL environments and build Scala applications with an IDE This course is ideal for individuals who are Yep! Engineers who want to use a distributed computing engine for batch or stream processing or both or Yep! Analysts who want to leverage Spark for analyzing interesting datasets or Yep! Data Scientists who want a single engine for analyzing and modelling data as well as productionizing it. It is particularly useful for Yep! Engineers who want to use a distributed computing engine for batch or stream processing or both or Yep! Analysts who want to leverage Spark for analyzing interesting datasets or Yep! Data Scientists who want a single engine for analyzing and modelling data as well as productionizing it. .
Enroll now: Scalable programming with Scala and Spark
Summary
Title: Scalable programming with Scala and Spark
Price: $19.99
Average Rating: 4.15
Number of Lectures: 56
Number of Published Lectures: 55
Number of Curriculum Items: 56
Number of Published Curriculum Objects: 55
Original Price: $89.99
Quality Status: approved
Status: Live
What You Will Learn
- Use Spark for a variety of analytics and Machine Learning tasks
- Understand functional programming constructs in Scala
- Implement complex algorithms like PageRank or Music Recommendations
- Work with a variety of datasets from Airline delays to Twitter, Web graphs, Social networks and Product Ratings
- Use all the different features and libraries of Spark : RDDs, Dataframes, Spark SQL, MLlib, Spark Streaming and GraphX
- Write code in Scala REPL environments and build Scala applications with an IDE
Who Should Attend
- Yep! Engineers who want to use a distributed computing engine for batch or stream processing or both
- Yep! Analysts who want to leverage Spark for analyzing interesting datasets
- Yep! Data Scientists who want a single engine for analyzing and modelling data as well as productionizing it.
Target Audiences
- Yep! Engineers who want to use a distributed computing engine for batch or stream processing or both
- Yep! Analysts who want to leverage Spark for analyzing interesting datasets
- Yep! Data Scientists who want a single engine for analyzing and modelling data as well as productionizing it.
Taught by a 4 person team including 2 Stanford-educated, ex-Googlers and 2 ex-Flipkart Lead Analysts. This team has decades of practical experience in working with Java and with billions of rows of data.
Get your data to fly using Spark and Scala for analytics, machine learning and data science
Let’s parse that.
What’s Spark?If you are an analyst or a data scientist, you’re used to having multiple systems for working with data. SQL, Python, R, Java, etc. With Spark, you have a single engine where you can explore and play with large amounts of data, run machine learning algorithms and then use the same system to productionize your code.
Scala:Scala is a general purpose programming language – like Java or C++. It’s functional programming nature and the availability of a REPL environment make it particularly suited for a distributed computing framework like Spark.
Analytics:Using Spark and Scala you can analyze and explore your data in an interactive environment with fast feedback. The course will show how to leverage the power of RDDs and Dataframes to manipulate data with ease.
Machine Learning and Data Science :Spark’s core functionality and built-in libraries make it easy to implement complex algorithms like Recommendations with very few lines of code. We’ll cover a variety of datasets and algorithms including PageRank, MapReduce and Graph datasets.
What’s Covered:
Scala Programming Constructs:Classes, Traits, First Class Functions, Closures, Currying, Case Classes
Lot’s of cool stuff ..
- Music Recommendations using Alternating Least Squares and the Audioscrobbler dataset
- Dataframes and Spark SQL to work with Twitter data
- Using the PageRank algorithm with Google web graph dataset
- Using Spark Streaming for stream processing
- Working with graph data using the Marvel Social network dataset
.. and of course all the Spark basic and advanced features:
- Resilient Distributed Datasets, Transformations (map, filter, flatMap), Actions (reduce, aggregate)
- Pair RDDs , reduceByKey, combineByKey
- Broadcast and Accumulator variables
- Spark for MapReduce
- The Java API for Spark
- Spark SQL, Spark Streaming, MLlib and GraphX
Course Curriculum
Chapter 1: You, This Course and Us
Lecture 1: You, This Course and Us
Lecture 2: Course Materials
Lecture 3: Installing Scala and Hello World
Chapter 2: Introduction to Spark
Lecture 1: What does Donald Rumsfeld have to do with data analysis?
Lecture 2: Why is Spark so cool?
Lecture 3: An introduction to RDDs – Resilient Distributed Datasets
Lecture 4: Built-in libraries for Spark
Lecture 5: Installing Spark
Lecture 6: The Spark Shell
Lecture 7: See it in Action : Munging Airlines Data with Spark
Lecture 8: Transformations and Actions
Chapter 3: Resilient Distributed Datasets
Lecture 1: RDD Characteristics: Partitions and Immutability
Lecture 2: RDD Characteristics: Lineage, RDDs know where they came from
Lecture 3: What can you do with RDDs?
Lecture 4: Create your first RDD from a file
Lecture 5: Average distance travelled by a flight using map() and reduce() operations
Lecture 6: Get delayed flights using filter(), cache data using persist()
Lecture 7: Average flight delay in one-step using aggregate()
Lecture 8: Frequency histogram of delays using countByValue()
Chapter 4: Advanced RDDs: Pair Resilient Distributed Datasets
Lecture 1: Special Transformations and Actions
Lecture 2: Average delay per airport, use reduceByKey(), mapValues() and join()
Lecture 3: Average delay per airport in one step using combineByKey()
Lecture 4: Get the top airports by delay using sortBy()
Lecture 5: Lookup airport descriptions using lookup(), collectAsMap(), broadcast()
Chapter 5: Advanced Spark: Accumulators, Spark Submit, MapReduce , Behind The Scenes
Lecture 1: Get information from individual processing nodes using accumulators
Lecture 2: Long running programs using spark-submit
Lecture 3: Spark-Submit with Scala – A demo
Lecture 4: Behind the scenes: What happens when a Spark script runs?
Lecture 5: Running MapReduce operations
Chapter 6: PageRank: Ranking Search Results
Lecture 1: What is PageRank?
Lecture 2: The PageRank algorithm
Lecture 3: Implement PageRank in Spark
Lecture 4: Join optimization in PageRank using Custom Partitioning
Chapter 7: Spark SQL
Lecture 1: Dataframes: RDDs + Tables
Chapter 8: MLlib in Spark: Build a recommendations engine
Lecture 1: Collaborative filtering algorithms
Lecture 2: Latent Factor Analysis with the Alternating Least Squares method
Lecture 3: Music recommendations using the Audioscrobbler dataset
Lecture 4: Implement code in Spark using MLlib
Chapter 9: Spark Streaming
Lecture 1: Introduction to streaming
Lecture 2: Implement stream processing in Spark using Dstreams
Lecture 3: Stateful transformations using sliding windows
Chapter 10: Graph Libraries
Lecture 1: The Marvel social network using Graphs
Chapter 11: Scala Language Primer
Lecture 1: Scala – A "better Java"?
Lecture 2: How do Classes work in Scala?
Lecture 3: Classes in Scala – continued
Lecture 4: Functions are different from Methods
Lecture 5: Collections in Scala
Lecture 6: Map, Flatmap – The Functional way of looping
Lecture 7: First Class Functions revisited
Lecture 8: Partially Applied Functions
Lecture 9: Closures
Lecture 10: Currying
Chapter 12: Supplementary Installs
Lecture 1: Installing Intellij
Lecture 2: Installing Anaconda
Lecture 3: [For Linux/Mac OS Shell Newbies] Path and other Environment Variables
Instructors
-
Loony Corn
An ex-Google, Stanford and Flipkart team
Rating Distribution
- 1 stars: 22 votes
- 2 stars: 12 votes
- 3 stars: 61 votes
- 4 stars: 180 votes
- 5 stars: 187 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024