distributed computing with spark
play

Distributed Computing with Spark Reza Zadeh Thanks to Matei - PowerPoint PPT Presentation

Distributed Computing with Spark Reza Zadeh Thanks to Matei Zaharia Outline Data flow vs. traditional network programming Limitations of MapReduce Spark computing engine Numerical computing on Spark Ongoing work Problem Data


  1. Distributed Computing with Spark Reza Zadeh Thanks ¡to ¡Matei ¡Zaharia ¡

  2. Outline Data flow vs. traditional network programming Limitations of MapReduce Spark computing engine Numerical computing on Spark Ongoing work

  3. Problem Data growing faster than processing speeds Only solution is to parallelize on large clusters » Wide use in both enterprises and web industry How do we program these things?

  4. Traditional Network Programming Message-passing between nodes (e.g. MPI) Very difficult ery difficult to do at scale: » How to split problem across nodes? • Must consider network & data locality » How to deal with failures? (inevitable at scale) » Even worse: stragglers (node not failed, but slow) » Ethernet networking not fast Rarely used in commodity datacenters

  5. Data Flow Models Restrict the programming interface so that the system can do more automatically Express jobs as graphs of high-level operators » System picks how to split each operator into tasks and where to run each task » Run parts twice fault recovery Map Reduce Biggest example: MapReduce Map Reduce Map

  6. MapReduce Numerical Algorithms Matrix-vector multiplication Power iteration (e.g. PageRank) Gradient descent methods Stochastic SVD Tall skinny QR Many others!

  7. Why Use a Data Flow Engine? Ease of programming » High-level functions instead of message passing Wide deployment » More common than MPI, especially “near” data Scalability to very largest clusters » Even HPC world is now concerned about resilience Examples: Pig, Hive, Scalding, Storm

  8. Outline Data flow vs. traditional network programming Limitations of MapReduce Spark computing engine Numerical computing on Spark Ongoing work

  9. Limitations of MapReduce MapReduce is great at one-pass computation, but inefficient for multi-pass algorithms No efficient primitives for data sharing » State between steps goes to distributed file system » Slow due to replication & disk storage

  10. Example: Iterative Apps file system � file system � file system � file system � read write read write . . . . . . iter. 1 iter. 2 Input file system � result 1 query 1 read result 2 query 2 result 3 query 3 Input . . . . . . Commonly spend 90% of time doing I/O

  11. Example: PageRank Repeatedly multiply sparse matrix and vector Requires repeatedly hashing together page adjacency lists and rank vector Same file grouped over and over Neighbors (id, edges) Ranks (id, rank) … iteration 1 iteration 2 iteration 3

  12. Result While MapReduce is simple, it can require asymptotically more communication or I/O

  13. Outline Data flow vs. traditional network programming Limitations of MapReduce Spark computing engine Numerical computing on Spark Ongoing work

  14. Spark Computing Engine Extends MapReduce model with primitives for efficient data sharing » “Resilient distributed datasets” Open source at Apache » Most active community in big data, with 50+ companies contributing Clean APIs in Java, Scala, Python

  15. Resilient Distributed Datasets (RDDs) Collections of objects stored across a cluster User-controlled partitioning & storage (memory, disk, …) Automatically rebuilt on failure Known to be � urls ¡= ¡spark.textFile(“hdfs://...”) ¡ hash-partitioned records ¡= ¡urls.map(lambda ¡s: ¡(s, ¡1)) ¡ counts ¡= ¡records.reduceByKey(lambda ¡a, ¡b: ¡a ¡+ ¡b) ¡ Also known bigCounts ¡= ¡counts.filter(lambda ¡(url, ¡cnt): ¡cnt ¡> ¡10) ¡ ¡ map reduce filter bigCounts.cache() ¡ Input file bigCounts.filter( ¡ ¡ ¡lambda ¡(k,v): ¡“news” ¡in ¡k).count() ¡ bigCounts.join(otherPartitionedRDD) ¡

  16. Key Idea Resilient Distributed Datasets (RDDs) » Collections of objects across a cluster with user controlled partitioning & storage (memory, disk, ...) » Built via parallel transformations (map, filter, …) » Automatically rebuilt on failure

  17. Example: Log Mining Load error messages from a log into memory, then interactively search for various patterns Transformed RDD Cache 1 lines ¡= ¡spark.textFile(“hdfs://...”) ¡ Worker results ¡ errors ¡= ¡lines.filter(lambda ¡s: ¡s.startswith(“ERROR”)) ¡ tasks ¡ messages ¡= ¡errors.map(lambda ¡s: ¡s.split(“\t”)[2]) ¡ Block ¡1 ¡ Driver messages.cache() ¡ Action messages.filter(lambda ¡s: ¡“foo” ¡in ¡s).count() ¡ Cache 2 messages.filter(lambda ¡s: ¡“bar” ¡in ¡s).count() ¡ Worker . ¡. ¡. ¡ Cache 3 Block ¡2 ¡ Worker Result: Result: full-text search of Wikipedia in 0.5 sec (vs 20 s for on-disk data) Block ¡3 ¡

  18. Fault Tolerance RDDs track lineage info to rebuild lost data file.map(lambda ¡rec: ¡(rec.type, ¡1)) ¡ ¡ ¡ ¡ ¡.reduceByKey(lambda ¡x, ¡y: ¡x ¡+ ¡y) ¡ ¡ ¡ ¡ ¡.filter(lambda ¡(type, ¡count): ¡count ¡> ¡10) ¡ map reduce filter Input file

  19. Fault Tolerance RDDs track lineage info to rebuild lost data file.map(lambda ¡rec: ¡(rec.type, ¡1)) ¡ ¡ ¡ ¡ ¡.reduceByKey(lambda ¡x, ¡y: ¡x ¡+ ¡y) ¡ ¡ ¡ ¡ ¡.filter(lambda ¡(type, ¡count): ¡count ¡> ¡10) ¡ map reduce filter Input file

  20. Partitioning RDDs know their partitioning functions file.map(lambda ¡rec: ¡(rec.type, ¡1)) ¡ Known to be � ¡ ¡ ¡ ¡.reduceByKey(lambda ¡x, ¡y: ¡x ¡+ ¡y) ¡ hash-partitioned ¡ ¡ ¡ ¡.filter(lambda ¡(type, ¡count): ¡count ¡> ¡10) ¡ Also known map reduce filter Input file

  21. Outline Data flow vs. traditional network programming Limitations of MapReduce Spark computing engine Numerical computing on Spark Ongoing work

  22. Logistic Regression data ¡= ¡spark.textFile(...).map(readPoint).cache() ¡ ¡ w ¡= ¡numpy.random.rand(D) ¡ ¡ for ¡i ¡ in ¡range(iterations): ¡ ¡ ¡ ¡ ¡gradient ¡= ¡data.map(lambda ¡p: ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡(1 ¡/ ¡(1 ¡+ ¡exp(-­‑p.y ¡* ¡w.dot(p.x)))) ¡* ¡p.y ¡* ¡p.x ¡ ¡ ¡ ¡ ¡).reduce(lambda ¡a, ¡b: ¡a ¡+ ¡b) ¡ ¡ ¡ ¡ ¡w ¡-­‑= ¡gradient ¡ ¡ print ¡“Final ¡w: ¡%s” ¡% ¡w ¡

  23. Logistic Regression Results 4000 3500 110 s / iteration ime (s) Running Time (s) 3000 2500 Running T Hadoop 2000 1500 Spark 1000 500 first iteration 80 s 0 further iterations 1 s 1 5 10 20 30 Number of Iterations Number of Iterations

  24. PageRank Using cache(), keep neighbor lists in RAM Using partitioning, avoid repeated hashing partitionBy Neighbors (id, edges) Ranks (id, rank) … join join join

  25. PageRank Using cache(), keep neighbor lists in RAM Using partitioning, avoid repeated hashing partitionBy Neighbors (id, edges) same � node Ranks (id, rank) … join join join

  26. PageRank Using cache(), keep neighbor lists in RAM Using partitioning, avoid repeated hashing partitionBy Neighbors (id, edges) Ranks (id, rank) … join join join

  27. PageRank Code # ¡RDD ¡of ¡(id, ¡neighbors) ¡pairs ¡ links ¡= ¡spark.textFile(...).map(parsePage) ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡.partitionBy(128).cache() ¡ ¡ ranks ¡= ¡links.mapValues(lambda ¡v: ¡1.0) ¡ ¡# ¡RDD ¡of ¡(id, ¡rank) ¡ ¡ for ¡i ¡ in ¡range(ITERATIONS): ¡ ¡ ¡ ¡ ¡ranks ¡= ¡links.join(ranks).flatMap( ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡lambda ¡(id, ¡(links, ¡rank)): ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡ ¡[(d, ¡rank/links.size) ¡for ¡d ¡in ¡links] ¡ ¡ ¡ ¡ ¡).reduceByKey(lambda ¡a, ¡b: ¡a ¡+ ¡b) ¡

  28. PageRank Results 200 171 ime per iteration (s) Time per iteration (s) Hadoop 150 Basic Spark 100 72 Spark + Controlled 50 Partitioning 23 0

  29. Alternating Least Squares B T = R A 1. Start with random A 1 , B 1 2. Solve for A 2 to minimize ||R – A 2 B 1 T || 3. Solve for B 2 to minimize ||R – A 2 B 2 T || 4. Repeat until convergence

  30. ALS on Spark B T = R A Cache 2 copies of R in memory, one partitioned by rows and one by columns Keep A & B partitioned in corresponding way Operate on blocks to lower communication

  31. ALS Results 5000 4208 4000 ime (s) otal Time (s) Mahout / Hadoop 3000 Spark (Scala) Total T 2000 GraphLab (C++) 1000 481 297 0

  32. Benefit for Users Same engine Same engine performs data extraction, model training and interactive queries Separate engines parse query train DFS DFS DFS DFS DFS DFS … read write read write read write Spark parse query train DFS read DFS

  33. Outline Data flow vs. traditional network programming Limitations of MapReduce Spark computing engine Numerical computing on Spark Ongoing work

  34. Spark Community Most active open source community in big data 200+ 200+ developers, 50+ 50+ companies contributing Contributors in past year 150 100 50 Giraph Storm 0

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend