SlideShare une entreprise Scribd logo
1  sur  31
Télécharger pour lire hors ligne
GraphLab under the hood


               Zuhair Khayyat




12/10/12                             1
GraphLab overview: GraphLab 1.0
●   GraphLab: A New Framework For Parallel
    Machine Learning
           –   high-level abstractions for machine learning
                 problems
           –   Shared-memory multiprocessor
           –   Assume no fault tolerance needed
           –   Concurrent access precessing models with
                sequential-consistency guarantees

12/10/12                                                      2
GraphLab overview: GraphLab 1.0
●   How GraphLab 1.0 works?
           –   Represent the user's data by a directed graph
           –   Each block of data is represented by a vertex
                and a directed edge
           –   Shared data table
           –   User functions:
                   ●   Update: modify the vertex and edges state,
                        read only to shared table
                   ●   Fold: sequential aggregation to a key entry in
12/10/12
                        the shared table, modify vertex data           3
                   ●   Merge: Parallelize Fold function
                   ●   Apply: Finalize the key entry in the shared table
GraphLab overview: GraphLab 1.0




12/10/12                              4
GraphLab overview: Distributed
                  GraphLab 1.0
   ●   Distributed GraphLab: A Framework for
       Machine Learning and Data Mining in the
       Cloud
             –   Fault tolerance using snapshot algorithm
             –   Improved distributed parallel processing
             –   Two stage partitioning:
                     ●   Atoms generated by ParMetis
                     ●   Ghosts generated by the intersection of the
                          atoms
12/10/12
             –   Finalize() function for vertex synchronization5
GraphLab overview: Distributed
                  GraphLab 1.0




12/10/12                                    6
GraphLab overview: Distributed
                  GraphLab 1.0




12/10/12                                      7


            Worker 1               Worker 2
                        GHosts
PowerGraph: Introduction

   ●   GraphLab 2.1
   ●   Problems of highly skewed power-law graphs:
           –   Workload imbalance ==> performance
                degradations
           –   Limiting Scalability
           –   Hard to partition if the graph is too large
           –   Storage
           –   Non-parallel computation
12/10/12                                                     8
PowerGraph: New Abstraction
●   Original Functions:
           –   Update
           –   Finalize
           –   Fold
           –   Merge
           –   Apply: The synchronization apply
●   Introduce GAS model:
           –   Gather: in, out or all neighbors
12/10/12   –   Apply: The GAS model apply         9


           –   Scatter
PowerGraph: Gather




12/10/12                                          10


           Worker 1                    Worker 2
PowerGraph: Apply




12/10/12                                             11


           Worker 1                       Worker 2
PowerGraph: Scatter




12/10/12                                       12


           Worker 1                 Worker 2
PowerGraph: Vertex Cut
                                       A   B   A   H
               A

                           B           A   G   B   C


G                                      B   H   C   D

                   H               C
                                       C   H   C    I


F                                      D   E   D    I
                       I
                                       E   F   E    I


       E                       D       F   H   F   G

    12/10/12                                       13
PowerGraph: Vertex Cut
                                   A       B   C
A              B   A    H
                               D
A              G   B    C                  F   H

B              H   C    D              I


C              H   C    I
                                                   A        H
D              E   D    I
                              A            G
                                                   E        B
E              F   E    I

                              C            D
F              H   F    G                          F        G
    12/10/12                                           14

                              E            I       C        I
PowerGraph: Vertex Cut (Greedy)

A              B   A   H       A       B

A              G   B   C
                               G       H   C
B              H   C   D

C              H   C   I
                           B       C       C        D
D              E   D   I

E              F   E   I   E       H       I        E

F              H   F   G
    12/10/12                                   15
                           F       G
PowerGraph: Experiment




12/10/12                            16
PowerGraph: Experiment




12/10/12                            17
PowerGraph: Discussion
   ●   Isn't it similar to Pregel Mode?
           –   Partially process the vertex if a message exists
   ●   Gather, Apply and Scatter are commutative
       and associative operations. What if the
       computation is not commutative!
           –   Sum up the message values in a specific order
                to get the same floating point rounding error.


12/10/12                                                   18
PowerGraph and Mizan
   ●   In Mizan we use partial replication:

       W0                 W1       W0               W1

           b                        b                          e
                               e


           c    a              f    c      a          a'       f


           d                   g    d                          g

               Compute Phase            Communication Phase
12/10/12                                                      19
GraphChi: Introduction
   ●   Asynchronous Disk-based version of
       GraphLab
   ●   Utilizing parallel sliding window
           –   Very small number of non-sequential accesses
                to the disk
   ●   Support for graph updates
           –   Based on Kineograph, a distributed system for
                processing a continuous in-flow of graph
12/10/12
                updates, while simultaneously running    20
                advanced graph mining algorithms.
GraphChi: Graph Constrains
   ●   Graph does not fit in memory
   ●   A vertex, its edges and values fits in memory




12/10/12                                          21
GraphChi: Disk storage
   ●   Compressed sparse row (CSR):
           –   Compressed adjacency list with indexes of the
                edges.
           –   Fast access to the out-degree vertices.
   ●   Compressed Sparse Column (CSC):
           –   CSR for the transpose graph
           –   Fast access to the in-degree vertices
   ●   Shard: Store the edges' data
12/10/12                                                 22
GraphChi: Loading the graph
   ●   Input graph is split into P disjoint intervals to balance
       edges, each associated with a shard
   ●   A shard contains data of the edges of an interval
   ●   The sub graph is constructed as reading its interval




12/10/12                                                     23
GraphChi: Parallel Sliding Windows
   ●   Each interval is processed in parallel
   ●   P sequential disk access are required to process
       each interval
   ●   The length of intervals vary with graph distribution
   ●   P * P disk access required for one superstep




12/10/12                                                      24
GraphChi: Example

      Executing interval (1,2):




12/10/12                                  25
           (1,2)      (3,4)       (5,6)
GraphChi: Example

      Executing interval (3,4):




12/10/12                                  26
           (1,2)      (3,4)       (5,6)
GraphChi: Example




12/10/12                       27
GraphChi: Evolving Graphs
   ●   Adding an edge is reflected on the intervals and
       shards if read
   ●   Deleting an edge causes that edge to be ignored
   ●   Adding and deleting edges are handled after
       processing the current interval.




12/10/12                                                  28
GraphChi: Preprocessing




12/10/12                             29
Thank you




12/10/12               30
The Blog wants YOU




12/10/12                                  31
           thegraphsblog.wordpress.com/

Contenu connexe

Plus de Zuhair khayyat

Scaling Big Data Cleansing
Scaling Big Data CleansingScaling Big Data Cleansing
Scaling Big Data CleansingZuhair khayyat
 
BigDansing presentation slides for KAUST
BigDansing presentation slides for KAUSTBigDansing presentation slides for KAUST
BigDansing presentation slides for KAUSTZuhair khayyat
 
IEJoin and Big Data Cleansing
IEJoin and Big Data CleansingIEJoin and Big Data Cleansing
IEJoin and Big Data CleansingZuhair khayyat
 
BigDansing presentation slides for SIGMOD 2015
BigDansing presentation slides for SIGMOD 2015BigDansing presentation slides for SIGMOD 2015
BigDansing presentation slides for SIGMOD 2015Zuhair khayyat
 
Presentation on "Mizan: A System for Dynamic Load Balancing in Large-scale Gr...
Presentation on "Mizan: A System for Dynamic Load Balancing in Large-scale Gr...Presentation on "Mizan: A System for Dynamic Load Balancing in Large-scale Gr...
Presentation on "Mizan: A System for Dynamic Load Balancing in Large-scale Gr...Zuhair khayyat
 
Large Graph Processing
Large Graph ProcessingLarge Graph Processing
Large Graph ProcessingZuhair khayyat
 
Mizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Mizan: A System for Dynamic Load Balancing in Large-scale Graph ProcessingMizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Mizan: A System for Dynamic Load Balancing in Large-scale Graph ProcessingZuhair khayyat
 

Plus de Zuhair khayyat (11)

Scaling Big Data Cleansing
Scaling Big Data CleansingScaling Big Data Cleansing
Scaling Big Data Cleansing
 
BigDansing presentation slides for KAUST
BigDansing presentation slides for KAUSTBigDansing presentation slides for KAUST
BigDansing presentation slides for KAUST
 
IEJoin and Big Data Cleansing
IEJoin and Big Data CleansingIEJoin and Big Data Cleansing
IEJoin and Big Data Cleansing
 
BigDansing presentation slides for SIGMOD 2015
BigDansing presentation slides for SIGMOD 2015BigDansing presentation slides for SIGMOD 2015
BigDansing presentation slides for SIGMOD 2015
 
Presentation on "Mizan: A System for Dynamic Load Balancing in Large-scale Gr...
Presentation on "Mizan: A System for Dynamic Load Balancing in Large-scale Gr...Presentation on "Mizan: A System for Dynamic Load Balancing in Large-scale Gr...
Presentation on "Mizan: A System for Dynamic Load Balancing in Large-scale Gr...
 
Large Graph Processing
Large Graph ProcessingLarge Graph Processing
Large Graph Processing
 
Mizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Mizan: A System for Dynamic Load Balancing in Large-scale Graph ProcessingMizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Mizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
 
Google appengine
Google appengineGoogle appengine
Google appengine
 
MapReduce
MapReduceMapReduce
MapReduce
 
Kineograph
KineographKineograph
Kineograph
 
Dynamo db
Dynamo dbDynamo db
Dynamo db
 

Dernier

Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 

Dernier (20)

Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 

Graphlab under the hood

  • 1. GraphLab under the hood Zuhair Khayyat 12/10/12 1
  • 2. GraphLab overview: GraphLab 1.0 ● GraphLab: A New Framework For Parallel Machine Learning – high-level abstractions for machine learning problems – Shared-memory multiprocessor – Assume no fault tolerance needed – Concurrent access precessing models with sequential-consistency guarantees 12/10/12 2
  • 3. GraphLab overview: GraphLab 1.0 ● How GraphLab 1.0 works? – Represent the user's data by a directed graph – Each block of data is represented by a vertex and a directed edge – Shared data table – User functions: ● Update: modify the vertex and edges state, read only to shared table ● Fold: sequential aggregation to a key entry in 12/10/12 the shared table, modify vertex data 3 ● Merge: Parallelize Fold function ● Apply: Finalize the key entry in the shared table
  • 5. GraphLab overview: Distributed GraphLab 1.0 ● Distributed GraphLab: A Framework for Machine Learning and Data Mining in the Cloud – Fault tolerance using snapshot algorithm – Improved distributed parallel processing – Two stage partitioning: ● Atoms generated by ParMetis ● Ghosts generated by the intersection of the atoms 12/10/12 – Finalize() function for vertex synchronization5
  • 6. GraphLab overview: Distributed GraphLab 1.0 12/10/12 6
  • 7. GraphLab overview: Distributed GraphLab 1.0 12/10/12 7 Worker 1 Worker 2 GHosts
  • 8. PowerGraph: Introduction ● GraphLab 2.1 ● Problems of highly skewed power-law graphs: – Workload imbalance ==> performance degradations – Limiting Scalability – Hard to partition if the graph is too large – Storage – Non-parallel computation 12/10/12 8
  • 9. PowerGraph: New Abstraction ● Original Functions: – Update – Finalize – Fold – Merge – Apply: The synchronization apply ● Introduce GAS model: – Gather: in, out or all neighbors 12/10/12 – Apply: The GAS model apply 9 – Scatter
  • 10. PowerGraph: Gather 12/10/12 10 Worker 1 Worker 2
  • 11. PowerGraph: Apply 12/10/12 11 Worker 1 Worker 2
  • 12. PowerGraph: Scatter 12/10/12 12 Worker 1 Worker 2
  • 13. PowerGraph: Vertex Cut A B A H A B A G B C G B H C D H C C H C I F D E D I I E F E I E D F H F G 12/10/12 13
  • 14. PowerGraph: Vertex Cut A B C A B A H D A G B C F H B H C D I C H C I A H D E D I A G E B E F E I C D F H F G F G 12/10/12 14 E I C I
  • 15. PowerGraph: Vertex Cut (Greedy) A B A H A B A G B C G H C B H C D C H C I B C C D D E D I E F E I E H I E F H F G 12/10/12 15 F G
  • 18. PowerGraph: Discussion ● Isn't it similar to Pregel Mode? – Partially process the vertex if a message exists ● Gather, Apply and Scatter are commutative and associative operations. What if the computation is not commutative! – Sum up the message values in a specific order to get the same floating point rounding error. 12/10/12 18
  • 19. PowerGraph and Mizan ● In Mizan we use partial replication: W0 W1 W0 W1 b b e e c a f c a a' f d g d g Compute Phase Communication Phase 12/10/12 19
  • 20. GraphChi: Introduction ● Asynchronous Disk-based version of GraphLab ● Utilizing parallel sliding window – Very small number of non-sequential accesses to the disk ● Support for graph updates – Based on Kineograph, a distributed system for processing a continuous in-flow of graph 12/10/12 updates, while simultaneously running 20 advanced graph mining algorithms.
  • 21. GraphChi: Graph Constrains ● Graph does not fit in memory ● A vertex, its edges and values fits in memory 12/10/12 21
  • 22. GraphChi: Disk storage ● Compressed sparse row (CSR): – Compressed adjacency list with indexes of the edges. – Fast access to the out-degree vertices. ● Compressed Sparse Column (CSC): – CSR for the transpose graph – Fast access to the in-degree vertices ● Shard: Store the edges' data 12/10/12 22
  • 23. GraphChi: Loading the graph ● Input graph is split into P disjoint intervals to balance edges, each associated with a shard ● A shard contains data of the edges of an interval ● The sub graph is constructed as reading its interval 12/10/12 23
  • 24. GraphChi: Parallel Sliding Windows ● Each interval is processed in parallel ● P sequential disk access are required to process each interval ● The length of intervals vary with graph distribution ● P * P disk access required for one superstep 12/10/12 24
  • 25. GraphChi: Example Executing interval (1,2): 12/10/12 25 (1,2) (3,4) (5,6)
  • 26. GraphChi: Example Executing interval (3,4): 12/10/12 26 (1,2) (3,4) (5,6)
  • 28. GraphChi: Evolving Graphs ● Adding an edge is reflected on the intervals and shards if read ● Deleting an edge causes that edge to be ignored ● Adding and deleting edges are handled after processing the current interval. 12/10/12 28
  • 31. The Blog wants YOU 12/10/12 31 thegraphsblog.wordpress.com/