Datalog

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by InternetArchiveBot (talk | contribs) at 02:01, 22 November 2019 (Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Datalog is a declarative logic programming language that syntactically is a subset of Prolog. It is often used as a query language for deductive databases. In recent years, Datalog has found new application in data integration, information extraction, networking, program analysis, security, and cloud computing.[1]

Its origins date back to the beginning of logic programming, but it became prominent as a separate area around 1977 when Hervé Gallaire and Jack Minker organized a workshop on logic and databases.[2] David Maier is credited with coining the term Datalog.[3]

Features, limitations and extensions

Unlike in Prolog, statements of a Datalog program can be stated in any order. Furthermore, Datalog queries on finite sets are guaranteed to terminate, so Datalog does not have Prolog's cut operator. This makes Datalog a fully declarative language.

In contrast to Prolog, Datalog

  1. disallows complex terms as arguments of predicates, e.g., p (1, 2) is admissible but not p (f (1), 2),
  2. imposes certain stratification restrictions on the use of negation and recursion,
  3. requires that every variable that appears in the head of a clause also appears in a nonarithmetic positive (i.e. not negated) literal in the body of the clause,
  4. requires that every variable appearing in a negative literal in the body of a clause also appears in some positive literal in the body of the clause[4]

Query evaluation with Datalog is based on first-order logic, and is thus sound and complete. However, Datalog is not Turing complete, and is thus used as a domain-specific language that can take advantage of efficient algorithms developed for query resolution. Indeed, various methods have been proposed to efficiently perform queries, e.g., the Magic Sets algorithm,[5] tabled logic programming[6] or SLG resolution.[7]

Some widely used database systems include ideas and algorithms developed for Datalog. For example, the SQL:1999 standard includes recursive queries, and the Magic Sets algorithm (initially developed for the faster evaluation of Datalog queries) is implemented in IBM's DB2.[8] Moreover, Datalog engines are behind specialised database systems such as Intellidimension's database for the semantic web.[citation needed]

Several extensions have been made to Datalog, e.g., to support aggregate functions, to allow object-oriented programming, or to allow disjunctions as heads of clauses. These extensions have significant impacts on the definition of Datalog's semantics and on the implementation of a corresponding Datalog interpreter.

Example

These two lines define two facts, i.e. things that always hold:

parent(bill, mary).
parent(mary, john).

This is what they mean: bill is a parent of mary and mary is a parent of john. The names are written in lowercase because strings beginning with an uppercase letter stand for variables.

These two lines define rules, which define how new facts can be inferred from known facts.

ancestor(X, Y) :- parent(X, Y).
ancestor(X, Y) :- parent(X, Z), ancestor(Z, Y).

meaning:

  • X is an ancestor of Y if X is a parent of Y.
  • X is an ancestor of Y if X is a parent of some Z, and Z is an ancestor of Y.

This line is a query:

?- ancestor(bill, X).

It asks the following: Who are all the X that bill is an ancestor of? It would return mary and john when posed against a Datalog system containing the facts and rules described above.

More about rules: a rule has a :- symbol in the middle: the part to the left of this symbol is the head of the rule, the part to the right is the body. A rule reads like this: <head> is known to be true if it is known that <body> is true. Uppercase letters in rules stand for variables: in the example, we don't know who X or Y are, but some X is the ancestor of some Y if that X is the parent of that Y. The ordering of the clauses is irrelevant in Datalog, in contrast to Prolog, which depends on the ordering of clauses for computing the result of the query call.

Datalog distinguishes between extensional predicate symbols (defined by facts) and intensional predicate symbols (defined by rules).[9] In the example above ancestor is an intensional predicate symbol, and parent is extensional. Predicates may also be defined by facts and rules and therefore neither be purely extensional nor intensional, but any Datalog program can be rewritten into an equivalent program without such predicate symbols with duplicate roles.

Systems implementing Datalog

Here is a short list of systems that are either based on Datalog or provide a Datalog interpreter:

Free software/open source

Written in Name Try it online External Database Description Licence
C XSB A logic programming and deductive database system for Unix and MS Windows with tabling giving Datalog-like termination and efficiency, including incremental evaluation[10] GNU LGPL
C++ Coral[11] A deductive database system written in C++ with semi-naïve datalog evaluation. Developed 1988-1997. custom licence, free for non-commercial use
DLV[12] A Datalog extension that supports disjunctive head clauses. custom licence, free for academic and non-commercial educational use, as well as for use by non-profit organisations[13]
Inter4QL[14] an open-source command-line interpreter of Datalog-like 4QL query language implemented in C++ for Windows, Mac OS X and Linux. Negation is allowed in heads and bodies of rules as well as in recursion GNU GPL v3
RDFox[15] RDF triple store with Datalog reasoning. Implements the FBF algorithm for incremental evaluation. custom licence, free for non-commercial use[16]
Souffle[17] an open-source Datalog-to-C++ compiler converting Datalog into high-performance, parallel C++ code, specifically designed for complex Datalog queries over large data sets as e.g. encountered in the context of static program analysis UPL v1.0


Clojure Cascalog Hadoop a Clojure library for querying data stored on Hadoop clusters Apache
Clojure Datalog a contributed library implementing aspects of Datalog Eclipse Public License 1.0
Crux Yes Apache Kafka A general-purpose database with an "unbundled" architecture, using log-centric streaming of documents and transactions to achieve significant architectural flexibility and elegant horizontal scaling. Pluggable components include Kafka, RocksDB and LMDB. Indexes are bitemporal to support point-in-time Datalog queries by default. Java and HTTP APIs are provided. MIT License
Datascript in-memory Immutable database and Datalog query engine that runs in the browser Eclipse Public License 1.0
Erlang Datalog The library is designed to query and formalise relation of n-ary streams using datalog. It implements an ad-hoc query engine using simplified version of general logic programming paradigm. The library facilitates development of data integration, information exchange and semantic web applications. Apache v2
Haskell Dyna[18] Dyna is a declarative programming language for statistical AI programming. The language is based on Datalog, supports both forward and backward chaining, and incremental evaluation. GNU AGPL v3


Java AbcDatalog[19] AbcDatalog is an open-source implementation of the logic programming language Datalog written in Java. It provides ready-to-use implementations of common Datalog evaluation algorithms, as well as some experimental multi-threaded evaluation engines. It supports language features beyond core Datalog such as explicit (dis-)unification of terms and stratified negation. Additionally, AbcDatalog is designed to be easily extensible with new evaluation engines and new language features. BSD
IRIS[20] IRIS extends Datalog with function symbols, built-in predicates, locally stratified or un-stratified logic programs (using the well-founded semantics), unsafe rules and XML schema data types GNU LGPL v2.1
Jena a Semantic Web framework which includes a Datalog implementation as part of its general purpose rule engine, which provides OWL and RDFS support.[21] Apache v2
SociaLite[22] SociaLite is a datalog variant for large-scale graph analysis developed in Stanford Apache v2
Graal[23] Graal is a Java toolkit dedicated to querying knowledge bases within the framework of existential rules, aka Datalog+/-. CeCILL v2.1
Flix[24] Yes A functional and logic programming language inspired by Datalog extended with user-defined lattices and monotone filter/transfer functions. Apache v2


Lua Datalog[25] Yes[26] a lightweight deductive database system. GNU LGPL


Prolog DES[27] an open-source implementation to be used for teaching Datalog in courses GNU LGPL


Python pyDatalog 11 dialects of SQL adds logic programming to Python's toolbox. It can run logic queries on databases or Python objects, and use logic clauses to define the behavior of Python classes. GNU LGPL


Racket Datalog for Racket[28] GNU LGPL
Datafun[29] Generalized Datalog on Semilattices GNU LGPL


Ruby bloom / bud A Ruby DSL for programming with data-centric constructs, based on the Dedalus extension of Datalog which adds a temporal dimension to the logic. BSD 3-Clause
Rust Datafrog Datafrog is a lightweight Datalog engine intended to be embedded in other Rust programs. MIT License / Apache 2.0
Tcl tclbdd[30] Implementation based on binary decision diagrams. Built to support development of an optimizing compiler for Tcl. BSD


Other or Unknown Languages bddbddb[31] an implementation of Datalog done at Stanford University. It is mainly used to query Java bytecode including points-to analysis on large Java programs GNU LGPL
ConceptBase[32] a deductive and object-oriented database system based on a Datalog query evaluator : Prolog for triggered procedures and rewrites, axiomatized Datalog called « Telos » for (meta)modeling. It is mainly used for conceptual modeling and metamodeling BSD 2-Clause

Non-free software

  • Datomic is a distributed database designed to enable scalable, flexible and intelligent applications, running on new cloud architectures. It uses Datalog as the query language.
  • FoundationDB provides a free-of-charge database binding for pyDatalog, with a tutorial on its use.[33]
  • Leapsight Semantic Dataspace (LSD) is a distributed deductive database that offers high availability, fault tolerance, operational simplicity, and scalability. LSD uses Leaplog (a Datalog implementation) for querying and reasoning and was create by Leapsight.[34]
  • LogicBlox, a commercial implementation of Datalog used for web-based retail planning and insurance applications.
  • Profium Sense is a native RDF compliant graph database written in Java. It provides Datalog evaluation support of user defined rules.
  • QL, a commercial object-oriented variant of Datalog created by Semmle for analyzing source code to detect security vulnerabilities.[35]
  • SecPAL a security policy language developed by Microsoft Research.[36]
  • Stardog is a graph database, implemented in Java. It provides support for RDF and all OWL 2 profiles providing extensive reasoning capabilities, including datalog evaluation.
  • StrixDB: a commercial RDF graph store, SPARQL compliant with Lua API and Datalog inference capabilities. Could be used as httpd (Apache HTTP Server) module or standalone (although beta versions are under the Perl Artistic License 2.0).

See also

References

  1. ^ Huang, Green, and Loo, "Datalog and Emerging applications", SIGMOD 2011 (PDF), UC Davis{{citation}}: CS1 maint: multiple names: authors list (link).
  2. ^ Gallaire, Hervé; Minker, John ‘Jack’, eds. (1978), "Logic and Data Bases, Symposium on Logic and Data Bases, Centre d'études et de recherches de Toulouse, 1977", Advances in Data Base Theory, New York: Plenum Press, ISBN 978-0-306-40060-5.
  3. ^ Abiteboul, Serge; Hull, Richard; Vianu, Victor (1995), Foundations of databases, p. 305, ISBN 9780201537710.
  4. ^ Datalog
  5. ^ Bancilhon. "Magic sets and other strange ways to implement logic programs" (PDF). PT: UNL. Archived from the original (PDF) on 2012-03-08. {{cite journal}}: Cite journal requires |journal= (help)
  6. ^ Pfenning, Frank; Schuermann, Carsten. "Twelf User's Guide". CMU. {{cite journal}}: Cite journal requires |journal= (help)
  7. ^ "Efficient top-down computation of queries under the well-founded semantics" (PDF). {{cite journal}}: Cite journal requires |journal= (help)
  8. ^ Gryz; Guo; Liu; Zuzarte (2004). "Query sampling in DB2 Universal Database" (PDF). Proceedings of the 2004 ACM SIGMOD international conference on Management of data - SIGMOD '04. p. 839. doi:10.1145/1007568.1007664. ISBN 978-1581138597.
  9. ^ Lifschitz (2011). "Datalog Programs and Their Stable Models". Datalog Reloaded. Lecture Notes in Computer Science. Vol. 6702. DE: Springer. pp. 78–87. CiteSeerX 10.1.1.225.4027. doi:10.1007/978-3-642-24206-9_5. ISBN 978-3-642-24205-2.
  10. ^ The XSB System, Version 3.7.x, Volume 1: Programmer's Manual (PDF).
  11. ^ Coral Database Project web page.
  12. ^ "DLVSYSTEM S.r.l. | DLV". www.dlvsystem.com. Retrieved 2018-11-29..
  13. ^ "DLVSYSTEM S.r.l. | DLV". www.dlvsystem.com. Retrieved 2018-11-29.
  14. ^ 4QL.
  15. ^ RDFox web page.
  16. ^ RDFox licence, archived from the original on 2018-02-21, retrieved 2018-11-29.
  17. ^ Souffle Compiler, 2018-12-12.
  18. ^ "Dyna", Dyna web page, archived from the original on 2016-01-17, retrieved 2016-11-07.
  19. ^ AbcDatalog.
  20. ^ Iris reasoner.
  21. ^ "Jena". Source forge.
  22. ^ SociaLite homepage, archived from the original on 2017-09-11, retrieved 2015-10-12.
  23. ^ Graal library.
  24. ^ "Flix The Programming Language", flix.dev, retrieved 2019-08-26.
  25. ^ Ramsdell, "Datalog", Tools, NEU.
  26. ^ Sangkok, Y, "Wrapper", Mitre Datalog, Git hub, (compiled to JavaScript).
  27. ^ Saenz-Perez (2011), "DES: A Deductive Database System", Electronic Notes in Theoretical Computer Science, 271, ES: 63–78, doi:10.1016/j.entcs.2011.02.011.
  28. ^ "Datalog", Racket (technical documentation).
  29. ^ "Datafun", Datafun in Racket (Links to paper, talk and github site).
  30. ^ Kenny, Kevin B (12–14 November 2014). Binary decision diagrams, relational algebra, and Datalog: deductive reasoning for Tcl (PDF). Twenty-first Annual Tcl/Tk Conference. Portland, Oregon. Retrieved 29 December 2015.[permanent dead link]
  31. ^ "bddbddb", Source forge.
  32. ^ ConceptBase.
  33. ^ FoundationDB Datalog Tutorial, archived from the original on 2013-08-09.
  34. ^ "Leapsight". Archived from the original on 2018-11-11.
  35. ^ Semmle QL.
  36. ^ "SecPAL". Microsoft Research. Archived from the original on 2007-02-23.

Bibliography

Further reading