DSH: Database Supported Haskell
This is a Haskell library for database-supported program execution. Using this library a relational database management system (RDBMS) can be used as a coprocessor for the Haskell programming language, especially for those program fragments that carry out data-intensive and data-parallel computations.
Database executable program fragments can be written using the monad comprehension notation [2] and list processing combinators from the Haskell list prelude. Note that rather than embedding a relational language into Haskell, we turn idiomatic Haskell programs into SQL queries.
DSH faithfully represents list order and nesting, and compiles the list processing combinators into relational queries. The implementation avoids unnecessary data transfer and context switching between the database coprocessor and the Haskell runtime by ensuring that the number of generated relational queries is only determined by the program fragment's type and not by the database size.
DSH can be used to allow existing Haskell programs to operate on large scale data (e.g., larger than the available heap) or query existing database resident data with Haskell.
Note that this package is flagged experimental and therefore is not suited for production use (we mean it!). This is a proof of concept implementation only. To learn more about DSH, our paper entitled as "Haskell Boards the Ferry: Database-Supported Program Execution for Haskell" [1] is a recommended reading. The package includes a couple of examples that demonstrate how to use DSH.
In contrast to the DSH version described in [1], the current release does not rely anymore on the loop-lifting compilation technique together with the Pathfinder optimizer. Instead, it brings a completely rewritten query compiler based on Guy Blelloch's flattening transformation. This approach leads to a more robust compilation and produces more efficient query code.
Please read the release notes in README.md
.
http://db.inf.uni-tuebingen.de/staticfiles/publications/ferryhaskell.pdf
http://db.inf.uni-tuebingen.de/staticfiles/publications/haskell2011.pdf
[Skip to Readme]
Flags
Automatic Flags
Name | Description | Default |
---|---|---|
debugcomp | Print debugging information for comprehension rewrites | Disabled |
debuggraph | Print debugging information for graph rewrites (VL, TA) | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- DSH-0.10.0.2.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.4, 0.4.0.1, 0.4.1, 0.4.2, 0.4.2.1, 0.4.3, 0.5, 0.5.3, 0.5.5, 0.6, 0.6.1, 0.6.2, 0.6.6, 0.7, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.7.5, 0.7.6, 0.7.7, 0.7.8, 0.7.8.1, 0.7.8.2, 0.8.0.1, 0.8.1.0, 0.8.2.0, 0.8.2.1, 0.8.2.2, 0.8.2.3, 0.10.0.0, 0.10.0.1, 0.10.0.2, 0.12.0.0, 0.12.0.1 |
---|---|
Dependencies | aeson (>=0.8), algebra-dag (>=0.1), algebra-sql (>=0.1), ansi-wl-pprint (>=0.6), base (>=4.7 && <5), bytestring (>=0.10), containers (>=0.5), dlist (>=0.7), either (>=4.0), HDBC (>=2.3), HDBC-postgresql (>=2.3), kure (>=2.16), mtl (>=2.1), pretty (>=1.1), semigroups (>=0.16), set-monad (>=0.1), template-haskell (>=2.9), text (>=1.1) [details] |
License | BSD-3-Clause |
Author | George Giorgidze, Alexander Ulrich, Nils Schweinsberg and Jeroen Weijers |
Maintainer | alex@etc-network.de |
Category | Database |
Uploaded | by AlexUlrich2 at 2014-12-14T23:08:51Z |
Distributions | |
Reverse Dependencies | 2 direct, 0 indirect [details] |
Executables | vldot |
Downloads | 31129 total (35 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs not available [build log] Last success reported on 2014-12-21 [all 7 reports] |