From 77fa408d8237f8d46e51209ea8b6b005f0e42a2a Mon Sep 17 00:00:00 2001 From: Milan Malfait Date: Mon, 4 Dec 2023 15:51:57 +0000 Subject: [PATCH] Update `MaximumPatientCount` limits --- orthanc/orthanc-anon/config/orthanc.json | 8 ++++---- orthanc/orthanc-raw/config/orthanc.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/orthanc/orthanc-anon/config/orthanc.json b/orthanc/orthanc-anon/config/orthanc.json index d0e2fa870..e0f2c7f4b 100644 --- a/orthanc/orthanc-anon/config/orthanc.json +++ b/orthanc/orthanc-anon/config/orthanc.json @@ -5,14 +5,14 @@ "${ORTHANC_USERNAME}": "${ORTHANC_PASSWORD}" }, - // Limit the maximum number of instances - "MaximumPatientCount": 1200, - // Path to the directory that holds the heavyweight files (i.e. the // raw DICOM instances). Backslashes must be either escaped by // doubling them, or replaced by forward slashes "/". "StorageDirectory" : "/var/lib/orthanc/db", + // Limit the maximum number of instances + "MaximumPatientCount": 200, + // Path to the directory that holds the SQLite index (if unset, the // value of StorageDirectory is used). This index could be stored on // a RAM-drive or a SSD device for performance reasons. @@ -29,4 +29,4 @@ // Trust CAs for DICOMweb over HTTPS "HttpsCACertificates": "/etc/ssl/certs/ca-certificates.crt" -} \ No newline at end of file +} diff --git a/orthanc/orthanc-raw/config/orthanc.json b/orthanc/orthanc-raw/config/orthanc.json index 2d0585949..c74334936 100644 --- a/orthanc/orthanc-raw/config/orthanc.json +++ b/orthanc/orthanc-raw/config/orthanc.json @@ -5,14 +5,14 @@ "${ORTHANC_USERNAME}": "${ORTHANC_PASSWORD}" }, - // Limit the maximum number of instances - "MaximumPatientCount": 1200, - // Path to the directory that holds the heavyweight files (i.e. the // raw DICOM instances). Backslashes must be either escaped by // doubling them, or replaced by forward slashes "/". "StorageDirectory" : "/var/lib/orthanc/db", + // Limit the maximum number of instances + "MaximumPatientCount": 20000, + // Path to the directory that holds the SQLite index (if unset, the // value of StorageDirectory is used). This index could be stored on // a RAM-drive or a SSD device for performance reasons. @@ -25,4 +25,4 @@ "Gdcm" : { "Enable" : true } -} \ No newline at end of file +}