Oreilly - Spark in Action Video Edition - 9781617292606VE
Oreilly - Spark in Action Video Edition
by Petar Zečević, Marko Bonaći | Released November 2016 | ISBN: None


"Dig in and get your hands dirty with one of the hottest data processing engines today. A great guide." Jonathan Sharley, Pandora Media Spark in Action teaches you the theory and skills you need to effectively handle batch and streaming data using Spark. You'll get comfortable with the Spark CLI as you work through a few introductory examples. Then, you'll start programming Spark using its core APIs. Along the way, you'll work with structured data using Spark SQL, process near-real-time streaming data, apply machine learning algorithms, and munge graph data using Spark GraphX. For a zero-effort startup, you can download the preconfigured virtual machine ready for you to try the book's code. Big data systems distribute datasets across clusters of machines, making it a challenge to efficiently query, stream, and interpret them. Spark can help. It is a processing system designed specifically for distributed data. It provides easy-to-use interfaces, along with the performance you need for production-quality analytics and machine learning. Spark 2 also adds improved programming APIs, better performance, and countless other upgrades. Inside: Updated for Spark 2.0 Real-life case studies Spark DevOps with Docker Examples in Scala, and online in Java and Python Made for experienced programmers with some background in big data or machine learning. Petar Zečević and Marko Bonaći are seasoned developers heavily involved in the Spark community. Must-have! Speed up your learning of Spark as a distributed computing framework. Robert Ormandi, Yahoo! An easy-to-follow, step-by-step guide. Gaurav Bhardwaj, 3Pillar Global An ambitiously comprehensive overview of Spark and its diverse ecosystem. Jonathan Miller, Optensity NARRATED BY KYLE JACKSON AND MARK THOMAS Show and hide more
  1. PART 1: FIRST STEPS
    • Chapter 1. Introduction to Apache Spark 00:08:53
    • Chapter 1. What Spark brings to the table 00:06:52
    • Chapter 1. Spark components 00:06:57
    • Chapter 1. Spark program flow 00:08:57
    • Chapter 1. Setting up the spark-in-action VM 00:06:45
    • Chapter 2. Spark fundamentals 00:07:12
    • Chapter 2. Using the VM’s Hadoop installation 00:05:34
    • Chapter 2. Using Spark shell and writing your first Spark program 00:11:07
    • Chapter 2. Basic RDD actions and transformations 00:05:31
    • Chapter 2. Using the distinct and flatMap transformations 00:09:01
    • Chapter 2. Obtaining RDD’s elements with the sample, take, and takeSample operations 00:05:10
    • Chapter 2. Double RDD functions 00:09:12
    • Chapter 3. Writing Spark applications 00:11:22
    • Chapter 3. Developing the application 00:09:49
    • Chapter 3. Running the application from Eclipse 00:11:05
    • Chapter 3. Broadcast variables 00:06:40
    • Chapter 3. Submitting the application 00:09:06
    • Chapter 3. Using spark-submit 00:05:29
    • Chapter 4. The Spark API in depth 00:05:49
    • Chapter 4. Basic pair RDD functions 00:08:18
    • Chapter 4. Using the flatMapValues transformation to add values to keys 00:08:13
    • Chapter 4. Understanding data partitioning and reducing data shuffling 00:07:52
    • Chapter 4. Understanding and avoiding unnecessary shuffling 00:10:21
    • Chapter 4. Repartitioning RDDs 00:08:15
    • Chapter 4. Joining, sorting, and grouping data 00:11:24
    • Chapter 4. Joining data 00:07:06
    • Chapter 4. Sorting data 00:10:05
    • Chapter 4. Grouping data 00:07:41
    • Chapter 4. Understanding RDD dependencies 00:09:47
    • Chapter 4. Using accumulators and broadcast variables to communicate with Spark executors 00:07:22
    • Chapter 4. Sending data to executors using broadcast variables 00:06:38
  2. PART 2: MEET THE SPARK FAMILY
    • Chapter 5. Sparkling queries with Spark SQL 00:09:58
    • Chapter 5. Creating DataFrames from RDDs 00:07:47
    • Chapter 5. Creating a DataFrame from an RDD of tuples 00:08:10
    • Chapter 5. DataFrame API basics 00:08:01
    • Chapter 5. Using SQL functions to perform calculations on data 00:11:14
    • Chapter 5. Working with missing values 00:05:43
    • Chapter 5. Grouping and joining data 00:10:18
    • Chapter 5. Beyond DataFrames: introducing DataSets 00:05:20
    • Chapter 5. Table catalog and Hive metastore 00:06:49
    • Chapter 5. Executing SQL queries 00:08:33
    • Chapter 5. Saving and loading DataFrame data 00:05:21
    • Chapter 5. Saving data 00:10:20
    • Chapter 5. Catalyst optimizer 00:11:29
    • Chapter 6. Ingesting data with Spark Streaming 00:09:33
    • Chapter 6. Creating a discretized stream 00:08:55
    • Chapter 6. Saving the results to a file 00:07:19
    • Chapter 6. Saving the computation state over time 00:08:02
    • Chapter 6. Specifying the checkpointing directory 00:06:18
    • Chapter 6. Using window operations for time-limited calculations 00:06:59
    • Chapter 6. Using external data sources 00:05:52
    • Chapter 6. Changing the streaming application to use Kafka 00:09:19
    • Chapter 6. Performance of Spark Streaming jobs 00:10:29
    • Chapter 6. Structured Streaming 00:11:45
    • Chapter 7. Getting smart with MLlib 00:12:12
    • Chapter 7. Classification of machine-learning algorithms 00:10:27
    • Chapter 7. Linear algebra in Spark 00:10:24
    • Chapter 7. Distributed matrices 00:03:44
    • Chapter 7. Linear regression 00:07:01
    • Chapter 7. Expanding the model to multiple linear regression 00:05:19
    • Chapter 7. Analyzing and preparing the data 00:11:20
    • Chapter 7. Fitting and using a linear regression model 00:07:23
    • Chapter 7. Tweaking the algorithm 00:10:52
    • Chapter 7. Plotting residual plots 00:09:44
    • Chapter 7. Optimizing linear regression 00:10:32
    • Chapter 8. ML: classification and clustering 00:09:42
    • Chapter 8. Logistic regression 00:06:59
    • Chapter 8. Preparing data to use logistic regression in Spark 00:08:58
    • Chapter 8. Training the model 00:12:31
    • Chapter 8. Performing k-fold cross-validation 00:07:51
    • Chapter 8. Decision trees and random forests 00:06:51
    • Chapter 8. Decision trees 00:08:06
    • Chapter 8. Random forests 00:03:49
    • Chapter 8. Using k-means clustering 00:03:59
    • Chapter 8. K-means clustering 00:11:03
    • Chapter 8. Summary 00:03:01
    • Chapter 9. Connecting the dots with GraphX 00:09:55
    • Chapter 9. Transforming graphs 00:10:03
    • Chapter 9. Graph algorithms 00:13:17
    • Chapter 9. Implementing the A* search algorithm 00:04:59
    • Chapter 9. Implementing the A* algorithm 00:11:37
    • Chapter 9. Summary 00:02:47
  3. PART 3: SPARK OPS
    • Chapter 10. Running Spark 00:11:42
    • Chapter 10. Job and resource scheduling 00:10:01
    • Chapter 10. Data-locality considerations 00:06:58
    • Chapter 10. Configuring Spark 00:07:50
    • Chapter 10. Spark web UI 00:06:25
    • Chapter 10. Running Spark on the local machine 00:06:29
    • Chapter 11. Running on a Spark standalone cluster 00:05:35
    • Chapter 11. Starting the standalone cluster 00:06:37
    • Chapter 11. Viewing Spark processes 00:05:45
    • Chapter 11. Standalone cluster web UI 00:08:32
    • Chapter 11. Specifying extra classpath entries and files 00:07:10
    • Chapter 11. Spark History Server and event logging 00:08:17
    • Chapter 11. Creating an EC2 standalone cluster 00:07:23
    • Chapter 11. Using the EC2 cluster 00:07:31
    • Chapter 12. Running on YARN and Mesos 00:09:10
    • Chapter 12. Resource scheduling in YARN 00:06:59
    • Chapter 12. Configuring Spark on YARN 00:05:07
    • Chapter 12. Configuring resources for Spark jobs 00:08:16
    • Chapter 12. Finding logs on YARN 00:09:44
    • Chapter 12. Running Spark on Mesos 00:09:44
    • Chapter 12. Installing and configuring Mesos 00:04:52
    • Chapter 12. Mesos resource scheduling 00:09:13
    • Chapter 12. Running Spark with Docker 00:10:52
  4. PART 4: BRINGING IT TOGETHER
    • Chapter 13. Case study: real-time dashboard 00:06:30
    • Chapter 13. Running the application 00:08:59
    • Chapter 13. Starting the application manually 00:04:23
    • Chapter 13. Understanding the source code 00:09:25
    • Chapter 13. The StreamingLogAnalyzer project 00:08:52
    • Chapter 14. Deep learning on Spark with H2O 00:07:01
    • Chapter 14. Using H2O with Spark 00:11:47
    • Chapter 14. Performing regression with H2O’s deep learning 00:11:11
    • Chapter 14. Building and evaluating a deep-learning model using the Sparkling Water API 00:04:41
    • Chapter 14. Performing classification with H2O’s deep learning 00:10:06
  5. Show and hide more

    Oreilly - Spark in Action Video Edition

    9781617292606VE.Spark.in.Action.Video.Edition.part1.OR.rar

    9781617292606VE.Spark.in.Action.Video.Edition.part2.OR.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss