Optimizing Message Passing in Graph Processing

machine learning in graphs 2010 n.w
1 / 9
Embed
Share

Explore valuable insights on optimizing message passing in graph processing, including leveraging combiners for efficiency, handling large hash tables, custom partitioning for locality, and separating graph structure from weight computations to enhance performance. Dive into strategies like Schimmy pattern for effective graph processing in Hadoop environments.

  • Graph Processing
  • Optimization
  • Combiners
  • Locality
  • Hadoop

Uploaded on | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.

E N D

Presentation Transcript


  1. Machine Learning in Graphs - 2010

  2. Some ideas Combiners are helpful Store outgoing incrementVBy messages and aggregate them This is great for high indegree pages Hadoop s combiners are suboptimal Messages get emitted before being combined Hadoop makes weak guarantees about combiner usage

  3. Id think you want to spill the hash table to memory when it gets large

  4. Some ideas Most hyperlinks are within a domain If we keep domains on the same machine this will mean more messages are local To do this, build a custom partitioner that knows about the domain of each nodeId and keeps nodes on the same domain together Assign node id s so that nodes in the same domain are together partition node ids by range Change Hadoop s Partitioner for this

  5. Some ideas Repeatedly shuffling the graph is expensive We should separate the messages about the graph structure (fixed over time) from messages about pageRank weights (variable) compute and distribute the edges once read them in incrementally in the reducer not easy to do in Hadoop! call this the Schimmy pattern

  6. Schimmy Relies on fact that keys are sorted, and sorts the graph input the same way ..

  7. Schimmy

  8. Results

Related


More Related Content