Getting ProvSQL
There are three ways to run ProvSQL:
Installing from Source (recommended) – full-featured, suitable for production use and development.
Via PGXN – the PostgreSQL Extension Network wraps the source build behind a one-line
pgxn install provsqlcommand.Docker Container – no installation required, ideal for quickly trying ProvSQL without modifying your system.
Installing from Source
This is the recommended approach. It gives full access to all features, including external knowledge-compilation tools.
Getting the Source
Releases are available on the ProvSQL website and on the GitHub releases page. The source repository is hosted at https://github.com/PierreSenellart/provsql.
To clone the development version directly:
git clone https://github.com/PierreSenellart/provsql.git
Prerequisites
PostgreSQL ≥ 10. ProvSQL has been tested with versions 10–18 under Linux, macOS (x86-64 and ARM), and Windows Subsystem for Linux.
Build tools.
make, a C/C++ compiler supporting C++17, and PostgreSQL development headers (e.g.,postgresql-server-dev-XXon Debian-based systems, or thepostgresqlHomebrew formula on macOS).uuid-ossp PostgreSQL extension (included with most PostgreSQL packages; compile
contrib/when building from source).Boost libraries –
libboost-devandlibboost-serialization-dev(Debian/Ubuntu), or equivalent.(Optional) Knowledge-compilation tools for probability computation:
Each tool must be installed as an executable reachable in the PATH of the PostgreSQL server process (e.g.,
/usr/local/bin/). If the tools live outside that PATH (a Conda environment,$HOME/local/bin,/opt/...), point ProvSQL at them with theprovsql.tool_search_pathGUC; see Configuration Reference.(Optional) graph-easy for circuit visualisation (
libgraph-easy-perlon Debian-based systems, or CPAN). Same PATH considerations as above apply.
Installation
Compile:
makeTo select a specific PostgreSQL installation, adjust the
pg_configpath inMakefile.internal.Install (as a user with write access to the PostgreSQL directories):
make install
Enable the extension hook. Add the following line to postgresql.conf (typically
/etc/postgresql/VERSION/main/postgresql.confon Linux):shared_preload_libraries = 'provsql'
Then restart the PostgreSQL server:
service postgresql restart
Important
The shared_preload_libraries step is mandatory. ProvSQL installs a planner hook that rewrites queries transparently; without it the extension loads but provenance tracking is silently disabled.
In each database where you want to use ProvSQL, load the extension:
CREATE EXTENSION provsql CASCADE;
The
CASCADEkeyword automatically installs the requireduuid-osspextension if it is not already present.
Upgrading an Existing Installation
Starting with 1.2.1, ProvSQL ships PostgreSQL extension upgrade
scripts covering every released version from 1.0.0 onwards (see
sql/upgrades/ in the source tree for the exact chain available in
your checkout). To upgrade an existing installation:
Check out the new source, build, and install (as a user with write access to the PostgreSQL directories):
make make install
If you are upgrading across 1.3.0 (i.e. from any pre-1.3.0 release), migrate the on-disk provenance store before restarting PostgreSQL. 1.3.0 changed the memory-mapped layout from a flat
$PGDATA/provsql_*.mmapset to per-database files under$PGDATA/base/<db_oid>/with a versioned header. Build and run the bundled migration tool as thepostgressystem user with the server stopped (adjust the connection string for your socket directory if different):make provsql_migrate_mmap sudo -u postgres ./provsql_migrate_mmap -D $PGDATA -c "host=/var/run/postgresql"
The tool removes the old flat files on success. Skip this step when upgrading between 1.3.0+ releases.
Restart PostgreSQL so the new shared library is loaded:
service postgresql restart
In each database where
provsqlis already installed, issue:ALTER EXTENSION provsql UPDATE;
PostgreSQL will find the chain of upgrade scripts between your current version and the newly installed one and apply them in order, inside a single transaction. The persistent provenance circuit (stored in memory-mapped files) is preserved across the upgrade.
Note
Upgrades from pre-1.0.0 development snapshots are not
supported: no upgrade script is provided and you must
DROP EXTENSION provsql CASCADE; CREATE EXTENSION provsql
instead. Any provenance tokens previously stored in user tables
become orphans and will not be resolvable against the new
circuit store.
Note
In-place ALTER EXTENSION provsql UPDATE is not supported on
PostgreSQL < 12 when crossing the 1.4.0 → 1.5.0 boundary: the
1.5.0 release introduces new gate-type enum values via several
ALTER TYPE ... ADD VALUE statements, and PostgreSQL 10 and 11
reject more than one such statement inside the single transaction
PostgreSQL wraps the upgrade chain in. Fresh installs
(CREATE EXTENSION provsql) work on every supported PostgreSQL
version; the restriction only affects the in-place upgrade path
across that one boundary. To move a pre-1.5.0 database forward
under PostgreSQL 10 or 11, upgrade to PostgreSQL 12+ first (the
provenance store carries over unchanged) and then run
ALTER EXTENSION provsql UPDATE.
Testing Your Installation
Run the full regression suite as a PostgreSQL superuser:
make test
If tests fail, the pager (usually less) is launched on the diff between
expected and actual output.
Note
To run the tests as a non-default user, grant yourself superuser rights first:
ALTER USER your_login WITH SUPERUSER;
This assumes your_login is already a PostgreSQL user; on Debian-based
systems you can create it by running createuser your_login as the
postgres system user.
If your PostgreSQL server does not listen on the default port (5432), add
--port=xxxx to the EXTRA_REGRESS_OPTS line of Makefile.internal.
Tests that depend on optional external tools (c2d, d4, dsharp,
minic2d, weightmc, graph-easy) are automatically skipped if the
tool is not found in $PATH.
Uninstalling
make uninstall
Then remove the provsql entry from shared_preload_libraries in
postgresql.conf and restart the server.
Via PGXN
ProvSQL is distributed on the PostgreSQL Extension Network. If you have the pgxnclient tool installed, a single command (run as a user with write access to the PostgreSQL directories) downloads, builds, and installs the extension:
pgxn install provsql
You still need the build prerequisites (C++17 compiler, Boost
headers, PostgreSQL server development headers, and a working
pg_config on your PATH) and you still need to add provsql
to shared_preload_libraries in postgresql.conf and restart
the server afterwards – pgxn install wraps the source build but
does not modify your server configuration.
To install a specific version:
pgxn install provsql=X.Y.Z
Docker Container
For a quick trial without any local installation, a demonstration Docker
container is available. It is full-featured except for c2d and
minic2d support:
docker run inriavalda/provsql
To use a specific release version:
docker run inriavalda/provsql:X.Y.Z
Follow the on-screen instructions to connect to the PostgreSQL server inside the container with a PostgreSQL client.
ProvSQL Studio
ProvSQL Studio is a Python-backed web UI for ProvSQL, distributed as a separate package on PyPI. It connects to any ProvSQL-enabled database and provides interactive provenance inspection (Where mode), circuit visualisation (Circuit mode), and on-the-fly semiring evaluation. See ProvSQL Studio for installation and usage.
License
ProvSQL is open-source software distributed under the MIT License.
See the LICENSE file at the root of the repository or
view it on GitHub.