logic data management
play

Logic & Data Management Wim Martens University of Bayreuth - PowerPoint PPT Presentation

Research in Logic & Data Management Wim Martens University of Bayreuth Logic Mentoring Workshop @ LICS 2020 Why Data Management? (1) It is an incredibly relevant fi eld (2) Ti e Logic Force is strong in Data Management (3) [Image removed]


  1. Research in Logic & Data Management Wim Martens University of Bayreuth Logic Mentoring Workshop @ LICS 2020

  2. Why Data Management? (1) It is an incredibly relevant fi eld (2) Ti e Logic Force is strong in Data Management (3) [Image removed] (4) I chose to go into Data Management 15 years ago and I never regretted it Working in data management and database theory has signi fi cantly helped me in getting a tenured position

  3. Logic & Data Management? FO SQL ≡ -- E.F. Codd, paraphrased

  4. Logic & Data Management? Many people with outstanding logic skills work in database theory Kolaitis Muscholl Vardi Grohe did not fi nd picture Libkin You Fagin Schweikardt ...and many, many more!

  5. Logic & Data Management? Have a look at... ...the Gems of PODS! databasetheory.org/gems

  6. Formal Languages & Data Management? My own background was more from formal languages... - But still, I felt more than welcome in PODS & ICDT Lately, I've been doing some work in...

  7. Information Extraction Graph Databases

  8. Information Extraction

  9. General Idea Unstructured, textual information Structured database of information Information Extraction (IE)

  10. IE Tasks [Kimelfeld, EDBTSS'19] person Alfred Tarski immigrated to the United States in 1939 where he became a naturalized citizen in 1945. He taught and carried out research in mathematics at the University of California in Berkeley, from 1942 until 1983. organization - Named Entity Recognition

  11. IE Tasks [Kimelfeld, EDBTSS'19] workedIn Alfred Tarski immigrated to the United States in 1939 where he became a naturalized citizen in 1945. He taught and carried out research in mathematics at the University of California in Berkeley, from 1942 until 1983. locatedIn - Named Entity Recognition - Relation Extraction

  12. IE Tasks [Kimelfeld, EDBTSS'19] moment Alfred Tarski immigrated to the United States in 1939 where he became a naturalized citizen in 1945. He taught and carried out research in mathematics at the moment University of California in Berkeley, from 1942 until 1983. period - Named Entity Recognition - Relation Extraction - Temporal IE

  13. IE Tasks [Kimelfeld, EDBTSS'19] Alfred Tarski immigrated to the United States in 1939 sameEntity where he became a naturalized citizen in 1945. He taught and carried out research in mathematics at the University of California in Berkeley, from 1942 until 1983. - Named Entity Recognition - Relation Extraction - Temporal IE - Coreference Resolution - ...

  14. Document Spanner Framework [Fagin et al., PODS 2013] [1,5 ⟩ [7,14 ⟩ [3,17 ⟩ [7,25 ⟩ [8, 25 ⟩ [8, 25 ⟩ ⋮ ⋮ A relation of "intervals", i.e. Unstructured, textual information start/end positions in the text Document Spanner: automata, regular expressions, logic, datalog, ...

  15. Document Spanner Framework [Fagin et al., PODS 2013] [1,5 ⟩ [7,14 ⟩ [3,17 ⟩ [7,25 ⟩ spanner 1 [8, 25 ⟩ [8, 25 ⟩ ⋮ ⋮ [1,5 ⟩ [7,14 ⟩ [3,17 ⟩ [7,25 ⟩ [8, 25 ⟩ [8, 25 ⟩ Relational σ ⋈ ⋮ π Algebra ⋮ ⋮ spanner n [1,5 ⟩ [7,14 ⟩ [3,17 ⟩ [7,25 ⟩ [8, 25 ⟩ [8, 25 ⟩ ⋮ ⋮

  16. Research Q uestions in Information Extraction

  17. Spanners: Research Q uestions Expressiveness ⊊ Regex Automata ⊊ = RA RA = Regex Automata Expressiveness of Regular Spanners [Fagin, Kimelfeld, Reiss, Vansummeren '15] ⇝

  18. Spanners: Research Q uestions Evaluation Computing the Output of a Document Spanner tuple 1 } delay extractor / tuple 2 } spanner delay tuple 3 } delay tuple 4 ⋮ Which spanners can you evaluate using guarantees on - time until the fi rst answer and - time delay between answers Enumeration Complexity of Document Spanners [Arenas et al. PODS'19, Amarilli et al. ICDT'19,Florenzano et al. PODS'17] ⇝

  19. Spanners: Research Q uestions Static Analysis Parallelizability spanner ⇝ } union Splittability of Document Spanners [Doleschal et al. PODS '19]

  20. Graph Databases

  21. What is a Graph Database? guitarist barbiturate overdose occupation subclassof cause of death instrumentalist Jimi Hendrix subclassof citizenship subclassof occupation United States singer musician subclassof citizenship occupation drug overdose subclassof cause of death Marilyn Monroe occupation artist ... actor subclassof subclassof occupation citizenship cause of death River Phoenix poisoning

  22. "US artists who died of poisoning" SELECT ?x ?y WHERE { ?x wdt:occupation ?y ?y wdt:subclassof* wd:artist . ?x wdt:citizenship wd:United_States . ?x wdt:cause_of_death/wdt:subclass_of* wd:poisoning } Q uery, written in SPARQL (*): Original Wikidata query: politicians who died of cancer https://www.mediawiki.org/wiki/Wikibase/Indexing/SPARQL_Query_Examples#Politicians_who_died_of_cancer_.28of_any_type.29

  23. Ti e Q uery, Visualized "US artists who died of poisoning" x occupation cause of death y citizenship z United States subclassof* subclassof* artist poisoning output node Regular Expressions on edges Regular Path Q ueries (RPQs)

  24. Graph Q ueries By Example "US artists who died of poisoning" guitarist x cause of death barbiturate overdose occupation occupation subclassof cause of death y z Jimi Hendrix instrumentalist United States subclassof citizenship subclassof occupation subclassof* subclassof* United States singer musician artist poisoning subclassof citizenship occupation drug overdose subclassof cause of death Marilyn Monroe occupation ... artist actor subclassof subclassof occupation citizenship cause of death River Phoenix poisoning

  25. Graph Q ueries By Example "US artists who died of poisoning" guitarist x cause of death barbiturate overdose occupation occupation subclassof cause of death y z Jimi Hendrix instrumentalist United States subclassof citizenship subclassof occupation subclassof* subclassof* United States singer musician artist poisoning subclassof citizenship occupation drug overdose subclassof cause of death Marilyn Monroe Answer: occupation (Jimi Hendrix, guitarist) ... artist actor subclassof subclassof ... occupation citizenship cause of death River Phoenix poisoning

  26. Graph Q ueries By Example Such queries are called Conjunctive Regular Path Q ueries (CRPQs) Ti ey are at the core of modern graph database query languages

  27. Research Q uestions in Graph Databases

  28. Classic Types of Research Q uestions tuple 1 } graph delay tuple 2 } query delay tuple 3 } delay tuple 4 ⋮ Enumerating answers with small delay [M., Trautner ICDT'18, Arenas et al., PODS'19] ⇝ Answer testing, counting number of answers [Arenas et al. WWW'12, Losemann, M. PODS'12] ⇝

  29. Classic Types of Research Q uestions ? Q uery 1 Q uery 2 ⊆ important task in - query optimization - reasoning about queries in knowledge bases Containment of Conjunctive Regular Path Q ueries is EXPSPACE-complete [Calvanese et al., KR'00] ⇝

  30. Classic Types of Research Q uestions Ti ere is MUCH more! Just check the SIGMOD / PODS / VLDB / ICDT / EDBT / ICDE proceedings for papers on graph databases Nice overview on theory aspects: [Barceló PODS'13]

  31. Why Are We Not Done?

  32. Ti ree New Aspects to Stir Ti e Pot Ti ere are di ff erent semantics of regular path queries in the literature and in graph database systems! (1) every path trail simple path shortest path Ti e di ff erences between these are signi fi cant (2) We now have data about which kinds of queries are used in practice (3) Ti ere is a new standardization e ff ort for graph-structured data (which brings up many new questions)

  33. (3): GQL In fl uence Graph [https://www.gqlstandards.org/existing-languages]

  34. (1): Simple Paths and Trails Path ✔ Trail ✔ Simple path ✔ u v u v u v Path ✔ Path ✔ Trail Trail ✔ 𝗬 Simple path Simple path 𝗬 𝗬

  35. (1): Impact of Simple Paths / Trails Ti e complexity of answer testing / query evaluation changes drastically! Reason: - Reachability is easy - Finding long simple paths is hard Some papers on simple paths / trails: [Cruz et al. SIGMOD'87, Mendelzon, Wood SICOMP'95, Bagan et al. PODS'13, M., Trautner ICDT'18, M., Niewerth, Trautner STACS'20]

  36. (2): Expressions Used in Practice Expression Type Relative Expression Type Relative A* 48.76% a*b? <0.01% A 32.10% abc* <0.01% a 1 ... a k 8.66% A 1 ... A k <0.01% a*b 7.73% ab*+c <0.01% A + 1.54% a*+b <0.01% a 1 ? ... a k ? 1.15% a + b + <0.01% 0.01% <0.01% aA? a + + b + a 1 a 2 ? ... a k ? 0.01% (ab)* <0.01% A? <0.01% Disjunction Single symbols: 6 𝑙 ≤ of symbols: 𝑏 , 𝑐 , 𝑑 , 𝑏 1 , … 𝐵 , 𝐵 1 , … [Bonifati, M., Timm PVLDB'17, WWW'18, WWW'19, SIGMOD'20]

  37. (3): Standardization E ff ort a Graph: v u Married from: 01-01-1990 to: 02-01-1990 Property graph: u v Person Person FirstName: Burt FirstName: Liz LastName: Reynolds LastName: Taylor

  38. (3): Standardization E ff ort Currently under development: - Q uery language (GQL) - Update language - Schema language - Type system - Key / cardinality constraints - Data model! A lot of theory / practice interaction is taking place here Keep an eye on gqlstandards.org!

  39. To Conclude

Recommend


More recommend