280 likes | 452 Views
Graph Transformation in Relational Databases. Gergely Varró Katalin Friedl Dániel Varró {gervarro,friedl}@cs.bme.hu varro@mit.bme.hu. Introduction. Graph transformation graph query + manipulation at very high abstraction level Relational database management systems
E N D
Graph Transformation in Relational Databases Gergely VarróKatalin Friedl Dániel Varró {gervarro,friedl}@cs.bme.huvarro@mit.bme.hu
Introduction • Graph transformation • graph query + manipulation • at very high abstraction level • Relational database management systems • storage medium for business critical data • the most successful field of SW engineering • close synergy between theory and practice: SQL • manipulation on a low level of abstraction
Motivation • GT for databases • hybrid (visual + textual) query language based upon GT [Andries, Engels] • Varlet framework [Jahnke, Zündorf]: TGGs for database re-engineering • GRAS (graph-oriented DBMS, underlying database for PROGRES) [Kiesel, Schürr, Westfechtel] • Databases for GT • How to do? (Mapping) • How fast? (Performance)
next p1:Process p2:Process Process Resource Graph transformation n1 : next n2 : next Instance model (instance graph) R. Heckel: Compositional verification of reactive systems specified by graph transformation,FASE’98, vol. 1382 of LNCS, pages 138-153 held_by token release Metamodel (type graph) blocked request
p:Process rn:Resource reqn:request hb:held_by r:Resource Rules • A resource that has been held by a process is released. p:Process rn:Resource p:Process rqn:request rel:release hb:held_by Negative application condition Left-hand side r:Resource r:Resource ReleaseR p:Process Precondition Right-hand side
p2:Process p1:Process r1:Resource r2:Resource Pattern matching phase p:Process rn:Resource p:Process rqn:request rel:release hb:held_by r:Resource r:Resource ReleaseR n1 : next rq : request h1 : held_by h2 : held_by n2 : next
r2:Resource p2:Process p1:Process r1:Resource Updating phase p:Process rn:Resource p:Process rqn:request rel:release hb:held_by r:Resource r:Resource ReleaseR n1 : next rq : request h1 : held_by rl : release h2 : held_by n2 : next
SELECT A SELECT * FROM t1 FROM t1, t2 SELECT * FROM t1 WHERE A=1 Database introduction I. • Projection • Selection • Cartesian product
SELECT * FROM t1, t2 WHERE t1.A=t2.C SELECT * FROM t1 LEFT JOIN t2 ON t1.A=t2.C Database introduction II. • Inner join • Left outer join t1.A=t2.C No match for 2 in t2.C No match for 3 in t1.A t1.A=t2.C No match for 2 in t2.C
Process Resource Metamodel representation next Standard mapping • Class Table • Association Table + FK • Inheritance Foreign key ... held_by token release Database schema blocked request Metamodel (type graph)
r1:Resource p1:Process p2:Process r2:Resource Instance model representation n1 : next rq : request h1 : held_by h2 : held_by n2 : next Instance model (Instance graph) Data
LHS computation LHS view Computes the inner join of the corresponding tables p:Process hb:held_by r:Resource CREATE VIEW ReleaseR_lhs AS SELECT p.id AS p, hb.id AS hb, r.id AS r FROM Process AS p, held_by AS hb, Resource AS r WHERE r.id=hb.src AND p.id=hb.trg AND injectivity_constraints
CREATE VIEW ReleaseR_nac AS SELECT p.id AS p, rqn.id AS rqn, rn.id AS rn Process AS p, request AS rqn, Resource AS rn FROM WHERE p.id=rqn.src AND rn.id=rqn.trg NAC computation NAC view Computes the inner join of the corresponding tables Exactly the same method as for LHS p:Process rn:Resource rqn:request
Precondition computation p:Process rn:Resource Successful matching rqn:request hb:held_by r:Resource Precondition view CREATE VIEW ReleaseR AS Computes the left outer join of LHS and NAC SELECT lhs.* FROM ReleaseR_lhs AS lhs LEFT JOIN ReleaseR_nac ON lhs.p=nac.p WHERE nac.p IS NULL
DELETE FROM held_by WHERE id=h1 r2:Resource r1:Resource p1:Process p2:Process Updating tables I. p:Process rn:Resource rqn:request hb:held_by r:Resource ReleaseR n1 : next h1 : held_by h2 : held_by n2 : next
INSERT INTO release (id,src,trg) VALUES (rl,r1,p1) r1:Resource p1:Process p2:Process r2:Resource Updating tables II. p:Process rel:release r:Resource ReleaseR n1 : next h2 : held_by rl : release n2 : next
Categorization • Style • interpreted: AGG, Progres • compiled: Fujaba, DB based approach • Base algorithm • constraint satisfaction: AGG, VIATRA, DB based approach • variables + constraints • local searches: Fujaba, Progres • step-by-step extension of the matching • Single pushout approach with injective matchings
Tool comparison I. • Same set of test cases • Short transformation sequences • deterministic execution order • length between 25 and 5000 • Long transformation sequences • deterministic execution order (no matchings in some cases) • up to 60000 rule applications • Few matches on large models • as long as possible rule application
Tool comparison II. • Tool specific issues: • AGG • Without GUI, controlled by a Java program • Progres • Interpreted version with GRAS • Prolog-style cuts (determinism) • Measurements on a second scale • Fujaba • Always (Many-)To-Many associations • Without DOBS • Additional node for storing processes and resources • Our approach • PostgreSQL + No additional optimization
Evaluation I. • AGG • good PM strategy even for large models • update strategy: linear in model size (!!!) due to compilation into categories • Progres • good, if relatively large number of matches compared to the model size • worst execution results (especially if large models + few matches)
Evaluation II. • Fujaba • extremely good for small models • performance problems with large models • could be much better if DFS graph traversal is supported • DB • runs on all test cases • relatively large overhead for as long as possible rule applications (always from scratch) • BUT STILL THE BEST FOR LARGE MODELS
Future work • Interface definition • to enable the integration of the engine to several GT tools • Comparison to other tools • VIATRA • GReAT • Comparison on other test cases • Incremental transformations • Now in Darmstadt (Segravis)
Before saying thank you for your kind attention... I have some additional surprise if you are interested.