mit relational database
play

MIT Relational Database GraphiQL Expensive! Graph Intuitive Query - PowerPoint PPT Presentation

GraphiQL Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University work of Maryland


  1. GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University work of Maryland MIT

  2. Relational Database GraphiQL 
 Expensive! Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal Expensive! collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University work of Maryland MIT

  3. Graph Analysis = + Graph Store Extract Algorithms Preprocess Update Failover Postprocess

  4. Graph Analysis = Relational Database Relational Database + Graph Store Extract Algorithms Preprocess Update Failover “Counting Triangles with Vertica” “Scalable Social Graph Analytics Using the Vertica Analytic Platform,” Postprocess “Graph Analysis: Do We Have to Reinvent the Wheel?” “Query Optimization of Distributed Pattern Matching,” “GraphX: A Resilient Distributed Graph System on Spark,” “Vertexica: Your Relational Friend for Graph Analytics!” 


  5. Problem !

  6. GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University of Maryland work MIT SQL GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University work of Maryland MIT

  7. SELECT COUNT UPDATE FROM GROUP BY SUM WHERE

  8. Redundant Effort GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical work Mike Stonebraker University of Maryland work MIT GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University of Maryland work MIT GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical work Mike Stonebraker University of Maryland work MIT GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University of Maryland work MIT

  9. Optimizations?

  10. GraphiQL

  11. GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University of Maryland work MIT SQL GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University work of Maryland MIT

  12. GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors GraphiQL Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University work of Maryland MIT GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University work of Maryland MIT

  13. Key Features • Graph view of relational data; the system takes care of mapping to the relational world • Inspired from PigLatin: right balance between declarative and procedural style language • Key graph constructs: looping, recursion, neighborhood access • Compiles to optimized SQL

  14. Graph Table GraphiQL SQL Graph Table Relational Table GraphiQL 
 Graph Intuitive Query Language for Relational Databases at Talking on IEEE BigData 2014 Alekh Jindal collaborate Supervisors Amol Deshpande Sam Madden work sabbatical Mike Stonebraker work University work of Maryland MIT

  15. Graph Table node8 node9 edge7 edge8 Graph Elements id weight type edge9 node1 outgoing node2 incoming edge1 edge2 edge3 node6 node3 node7 edge4 node4 edge5 node5 edge6

  16. Graph Table Definition • Create CREATE GRAPHTABLE g AS 
 NODE (p1,p2,..) 
 EDGE (q1,q2,..) LOAD g AS 
 • Load NODE FROM graph_nodes DELIMITER d 
 EDGE FROM graph_edges DELIMITER d • Drop DROP GRAPHTABLE g

  17. Graph Table Manipulation FOREACH element in g 
 • Iterate [WHILE condition] • Filter g’ = g(k 1 =v 1 ,k 2 =v 2 ,…,k n =v n ) GET expr 1 ,expr 2, …,expr n 
 • Retrieve [WHERE condition] • Update SET variable TO expr 
 [WHERE condition] • Aggregate SUM, COUNT, MIN, MAX, AVG

  18. Nested Manipulation inner 
 Iterate Aggregate Retrieve Update outer Iterate Aggregate Retrieve Update

  19. Example 1: PageRank FOREACH n IN g(type=N) 
 SET n.pr TO new_pr

  20. Example 1: PageRank FOREACH n IN g(type=N) 
 SET n.pr TO 0.15/num_nodes + 0.85*SUM(pr_neighbors)

  21. Example 1: PageRank FOREACH n IN g(type=N) 
 SET n.pr TO 0.15/num_nodes + 0.85*SUM( 
 FOREACH n’ IN n.in(type=N) 
 GET pr_n’ 
 )

  22. Example 1: PageRank FOREACH n IN g(type=N) 
 SET n.pr TO 0.15/num_nodes + 0.85*SUM( 
 FOREACH n’ IN n.in(type=N) 
 GET n’.pr/COUNT(n’.out(type=N)) 
 )

  23. Example 1: PageRank FOREACH iterations IN [1:10] 
 FOREACH n IN g(type=N) 
 SET n.pr TO 0.15/num_nodes + 0.85*SUM( 
 FOREACH n’ IN n.in(type=N) 
 GET n’.pr/COUNT(n’.out(type=N)) 
 )

  24. Example 1: PageRank Looping FOREACH iterations IN [1:10] 
 FOREACH n IN g(type=N) 
 Nested SET n.pr TO 0.15/num_nodes + 0.85*SUM( 
 Manipulations FOREACH n’ IN n.in(type=N) 
 GET n’.pr/COUNT(n’.out(type=N)) 
 ) Neighborhood Access Reason about graph

  25. Example 2: SSSP FOREACH n IN g(type=N) 
 SET n.dist TO min_dist

  26. Example 2: SSSP FOREACH n IN g(type=N) 
 SET n.dist TO MIN(n.in(type=N).dist)+1 AS dist’ 
 WHERE dist’ < n.dist

  27. Example 2: SSSP WHILE updates > 0 
 FOREACH n IN g(type=N) 
 updates = 
 SET n.dist TO MIN(n.in(type=N).dist)+1 AS dist’ 
 WHERE dist’ < n.dist

  28. Example 2: SSSP SET g(type=N).dist TO inf 
 SET g(type=N,id=start).dist TO 0 
 WHILE updates > 0 
 FOREACH n IN g(type=N) 
 updates = 
 SET n.dist TO MIN(n.in(type=N).dist)+1 AS dist’ 
 WHERE dist’ < n.dist

  29. GraphiQL Compiler • Graph Table manipulations to relational operators: 
 - filter � selection predicates 
 - iterate � driver loop 
 - retrieve � projections 
 - update � update in place 
 - aggregate � group-by aggregate • Graph Tables to relational tables: 
 - mapping

  30. GraphiQL Compiler g(type=N) � N g(type=E) � E g(type=N).out(type=E) � N ⋈ E g(type=E).out(type=E) � E ⋈ E g(type=N).out(type=N) � N ⋈ E ⋈ N g.out.in = g.in g.in.out = g.out

  31. Example: SSSP l updateCount>0 ( 
 SET g(type=N).dist TO inf 
 n.dist ← σ n.dist>dist’ ( 
 SET g(type=N,id=start).dist TO 0 
 WHILE updates > 0 
 ! min(n’.dist)+1 ( 
 FOREACH n IN g(type=N) 
 " n.id ( 
 updates = 
 N ⋈ E ⋈ N’ 
 SET n.dist TO 
 ) 
 MIN(n.in(type=N).dist)+1 AS dist’ 
 ) 
 WHERE dist’ < n.dist ) 
 )

  32. GraphiQL Optimizations • De-duplicating graph elements • Selection pushdown • Cross-product as join • Pruning redundant joins

  33. Performance

  34. 
 Performance Machine: 2GHz, 24 threads, 48GB memory, 1.4TB disk

  35. 
 
 Performance Machine: Dataset: 2GHz, 24 threads, 48GB Small: 81k/1.7m directed; 334k/925k undirected memory, 1.4TB disk Large: 4.8m/68m directed; 4m/34m undirected

  36. Performance - small graph 64 Apache Giraph 12x Speedup! GraphiQL 48 Time (seconds) 32 16 0 PageRank Shortest Path Triangles (global) Triangles (local) Strong Overlap Weak Ties

  37. Performance - large graph 1600 Apache Giraph GraphiQL 1200 Time (seconds) 800 4.3x Speedup! 400 0 PageRank Shortest Path Triangles (global) Triangles (local) Strong Overlap Weak Ties

  38. Summary • Several real world graph analysis are better off in relational databases • We need both the graph as well as relational view of data • GraphiQL introduces Graph Tables to allows users to think in terms of graphs • Graph Table supports recursive association, nested manipulations, and SQL compilation • GraphiQL allows users to easily write a variety of graph analysis

  39. Thanks!

  40. Other Languages Imperative languages: e.g. Green Marl XPath: e.g. Cypher, Gremlin Datalog: e.g. Socialite SPARQL: Teradata blog Procedural language: e.g. Vertex-centric

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