cs 744 powergraph
play

CS 744: Powergraph Shivaram Venkataraman Fall 2019 ADMINISTRIVIA - PowerPoint PPT Presentation

CS 744: Powergraph Shivaram Venkataraman Fall 2019 ADMINISTRIVIA - Midterm grades (end of) this week - Course Projects sign up for meetings - Google Cloud credits Applications Machine Learning SQL Streaming Graph Computational


  1. CS 744: Powergraph Shivaram Venkataraman Fall 2019

  2. ADMINISTRIVIA - Midterm grades (end of) this week - Course Projects sign up for meetings - Google Cloud credits

  3. Applications Machine Learning SQL Streaming Graph Computational Engines Scalable Storage Systems Resource Management Datacenter Architecture

  4. GRAPH DATA Datasets Application

  5. GRAPH ANALYTICS Perform computations on graph-structured data Examples PageRank Shortest path Connected components …

  6. PREGEL: PROGRAMMING MODEL Message combiner(Message m1, Message m2): return Message(m1.value() + m2.value()); void PregelPageRank(Message msg): float total = msg.value(); vertex.val = 0.15 + 0.85*total; foreach(nbr in out_neighbors): SendMsg(nbr, vertex.val/num_out_nbrs);

  7. NATURAL GRAPHS

  8. POWERGRAPH Programming Model: Gather-Apply-Scatter Better Graph Partitioning with vertex cuts Distributed execution (Sync, Async)

  9. GATHER-APPLY-SCATTER // gather_nbrs: IN_NBRS Gather: Accumulate info from nbrs gather(Du, D(u,v), Dv): return Dv.rank / #outNbrs(v) Apply: Accumulated value to vertex sum(a, b): return a+b apply(Du, acc): Scatter: Update adjacent edges, vertices rnew = 0.15 + 0.85 * acc Du.delta = (rnew - Du.rank)/ #outNbrs(u) Du.rank = rnew // scatter_nbrs: OUT_NBRS scatter(Du,D(u,v),Dv): if(|Du.delta|> ε) Activate(v) return delta

  10. EXECUTION MODEL, CACHING Active Queue Delta caching Cache accumulator value for vertex Optionally scatter returns a delta Accumulate deltas

  11. SYNC VS ASYNC Sync Execution Async Execution Gather for all active vertices, Execute active vertices, followed by Apply, Scatter as cores become available Barrier after each minor-step No Barriers! Optionally serializable

  12. DISTRIBUTED EXECUTION Symmetric system, no coordinator Load graph into each machine Communicate across machines to spread updates, read state

  13. GRAPH PARTITIONING

  14. RANDOM, GREEDY OBLIVIOUS Three distributed approaches: Random Placement Coordinated Greedy Placement Oblivious Greedy Placement

  15. OTHER FEATURES Async Serializable engine Preventing adjacent vertex from running simultaneously Acquire locks for all adjacent vertices Fault Tolerance Checkpoint at the end of super-step for sync For Async?

  16. DISCUSSION https://forms.gle/t2TJ4sEFDNZ8aDBo7

  17. Consider the PageRank implementation in Spark vs synchronous PageRank in PowerGraph. What are some reasons why PowerGraph might be faster?

  18. What could be one shortcoming of PowerGraph compared to prior systems like MapReduce or Spark?

  19. NEXT STEPS Next class: GraphX Sign up for project check-ins!

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