decidable classes of datalog programs with arithmetic
play

Decidable Classes of Datalog Programs with Arithmetic Mark Kaminski - PowerPoint PPT Presentation

Decidable Classes of Datalog Programs with Arithmetic Mark Kaminski joint work with Bernardo Cuenca Grau, Egor Kostylev, Boris Motik, and Ian Horrocks Department of Computer Science, University of Oxford Metafinite 2017 Data Analytics


  1. Decidable Classes of Datalog Programs with Arithmetic Mark Kaminski joint work with 
 Bernardo Cuenca Grau, Egor Kostylev, Boris Motik, and Ian Horrocks Department of Computer Science, University of Oxford Metafinite 2017

  2. Data Analytics • identifying patterns or trends in raw data: 
 market predictions, spot production bottlenecks, … • gaining importance in research and business • major challenge: heterogeneous data ‣ collected from different sources ‣ no uniform data format

  3. State of the Art • custom-made imperative data processing code

  4. State of the Art • custom-made imperative data processing code • labour-intensive • requires deep technical understanding • error-prone

  5. Declarative Analytics Alvaro et al. 2010, Markl 2014, Seo et al. 2015, Shkapsky et al. 2016 • describe what to compute rather than how • delegate low-level details to the query engine • improve speed and cost of code development

  6. Declarative Analytics Alvaro et al. 2010, Markl 2014, Seo et al. 2015, Shkapsky et al. 2016 • describe what to compute rather than how • delegate low-level details to the query engine • improve speed and cost of code development • query language: recursive rules + arithmetic 
 Loo et al. 2009, Alvaro et al. 2010, Eisner & Filardo 2011, Chin et al. 2015, 
 Seo et al. 2015, Wang et al. 2015, Shkapsky et al. 2016

  7. Challenges • datalog + arithmetic undecidable see Dantsin et al. 2011 • no universally agreed-on semantics for aggregation • proposals in the literature suffer from • high complexity / undecidability 
 Van Gelder 1993, Ross & Sagiv 1997, Greco 1999, Mazuran et al. 2013 • limited expressivity Mumick et al. 1990, 
 Consens & Mendelzon 1993, Greco 1999, Faber et al. 2011 • unnatural syntactic restrictions Ross & Sagiv 1997

  8. Our Goal unifying formal foundation for declarative analytics • generalise existing approaches • natural syntax and semantics • sufficient expressive power • theoretically understood computational properties • amenable to efficient implementation

  9. Overview • datalog ℤ • decidability • non-monotonic extension • metafinite model theory?

  10. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n )

  11. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n ) ordinary 
 datalog 
 atoms

  12. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n ) numeric 
 atoms

  13. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n ) m n m + n one numeric argument 
 per atom

  14. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n ) comparison 
 atoms

  15. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n ) • P ⊧ A( a ) if ∀ I : I ⊧ P implies I ⊧ A( a )

  16. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n ) • P ⊧ A( a ) if ∀ I : I ⊧ P implies I ⊧ A( a ) two-sorted 
 FO interpretation 
 with integers

  17. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n ) • P ⊧ A( a ) if ∀ I : I ⊧ P implies I ⊧ A( a ) ∞ • P ⊧ A( a ) iff A( a ) ∈ T P ( ∅ ) T P immed. cons. operator

  18. Datalog ℤ • positive datalog extended with integer arithmetic • example rule A( x ) ∧ B( x , y , m ) ∧ C( y , z , n ) ∧ ( m +1 ≤ 2 · n ) → D( y , z , m + n ) • P ⊧ A( a ) if ∀ I : I ⊧ P implies I ⊧ A( a ) ∞ • P ⊧ A( a ) iff A( a ) ∈ T P ( ∅ ) T P immed. cons. operator • undecidable even when + is the only operator

  19. Limit Predicates • keep only the minimal/maximal numeric value • restrict interpretations to satisfy A( x , m ) ∧ ( m ≤ n ) → A( x , n ) for A a min predicate B( x , m ) ∧ ( n ≤ m ) → B( x , n ) for B a max predicate

  20. Limit Predicates • keep only the minimal/maximal numeric value • restrict interpretations to satisfy A( x , m ) ∧ ( m ≤ n ) → A( x , n ) for A a min predicate B( x , m ) ∧ ( n ≤ m ) → B( x , n ) for B a max predicate • limit datalog ℤ : all numeric predicates in rule heads limit predicates

  21. 
 
 
 
 Example cheapest route from London to Reykjavík? flight( x , y , c ) → route( x , y , c ) 
 route( x , z , c 1 ) ∧ flight( z , y , c 2 ) → route( x , y , c 1 + c 2 ) route a min predicate flight London Hamburg 100 Hamburg Reykjavík 150 London Reykjavík 300

  22. 
 
 
 
 Example cheapest route from London to Reykjavík? flight( x , y , c ) → route( x , y , c ) 
 route( x , z , c 1 ) ∧ flight( z , y , c 2 ) → route( x , y , c 1 + c 2 ) route a min predicate flight route London Hamburg 100 London Reykjavík 250 Hamburg Reykjavík 150 London Reykjavík 300 London Reykjavík 300 … … …

  23. 
 
 
 
 Example cheapest route from London to Reykjavík? flight( x , y , c ) → route( x , y , c ) 
 route( x , z , c 1 ) ∧ flight( z , y , c 2 ) → route( x , y , c 1 + c 2 ) route a min predicate flight route London Hamburg 100 London Reykjavík 250 Hamburg Reykjavík 150 London Reykjavík 300 London Reykjavík 300 … … …

  24. Pseudo-Interpretations • Herbrand interpretations J • for each min/max predicate A and constants a 
 store only the minimal/maximal k ∈ ℤ s.t. J ⊧ A( a , k )

  25. Pseudo-Interpretations • Herbrand interpretations J • for each min/max predicate A and constants a 
 store only the minimal/maximal k ∈ ℤ s.t. J ⊧ A( a , k ) • each limit datalog ℤ program P 
 has a pseudo-model J with | J | ≤ | P |

  26. Limit Linearity • limit datalog ℤ undecidable: consider P as follows 
 → A(0) 
 A( x 1 ) ∧ … ∧ A( x n ) ∧ p( x 1 ,…, x n )=0 → B P ⊧ B iff p( x 1 ,…, x n )=0 has non-negative integer solution

  27. Limit Linearity • limit datalog ℤ undecidable: consider P as follows 
 → A(0) 
 A( x 1 ) ∧ … ∧ A( x n ) ∧ p( x 1 ,…, x n )=0 → B P ⊧ B iff p( x 1 ,…, x n )=0 has non-negative integer solution • limit linearity: 
 disallow multiplication between limit variables

  28. Limit Linearity • limit datalog ℤ undecidable: consider P as follows 
 → A(0) 
 A( x 1 ) ∧ … ∧ A( x n ) ∧ p( x 1 ,…, x n )=0 → B P ⊧ B iff p( x 1 ,…, x n )=0 has non-negative integer solution • limit linearity: 
 disallow multiplication between limit variables A( x ) ∧ B( y ) → C( x · y ) not limit linear

  29. Limit Linearity • limit datalog ℤ undecidable: consider P as follows 
 → A(0) 
 A( x 1 ) ∧ … ∧ A( x n ) ∧ p( x 1 ,…, x n )=0 → B P ⊧ B iff p( x 1 ,…, x n )=0 has non-negative integer solution • limit linearity: 
 disallow multiplication between limit variables A( x ) ∧ B( y ) → C( x · y ) not limit linear A( x ) ∧ B( y ) → C( x · y ) limit linear

  30. Limit-Linear Datalog ℤ • fact entailment coNEXPTIME-complete 
 and coNP-complete in data complexity • upper bounds (data complexity) ‣ fact entailment reducible to Presburger validity A( x ) → B( x +1) ↝ ∀ x . def A ∧ ( x ≤ val A ) → def B ∧ ( x +1 ≤ val B ) ‣ magnitude of integers in countermodels 
 exponentially bounded using Chistikov & Haase 2016 ‣ NP guess-and-check procedure for non-entailment

  31. Limit-Linear Datalog ℤ • lower bounds: reduction from square tiling

  32. Limit-Linear Datalog ℤ • lower bounds: reduction from square tiling Square Tiling input: finite set T of tiles horizontal compatibility relation H ⊆ T ⨯ T vertical compatibility relation V ⊆ T ⨯ T number N problem: is there a function N ⨯ N → T 
 satisfying H and V (tiling)?

  33. Limit-Linear Datalog ℤ • lower bounds: reduction from square tiling ‣ interpret each N 2 ⎡ log 2 |T| ⎤ bit number n 
 · - as a candidate tiling; initialise n with 0

  34. Limit-Linear Datalog ℤ • lower bounds: reduction from square tiling ‣ interpret each N 2 ⎡ log 2 |T| ⎤ bit number n 
 · - as a candidate tiling; initialise n with 0 ‣ if n not a tiling, increase n

  35. Limit-Linear Datalog ℤ • lower bounds: reduction from square tiling ‣ interpret each N 2 ⎡ log 2 |T| ⎤ bit number n 
 · - as a candidate tiling; initialise n with 0 ‣ if n not a tiling, increase n ‣ if n > 2 N ⎡ log |T| ⎤ -1, return ‘noSolution’ 2 · 2

  36. Limit-Linear Datalog ℤ • lower bounds: reduction from square tiling ‣ interpret each N 2 ⎡ log 2 |T| ⎤ bit number n 
 · - as a candidate tiling; initialise n with 0 ‣ if n not a tiling, increase n ‣ if n > 2 N ⎡ log |T| ⎤ -1, return ‘noSolution’ 2 · 2 ‣ P ⊧ noSolution iff no tiling exists

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