new mapreduce and pregel limits in bigdata...

25
MapReduce model and its limits Variants of MapReduce (Pregel, GraphLab, ...) Current research on Graph & Bigdata processing MapReduce and Pregel limits in BigData processing Mostafa Bamha Universit´ e d’Orl´ eans, INSA Centre Val de Loire, LIFO EA 4022, France Email. [email protected] LaMHA meeting, March 27th, 2017 Mostafa Bamha MapReduce and Pregel limits in BigData processing

Upload: others

Post on 15-Oct-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

MapReduce and Pregel limits in BigDataprocessing

Mostafa Bamha

Universite d’Orleans, INSA Centre Val de Loire, LIFO EA 4022, FranceEmail. [email protected]

LaMHA meeting, March 27th, 2017

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 2: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Outline

1 MapReduce model and its limitsParallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries usingMapReduceTests of performance of Join and GroupBy-Join queries

2 Variants of MapReduce (Pregel, GraphLab, ...)High degree vertices problem in Graph processingTest of performance of high degree vertices partitioning

3 Current research on Graph & Bigdata processing

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 3: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Data processing using MapReduce

A High-level Parallel Programming model :

à Communication, load balancing, fault tolerance,synchronisation, ... issues.

Distributed File Systems: Hadoop DFS, Google’s File System, ...

Build from thousands of commodity machines: Assure scalability,reliability and availability issuesFiles divided into Chunks/Blocks of data and each block isreplicated on several nodes for fault tolerance.

MapReduce Model:

Programs easily written : Workflow of Map & Reduce operations.

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 4: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

MapReduce Workflow

��������������

�������� �

Mapper

Reducersplitsplitsplitsplitsplitsplitsplitsplitsplit

Mapper

Mapper

Mapper

bucketbucketbucketbucket

Reducer

Reducer

bucketbucketbucketbucket

bucketbucketbucketbucket

bucketbucketbucketbucket

splitsplitsplitsplitsplitsplitsplit

���������� �����������

������������

������ ������������������������

�������������

��������������������

��������������

�������� �

Return Pregel

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 5: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

MapReduce: A programming model for large-scaledata-parallel applications

MapReduce is efficient in many applications:

Hides low level parallel programming details,

Scalable to Petabytes of data processed on clusters withthousands of commodity machines,

Suitable for programs that can be decomposed into manyindependent parallel tasks.

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 6: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

MapReduce model

MapReduce Model - Map-reduce Workflow

map: (k1, v1) −→ list(k2, v2),reduce: (k2, list(v2)) −→ list(v3).

In Map phase: All emitted pairs (k2,v2) with the same value k2

are sent to the same reducer !!!

MapReduce may be sensitive to data skew:

à Appropriate map keys and communication templates shouldbe generated to avoid the effects of data skew this imbalancecan not be directly handled by MapReduce framework,

à Data redistribution must be performed using User definedMapReduce Partition function.

Return

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 7: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Join of two relations

The join of two relations R and S on attribute A of R andattribute B of S is the relation, written R on S , obtained byconcatenating the pairs of tuples from R and S for whichR .A = S .B .

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 8: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Example -1-

Relation R Relation S

CompanyItem CompanyProduct ItemProduct Company

R S

2

item3

2222

prod1prod2prod3prod4prod5prod6 1

6 tuples7 tuples

22333

item1item2item3item4item5item6item7

433

235

prod1prod1prod2prod2prod3prod3prod3prod4prod4prod4

13 tuples

prod5prod5prod5

item4item5item4item5item2

item6item2item3item6item2item3item6

333333333

Parallel join MapReduce join

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 9: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Parallel evaluation of Join Queries

Parallel Join evaluation proceeds in 2 phases:

1 A redistribution phase where the relations to join arepartitioned into distinct buckets. These buckets are generallygenerated using a hash function of the join attribute and sentto distinct processors.

2 A join phase where each processor computes the join of itslocal buckets.

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 10: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Parallel hash join : Example 1.1

→ Number of processors = 3→ Hashing function : (Company mod 3) +1

321

Produit Company

Relation R3

2prod4prod2

3

2 tuples

Relation S3

Item Company

item4item3

23

2 tuples

(1)(3)

(1)(3)

Processor 3

Relation R2

prod3 3

Relation S2

Item Company

item2item5

32

2 tuples

(1)

(3)(1)

Processor 2

Produit Company

Relation R1

prod5prod1prod6

3 tuples

Company

item1item7item6

453

3 tuples

Relation S1

(2)

(1)(3)(2)

(3)(1)

Processor 1

1 tuples

Item

Produit Company

Sequential join

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 11: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Example -1.2-

Product Company

Relation R1

3

3 tuples

Product Company

Relation R2

Product Company

Relation R3

2 tuples

item6 3

3 tuples

Relation S1 Relation S2 Relation S3

Item Company

item4 2

prod3prod4prod5

33

item2item3

33

prod6 1

item1 4

prod1prod2

22

25

item5item71 tuples

3 tuples

1 tuples

Processor 2 Processor 3Processor 1

CompanyCompany ItemItem

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 12: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Example -1.3-

0 tuples

4 tuples

Product CompanyItem

item6 3

item6

item2item3

3

33

item6

item2item3

3

33

item2item3

33

prod3prod3prod3prod4prod4prod4

prod5prod5

prod5

S1

Product Company

S2R2

CompanyItem

prod1

item4item5

item4item5

prod222

22prod1

prod2

R3 S3R1

9 tuples

Processor 1 Processor 2 Processor 3

ProductItem

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 13: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Join processing using MapReduce: Example

àIs very sensitive to data skewSequential join

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 14: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

A Skew insensitive MapReduce approach for Join &GroupBy-Join queries

A Skew insensitive MapReduce join algorithm for Distributed FileSystems :

MRFA Join computation steps :

1 Map phase to compute local histograms of join attribute,

2 Reduce phase (global histogram’s frequencies, Number ofbuckets used to partition records of each relevant joinattribute value, ....),

3 Map phase for relevant and randomised data redistribution,

4 Reduce phase for join computation.

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 15: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Randomised communication templates in MRFAG Join

Example of generated mapper keys used to partition dataassociated to a join attribute K associated to a high frequency.

(K,Tag1)(K,Tag2)

(K,i0,1,Tag1) (K,i1,1,Tag1) (K,i2,1,Tag1) (K,i3,1,Tag1)

(K,i1,2,Tag2,0) (K,i2,2,Tag2,0) (K,i4,2,Tag2,0)(K,i3,2,Tag2,0)(K,i0,2,Tag2,0)

(K,i1,2,Tag2,1) (K,i2,2,Tag2,1) (K,i4,2,Tag2,1)(K,i3,2,Tag2,1)(K,i0,2,Tag2,1)

(K,i1,2,Tag2,2) (K,i2,2,Tag2,2) (K,i4,2,Tag2,1)(K,i3,2,Tag2,2)(K,i0,2,Tag2,2)

(K,i4,1,Tag1)

Reducer: i0

Reducer: i1= i

0+1 Reducer: i

2= i

0+2 Reducer: i

3= i

0+3 Reducer: i

4= i

0+4

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 16: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

MapReduce model’s limit

MapReduce model’s limit

à Is very sensitive to data skew problem,

à Is inappropriate in the case of iterative problems since inputdata must be read from DFS and output data must rewrittenback to DFS for each iteration,

à Do not scale well in the case of dependant tasks or graphprocessing since this may induce high communication and diskI/O costs for each iteration.

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 17: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Data skew effect on Hadoop join processing time

* Zipf=0.0-1.0, Input relations ∼400M records (∼40GB of data),

* Join result varied from : ∼35M to ∼17000M records (∼7GB to

∼340GB of data).

0

2000

4000

6000

8000

10000

12000

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0

Join

Pro

cess

ing

tim

e (s

ec)

Attribute Value Skew : Zipf parameter

Improved_Repartition_Join

Standard_Repartition_Join

MRFA_Join_Preprocessing

MRFA_Join

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 18: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Data skew effect on the amount of data moved across thenetwork during shuffle phase

0

5

10

15

20

25

30

35

40

45

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0

Red

uce

Shu

ffle

(G

byte

s)

Attribute Value Skew : Zipf parameter

Improved_Repartition_Join

Standard_Repartition_Join

MRFA_Join_Preprocessing

MRFA_Join

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 19: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Data skew effect on Hadoop GroupBy join processing time

* Zipf=0.0-1.0, Input relations of ∼1billion and 400M records (resp. ∼100GB and 40GB of data),

* GroupBy Join result varied from : ∼20M to ∼50M records (∼400MB

to ∼1GB of aggregated data).

0

1000

2000

3000

4000

5000

6000

7000

8000

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1

Join

Pro

cess

ing

tim

e (s

ec)

Attribute Value Skew : Zipf parameter

MRFAG_Join_PreprocessingMRFAG_Join

PigLatin_GroupBy-Join

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 20: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Parallel and Mapreduce Join processing limitsRandomised keys: A solution for data skew in Join queries using MapReduceTests of performance of Join and GroupBy-Join queries

Data skew effect on the amount of data moved across thenetwork during shuffle phase

0

10

20

30

40

50

60

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1

Red

uce

Shu

ffle

(G

byte

s)

Attribute Value Skew : Zipf parameter

MRFAG_Join_PreprocessingMRFAG_Join

PigLatin_GroupBy-Join

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 21: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

High degree vertices problem in Graph processingTest of performance of high degree vertices partitioning

Variants of MapReduce for graphs or iterative processing

Bulk Synchronous Parallel Model in Graph processing usingPregel

MapReduce Workflow

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 22: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

High degree vertices problem in Graph processingTest of performance of high degree vertices partitioning

Variants of MadReduce for graphs or iterative processing(Pregel, GraphLab, ...)

à Efficient for graphs or iterative processing.Many challenges are still not solved:

1 Communication and load imbalance can be very high inpresence of high degree vertices,

2 Existing solutions, in many problems, are not optimised, forexample the “Shortest path” :

Each iteration, passes the shortest distance seen from onenode to its neighbours : the number of iterations is equal thelongest path from source node !!!!

à This may induce load imbalance since only the neighbours of anode are discovered and activated at each iteration,

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 23: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

High degree vertices problem in Graph processingTest of performance of high degree vertices partitioning

High Degree vertices - Graph topology transformation

High degree vertices partitioning: Slave vertices are affected todistinct random workers in a round-robin manner for scalability

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 24: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

High degree vertices problem in Graph processingTest of performance of high degree vertices partitioning

Graph skew effects on SSSP processing time and scalability

* 200M vertices and 1B edges (about ∼25GB for each input graph)* Zipf=0.0-2.8 (Natural graphs : Zipf ∼2.0)

200

400

600

800

1000

1200

1400

1600

1800

2000

0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2 2.2 2.4 2.6 2.8

SS

SP

proc

essi

ng ti

me

(sec

)

Attribute Value Skew : Zipf parameter

High degree vertices processingGraph partitionning

Partitionned SSSPNon partitionned SSSP

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Job

fail

ed :

Out

of

mem

ory

Mostafa Bamha MapReduce and Pregel limits in BigData processing

Page 25: New MapReduce and Pregel limits in BigData processingtesson.julien.free.fr/LaMHA/2017/Bamha_LaMHA_2017-03-27.pdf · 2017. 4. 3. · Randomised keys: A solution for data skew in Join

MapReduce model and its limitsVariants of MapReduce (Pregel, GraphLab, ...)

Current research on Graph & Bigdata processing

Current research

1 Extend the use of randomised keys to graph processing usingof a master/slave approach (using Pregel, GraphLab or otherMapReduce variants) to solve the problem of load imbalancedue to high degree Vertices,

2 Development of optimized and scalable programs inapplications such as:

Collaborative filtering, Graph mining, PageRank, ShortestPath, etc.

using a randomized approach for data redistribution related tohigh degree vertices,

3 Participate to the development of an optimised library forefficient graph processing in the scope of “Girafon” project,

4 Participate to the development of scalable algorithms forBigData Mining (ICVL Action).

Mostafa Bamha MapReduce and Pregel limits in BigData processing