From 16211cfedf5057a073dd14c72a10f9cc9b8069de Mon Sep 17 00:00:00 2001 From: Croft Date: Tue, 5 Dec 2023 13:05:10 +0100 Subject: [PATCH 1/2] Added Blaze performance info to README --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2a4f851..5e180f9 100644 --- a/README.md +++ b/README.md @@ -327,6 +327,12 @@ The FHIR API uses basic auth. You can find the credentials in `/etc/bridgehead/< Note that if you don't have a DNS certificate for the Bridgehead, you will need to allow an insecure connection. E.g. with curl, use the `-k` flag. +The storage space on your hard drive will depend on the number of FHIR resources that you intend to generate. As a general rule of thumb: +``` +Disk space (kilobytes) = 2 * (5 * + ) +``` +For more information on Blaze performance, please refer to [import performance](https://github.com/samply/blaze/blob/master/docs/performance/import.md). + #### ETL for BBMRI and GBA Normally, you will need to build your own ETL to feed the Bridgehead. However, there is one case where a short cut might be available: From 28c38ed569aa77318253bc02495d702eb0b5093c Mon Sep 17 00:00:00 2001 From: "d.croft@dkfz-heidelberg.de" Date: Fri, 8 Dec 2023 10:37:08 +0100 Subject: [PATCH 2/2] Provided a more general relation between resource count & disk space --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5e180f9..a73781b 100644 --- a/README.md +++ b/README.md @@ -327,10 +327,8 @@ The FHIR API uses basic auth. You can find the credentials in `/etc/bridgehead/< Note that if you don't have a DNS certificate for the Bridgehead, you will need to allow an insecure connection. E.g. with curl, use the `-k` flag. -The storage space on your hard drive will depend on the number of FHIR resources that you intend to generate. As a general rule of thumb: -``` -Disk space (kilobytes) = 2 * (5 * + ) -``` +The storage space on your hard drive will depend on the number of FHIR resources that you intend to generate. This will be the sum of the number of patients/subjects, the number of samples, the number of conditions/diseases and the number of observations. As a general rule of thumb, you can assume that each resource will consume about 2 kilobytes of disk space. + For more information on Blaze performance, please refer to [import performance](https://github.com/samply/blaze/blob/master/docs/performance/import.md). #### ETL for BBMRI and GBA