PostgreSQL plugins¶
Contents
The Orthanc project provides two official plugins to replace the default storage area (on the filesystem) and the default SQLite index by a PostgreSQL database.
For general information, check out the official homepage of the plugins.
For information about scalability, make sure to read the section about multiple writers in large-scale deployments.
The source code of the PostgreSQL plugins can be found in the
orthanc-databases
Mercurial repository, next to the
source code of the ODBC and
MySQL/MariaDB plugins.
Compilation¶
Static linking¶
The procedure to compile these plugins is similar to that for the core of Orthanc. The following commands should work for most UNIX-like distribution (including GNU/Linux):
$ mkdir BuildPostgreSQL
$ cd BuildPostgreSQL
$ cmake ../PostgreSQL -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release
$ make
The compilation will produce 2 shared libraries, each containing one plugin for Orthanc:
OrthancPostgreSQLIndex
replaces the default SQLite index of Orthanc by PostgreSQL.OrthancPostgreSQLStorage
makes Orthanc store the DICOM files it receives into PostgreSQL.
Microsoft Windows and Apple OS X¶
Pre-compiled binaries for Microsoft Windows 32bit are also available. A package for Apple’s Mac OS X is available courtesy of Orthanc Team.
Dynamic linking on Ubuntu 16.04¶
If static linking is not desired, here are build instructions for Ubuntu 16.04 (provided build dependencies for the core of Orthanc have already been installed):
$ sudo apt-get install libpq-dev postgresql-server-dev-all
$ mkdir BuildPostgreSQL
$ cd BuildPostgreSQL
$ cmake ../PostgreSQL -DCMAKE_BUILD_TYPE=Release \
-DALLOW_DOWNLOADS=ON \
-DUSE_SYSTEM_GOOGLE_TEST=OFF \
-DUSE_SYSTEM_ORTHANC_SDK=OFF
$ make
Dynamic linking on other GNU/Linux distributions¶
The build instructions should always be very similar to those for Ubuntu 16.04. One difficulty that could however arise is that it is possible that the CMake environment that is shipped with the GNU/Linux distribution cannot locate a recent version of the development headers for PostgreSQL. This leads to an error while invoking CMake that looks like:
-- Could NOT find PostgreSQL (missing: PostgreSQL_TYPE_INCLUDE_DIR)
In such a situation, please add your version of PostgreSQL to the
macro PostgreSQL_ADDITIONAL_VERSIONS
that is defined at the end of
the Resources/CMake/PostgreSQLConfiguration.cmake file
in the sources of the project.
Usage¶
You of course first have to install Orthanc, with a version above 0.9.5. You then have to create a database dedicated to Orthanc on some PostgreSQL server. Please refer to the PostgreSQL documentation.
Once Orthanc is installed and the database is created, you must add a
section in the configuration file that
specifies the address of the PostgreSQL server together with your
credentials. You also have to tell Orthanc in which path it can find
the plugins: This is done by properly modifying the Plugins
option. You could for instance adapt the following configuration
file:
{
"Name" : "MyOrthanc",
"PostgreSQL" : {
"EnableIndex" : true,
"EnableStorage" : true,
"Host" : "localhost",
"Port" : 5432,
"Database" : "orthanc",
"Username" : "orthanc",
"Password" : "orthanc",
"EnableSsl" : false, // New in release 3.0
"MaximumConnectionRetries" : 10, // New in release 3.0
"ConnectionRetryInterval" : 5, // New in release 3.0
"IndexConnectionsCount" : 1, // New in release 4.0
"TransactionMode": "Serializable", // New in release 6.0
"EnableVerboseLogs": false // New in release 6.0
},
"Plugins" : [
"/home/user/orthanc-databases/BuildPostgreSQL/libOrthancPostgreSQLIndex.so",
"/home/user/orthanc-databases/BuildPostgreSQL/libOrthancPostgreSQLStorage.so"
]
}
Important: The EnableIndex
and EnableStorage
options must
be explicitly set to true
, otherwise Orthanc will continue to use
its default SQLite back-end and the filesystem storage area.
Remark 1: When using the Storage
PostgreSQL plugin, the DICOM
files are stored as large objects in the database. This might
actually consume more space than the DICOM file itself. We have
observed overhead up to 40%. However, it seems this overhead is
temporary and comes from Write-Ahead Logging. Check this discussion
on the Orthanc Users group for more info).
Remark 2: A typical usage of the PostgreSQL plugin is to enable
only the Index
, and to use the default filesystem storage for
DICOM files (on a NAS with proper disaster recovery strategies). This
setup provides best performance for large-scale databases.
Remark 3: Setting the EnableSsl
to true
forces the use of
SSL connections between
Orthanc and the PostgreSQL server. It is a synonym for
sslmode=require
in connections URI (see below). Setting
EnableSsl
to false
corresponds to sslmode=disable
(i.e. SSL is not used, even if it is both available in Orthanc and
PostgreSQL). To choose other values for the SSL mode (i.e. allow
and prefer
), please use connection URIs.
Orthanc must of course be restarted after the modification of its configuration file. The log will contain an output similar to:
$ ./Orthanc Configuration.json
W0212 16:30:34.576972 11285 main.cpp:632] Orthanc version: 0.8.6
W0212 16:30:34.577386 11285 OrthancInitialization.cpp:80] Using the configuration from: Configuration.json
[...]
W0212 16:30:34.598053 11285 main.cpp:379] Registering a plugin from: /home/jodogne/Subversion/orthanc-databases/BuildPostgreSQL/libOrthancPostgreSQLIndex.so
W0212 16:30:34.598470 11285 PluginsManager.cpp:258] Registering plugin 'postgresql-index' (version 1.0)
W0212 16:30:34.598491 11285 PluginsManager.cpp:148] Using PostgreSQL index
W0212 16:30:34.608289 11285 main.cpp:379] Registering a plugin from: /home/jodogne/Subversion/orthanc-databases/BuildPostgreSQL/libOrthancPostgreSQLStorage.so
W0212 16:30:34.608916 11285 PluginsManager.cpp:258] Registering plugin 'postgresql-storage' (version 1.0)
W0212 16:30:34.608947 11285 PluginsManager.cpp:148] Using PostgreSQL storage area
[...]
W0212 16:30:34.674648 11285 main.cpp:530] Orthanc has started
Instead of specifying explicit authentication parameters, you can also use the PostgreSQL connection URIs syntax. For instance:
{
"Name" : "MyOrthanc",
"PostgreSQL" : {
"EnableIndex" : true,
"EnableStorage" : true,
"ConnectionUri" : "postgresql://username:password@localhost:5432/database?sslmode=prefer"
},
"Plugins" : [
"/home/user/orthanc-databases/BuildPostgreSQL/libOrthancPostgreSQLIndex.so",
"/home/user/orthanc-databases/BuildPostgreSQL/libOrthancPostgreSQLStorage.so"
]
}
Remark: The Debian Med project maintains another useful set of instructions.
Advanced options¶
Several advanced options are available as well to fine-tune the configuration of the PostgreSQL plugins. They are documented below.
Multiple writers or connections¶
Starting with Orthanc 1.9.2 and PostgreSQL 4.0, it is possible to use multiple writers or connections in large-scale deployments. Here is the list of configuration that control this behavior:
Lock
must be set tofalse
(cf. below)MaximumConnectionRetries
governs how many times Orthanc tries to connect to the database, as well as how many times Orthanc replays transactions to deal with collisions between multiple writers inSerializable
transaction mode or with any transient transaction errors in all transaction modes.IndexConnectionsCount
controls the number of connections from the index plugin to the PostgreSQL database. It is set to1
by default, which corresponds to the old behavior of Orthanc <= 1.9.1.ConnectionRetryInterval
is only used when opening one database connection to PostgreSQL.TransactionMode
has been added in the release 6.0. 2 values are allowed:Serializable
(that has always been the default mode for Orthanc) andReadCommitted
that is available only from release 6.0. See below.The PostgreSQL plugin supports the revision mechanism to protect metadata and attachments from concurrent modifications.
Locking¶
By default, the plugins lock the database (using PostgreSQL advisory
locks)
to prevent other instances of Orthanc from using the same PostgreSQL
database. If you want several instances of Orthanc to share the same
database or if you need multiple connections to the PostgreSQL
database, set the Lock
option to false
in the configuration
file:
{
"Name" : "MyOrthanc",
"PostgreSQL" : {
"EnableIndex" : true,
"EnableStorage" : true,
"Lock" : false,
"ConnectionUri" : "postgresql://username:password@localhost:5432/database"
},
"Plugins" : [
"/home/user/orthanc-databases/BuildPostgreSQL/libOrthancPostgreSQLIndex.so",
"/home/user/orthanc-databases/BuildPostgreSQL/libOrthancPostgreSQLStorage.so"
]
}
Obviously, one must be very cautious when sharing the same database between instances of Orthanc. In particular, all these instances should share the same configuration.
Keep-alive¶
After some period of inactivity (users have reported 10 hours), you might experience an error such as:
E0220 03:20:51.562601 PluginsManager.cpp:163] Exception in database back-end: Error in PostgreSQL: server closed the connection unexpectedly.
This probably means the server terminated abnormally before or while processing the request.
E0220 06:51:03.924868 PluginsManager.cpp:163] Exception in database back-end: Error in PostgreSQL: no connection to the server
This is due to a timeout in the PostgreSQL server. Please make sure to enable keep-alive in the configuration of your PostgreSQL server
Scalability¶
When configuring your PostgreSQL plugin, ensure you’ve read the scalability section
Transaction modes (new in version 6.0)¶
Starting from the release 6.0 of the plugin and Orthanc 1.12.3, orthanc supports 2 transaction modes that
can be configured in the TransactionMode
configuration of the PostgreSQL
plugin:
Serializable
in which all write transactions are serialized which might lead to performance bottlenecks when lots of threads or Orthanc instances are trying to write to the same Database.ReadCommitted
that allows multiple threads or Orthanc instances to write at the same time to the same Database.
Upgrades/Downgrades¶
New vesions of the PostgreSQL might modify the DB schema by adding new columns/tables/triggers. Upgrades from one revision to the other is always automatic.
However, if, for some reasons, you would like to reinstall a previous plugin version, the older plugin might refuse to start because the revision is newer and unknown to it.
Starting from version 6.0 of the plugin, we are providing a downgrade script in case you want, e.g, to reinstall Orthanc 1.12.3 and PostgreSQL 5.1 (whose DB schema is at revision 1).
To downgrade from revision 2 to revision 1, one might run this procedure:
$ wget https://orthanc.uclouvain.be/hg/orthanc-databases/raw-file/default/PostgreSQL/Plugins/SQL/Downgrades/Rev2ToRev1.sql
$ psql -U postgres -f Rev2ToRev1.sql
Note for large databases and multiple Orthanc instances:¶
When upgrading from revision 1 to revision 2, the upgrade might take quite some time. E.g, we have observed the upgrade taking 17 minutes on a DB with 300.000 studies and 150 millions instances. Orthanc will not respond during the upgrade. Therefore, if you have enabled autohealing (automatic restart in case Orthanc is not responsive), you should likely disable it during the first start with the PostgreSQL plugin v6.0.
Also note that, if you have multiple containers connected to the same DB, all containers will try to acquire an exclusive lock to perform the upgrade of the DB. Only one of them will actually perform the upgrade. Also note that you should not perform a rolling updates of the Orthanc containers when performing a DB upgrade. All Orthanc containers should use the same version of the plugin, the one that is compatible with the current revision.
Therefore, in complex setups, it might be simpler/safer to simply shut-down the Orthanc containers, perform the upgrade manually and then, restart the Orthanc containers with the newest version of the plugin.
To upgrade manually from revision 1 to revision 2, one might run this procedure on the existing DB (note: make
sur to select the correct DB and schema (Orthanc is using the default public
shema)):
$ wget https://orthanc.uclouvain.be/hg/orthanc-databases/raw-file/default/PostgreSQL/Plugins/SQL/Upgrades/Rev1ToRev2.sql
$ wget https://orthanc.uclouvain.be/hg/orthanc-databases/raw-file/default/PostgreSQL/Plugins/SQL/PrepareIndex.sql
$ psql -U postgres -f Rev1ToRev2.sql
$ psql -U postgres -f PrepareIndex.sql
This procedure is identical to the one performed automatically by Orthanc when it detects that an upgraded is required.
Troubleshooting¶
SCRAM authentication¶
Note
This section only applies to releases <= 3.2 of the PostgreSQL plugins. Starting with release 3.3, the plugins use a version of libpq that should support SCRAM authentication.
In the releases 3.2 of the PostgreSQL plugins, the precompiled binaries use an old, but stable version of the PostgreSQL client (libpq 9.6.1). This makes these binaries very portable, however they might not be compatible with more recent features of PostgreSQL.
In particular, the precompiled binaries are not compatible with SCRAM
authentication
that is available since PostgreSQL 10. If you get the error psql:
authentication method 10 not supported
, this indicates that the
PostgreSQL plugins cannot connect to a PostgreSQL server because SCRAM
is enabled.
Ian Smith has reported the following method to disable SCRAM:
Drop/delete the
orthanc
database and user in PostgreSQL.Edit the files
postgresql.conf
andpg_hba.conf
and changescram-sha-256
tomd5
in all cases.Add the
orthanc
user and database in PostgreSQL again.Restart Orthanc.