Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 465 Bytes

File metadata and controls

15 lines (14 loc) · 465 Bytes

Lesson 5: MapReduce

  • Only suitable for reaaaaally big data
    • All the books ever written
  • Process
    1. Mapper emits key-value pairs to standard out
    2. Data is shuffled and sent to reducer
    3. Reducer processes the data
  • Map reduce ecosystem
    • Hive
      • Run map-reduce through SQL-like language
    • Pig
      • Write queries in a procedural language
      • "Split your data pipeline" (what?)
      • Can do joins between datasets