Oreilly - Learn By Example: Hadoop, MapReduce for Big Data problems - 9781788994491
Oreilly - Learn By Example: Hadoop, MapReduce for Big Data problems
by Loonycorn | Released January 2018 | ISBN: 9781788994491


A hands-on workout in Hadoop, MapReduce and the art of thinking "parallel"About This VideoRecommend friends in a Social Networking site: Generate Top 10 friend recommendations using a Collaborative filtering algorithm.Build an Inverted Index for Search Engines: Use MapReduce to parallelize the humongous task of building an inverted index for a search engine.Generate Bigrams from text: Generate bigrams and compute their frequency distribution in a corpus of text.Build your Hadoop cluster:Install Hadoop in Standalone, Pseudo-Distributed and Fully Distributed modesSet up a Hadoop cluster using Linux VMs.Set up a cloud Hadoop cluster on AWS with Cloudera Manager.Understand HDFS, MapReduce and YARN and their interactionCustomize your MapReduce Jobs:Chain multiple MR jobs togetherWrite your own Customized PartitionerTotal Sort : Globally sort a large amount of data by sampling input files Secondary sortingUnit tests with MR UnitIntegrate with Python using the Hadoop Streaming API .. and of course all the basics:MapReduce : Mapper, Reducer, Sort/Merge, Partitioning, Shuffle and SortHDFS & YARN: Namenode, Datanode, Resource manager, Node manager, the anatomy of a MapReduce application, YARN Scheduling, Configuring HDFS and YARN to performance tune your cluster.In DetailThis course is a zoom-in, zoom-out, hands-on workout involving Hadoop, MapReduce and the art of thinking parallel. This course is both broad and deep. It covers the individual components of Hadoop in great detail and also gives you a higher level picture of how they interact with each other. It's a hands-on workout involving Hadoop, MapReduce. This course will get you hands-on with Hadoop very early on. You'll learn how to set up your own cluster using both VMs and the Cloud. All the major features of MapReduce are covered, including advanced topics like Total Sort and Secondary Sort. MapReduce completely changed the way people thought about processing Big Data. Breaking down any problem into parallelizable units is an art. The examples in this course will train you to think in parallel. Show and hide more Publisher Resources Download Example Code
  1. Chapter 1 : Introduction
    • You, this course and Us 00:01:53
  2. Chapter 2 : Why is Big Data a Big Deal
    • The Big Data Paradigm 00:14:21
    • Serial vs Distributed Computing 00:08:37
    • What is Hadoop? 00:07:25
    • HDFS or the Hadoop Distributed File System 00:11:01
    • MapReduce Introduced 00:11:39
    • YARN or Yet Another Resource Negotiator 00:04:01
  3. Chapter 3 : Installing Hadoop in a Local Environment
    • Hadoop Install Modes 00:08:33
    • Hadoop Standalone mode Install 00:15:47
    • Hadoop Pseudo-Distributed mode Install 00:11:45
  4. Chapter 4 : The MapReduce "Hello World"
    • The basic philosophy underlying MapReduce 00:08:50
    • MapReduce - Visualized And Explained 00:09:04
    • MapReduce - Digging a little deeper at every step 00:10:21
    • "Hello World" in MapReduce 00:10:30
    • The Mapper 00:09:48
    • The Reducer 00:07:47
    • The Job 00:12:28
  5. Chapter 5 : Run a MapReduce Job
    • Get comfortable with HDFS 00:10:59
    • Run your first MapReduce Job 00:14:30
  6. Chapter 6 : Juicing your MapReduce - Combiners, Shuffle and Sort and The Streaming API
    • Parallelize the reduce phase - use the Combiner 00:14:40
    • Not all Reducers are Combiners 00:14:31
    • How many mappers and reducers does your MapReduce have? 00:08:24
    • Parallelizing reduce using Shuffle And Sort 00:14:55
    • MapReduce is not limited to the Java language - Introducing the Streaming API 00:05:06
    • Python for MapReduce 00:12:19
  7. Chapter 7 : HDFS and Yarn
    • HDFS - Protecting against data loss using replication 00:15:39
    • HDFS - Name nodes and why they're critical 00:06:54
    • HDFS - Checkpointing to backup name node information 00:11:16
    • Yarn - Basic component 00:08:40
    • Yarn - Submitting a job to Yarn 00:13:16
    • Yarn - Plug in scheduling policies 00:14:27
    • Yarn - Configure the scheduler 00:12:33
  8. Chapter 8 : MapReduce Customizations For Finer Grained Control
    • Setting up your MapReduce to accept command line arguments 00:13:48
    • The Tool, ToolRunner and GenericOptionsParser 00:12:36
    • Configuring properties of the Job object 00:10:41
    • Customizing the Partitioner, Sort Comparator, and Group Comparator 00:15:17
  9. Chapter 9 : The Inverted Index, Custom Data Types for Keys, Bigram Counts and Unit Tests!
    • The heart of search engines - The Inverted Index 00:14:47
    • Generating the inverted index using MapReduce 00:10:32
    • Custom data types for keys - The Writable Interface 00:10:30
    • Represent a Bigram using a WritableComparable 00:13:20
    • MapReduce to count the Bigrams in input text 00:08:33
    • Test your MapReduce job using MRUnit 00:13:48
  10. Chapter 10 : Input and Output Formats and Customized Partitioning
    • Introducing the File Input Format 00:12:49
    • Text And Sequence File Formats 00:10:22
    • Data partitioning using a custom partitioner 00:07:11
    • Make the custom partitioner real in code 00:10:25
    • Total Order Partitioning 00:10:11
    • Input Sampling, Distribution, Partitioning and configuring these 00:09:05
    • Secondary Sort 00:14:34
  11. Chapter 11 : Recommendation Systems using Collaborative Filtering
    • Introduction to Collaborative Filtering 00:07:25
    • Friend recommendations using chained MR jobs 00:17:16
    • Get common friends for every pair of users - the first MapReduce 00:14:50
    • Top 10 friend recommendation for every user - the second MapReduce 00:13:46
  12. Chapter 12 : Hadoop as a Database
    • Structured data in Hadoop 00:14:09
    • Running an SQL Select with MapReduce 00:15:31
    • Running an SQL Group By with MapReduce 00:14:02
    • A MapReduce Join - The Map Side 00:14:20
    • A MapReduce Join - The Reduce Side 00:13:08
    • A MapReduce Join - Sorting and Partitioning 00:08:50
    • A MapReduce Join - Putting it all together 00:13:46
  13. Chapter 13 : K-Means Clustering
    • What is K-Means Clustering? 00:14:04
    • A MapReduce job for K-Means Clustering 00:16:34
    • K-Means Clustering - Measuring the distance between points 00:13:52
    • K-Means Clustering - Custom Writables for Input/Output 00:08:27
    • K-Means Clustering - Configuring the Job 00:10:50
    • K-Means Clustering - The Mapper and Reducer 00:11:23
    • K-Means Clustering: The Iterative MapReduce Job 00:03:40
  14. Chapter 14 : Setting up a Hadoop Cluster
    • Manually configuring a Hadoop cluster (Linux VMs) 00:13:51
    • Getting started with Amazon Web Servicies 00:06:26
    • Start a Hadoop Cluster with Cloudera Manager on AWS 00:13:05
  15. Chapter 15 : Appendix
    • Setup a Virtual Linux Instance (For Windows users) 00:15:59
    • [For Linux/Mac OS Shell Newbies] Path and other Environment Variables 00:08:26
  16. Show and hide more

    Oreilly - Learn By Example: Hadoop, MapReduce for Big Data problems

    9781788994491.Learn.By.Example.Hadoop.MapReduce.for.Big.Data.problems.part1.OR.rar

    9781788994491.Learn.By.Example.Hadoop.MapReduce.for.Big.Data.problems.part2.OR.rar

    9781788994491.Learn.By.Example.Hadoop.MapReduce.for.Big.Data.problems.part3.OR.rar

    9781788994491.Learn.By.Example.Hadoop.MapReduce.for.Big.Data.problems.part4.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