Info |
---|
This exercise is intended to teach you how to:
|
Last Updated:
On this page
Table of Contents | ||
---|---|---|
|
1. Accessing the server command line
Connect to the command line of the Ubuntu server, either by accessing the server machine physically or connecting remotely using SSH or similar.
The server should have around 16GB of memory and most of that should be available.
2. Install Java 11
Java 11 is required to run Snowstorm. Although this is an older version of Java it is a stable Long Term Service version. Snowstorm will switch to the newer Java 21 LTS version in the next couple of years.
Install Java 11 using the following command:
Code Block | ||||
---|---|---|---|---|
| ||||
sudo apt install -y openjdk-11-jre-headless |
Check that Java 11 will be used:
Code Block | ||||
---|---|---|---|---|
| ||||
java -version |
The first line of output should be something like:
openjdk version "11.0.18" 2023-01-17
3. Install Elasticsearch
The data store of Snowstorm version 8.x is Elasticsearch version 7.10.2, or a later 7.x version. Install Elasticsearch using the following commands:
Step | Command |
Add Elastic.co package signing key | curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /usr/share/keyrings/elastic.gpg |
Add Elastic.co package repository | echo "deb [signed-by=/usr/share/keyrings/elastic.gpg] https://artifacts.elastic.co/packages/7.x/apt stable main" \ |
Update package manager | sudo apt update |
Install Elasticsearch | sudo apt install -y elasticsearch=7.10.2 |
Set config options in temp file | echo -e "network.host: localhost\nxpack.security.enabled: false\n" > tmp.txt |
Copy in remaining config | sudo cat /etc/elasticsearch/elasticsearch.yml >> tmp.txt |
Replace config file without changing file permissions | cat tmp.txt | sudo tee /etc/elasticsearch/elasticsearch.yml |
Set JVM options in temp file | echo -e "-Xms4g\n-Xmx4g\n" > tmp.txt |
Strip existing memory settings from default options | sudo cat /etc/elasticsearch/jvm.options | grep -v '\-Xm' >> tmp.txt |
Replace JVM options file without changing file permissions | cat tmp.txt | sudo tee /etc/elasticsearch/jvm.options |
Update service manager | sudo systemctl daemon-reload |
Enable automatic start in service manager | sudo systemctl enable elasticsearch.service |
Start Elasticsearch | sudo systemctl start elasticsearch |
Check that Elasticsearch is running using curl:
Code Block | ||||
---|---|---|---|---|
| ||||
curl localhost:9200 |
The response should be JSON, including the lines:
{
"version": {
"number": "7.10.2"
}, "tagline": "You Know, for Search" }
4. Install Snowstorm
Install Snowstorm version 8.1.0 using the following commands:
Step | Command |
Add repo | echo "deb [trusted=yes] https://maven3.ihtsdotools.org/repository/debian-releases/ bionic main" | sudo tee /etc/apt/sources.list.d/maven3_ihtsdotools_org_repository_debian_releases.list |
Update package manager | sudo apt-get update |
Install Snowstorm | sudo apt-get install -y snowstorm=8.1.0 |
Update memory settings in supervisor config | sed -i 's/command.*/command = \/usr\/bin\/java -Xms4g -Xmx4g -Djava.security.egd=file:\/dev\/urandom -jar %(program_name)s.jar/g' /etc/supervisor/conf.d/snowstorm.conf |
Reload supervisor with new config | sudo supervisorctl reload |
Tail Snowstorm log until startup complete (1 mins) | sudo supervisorctl tail -f snowstorm |
If possible leave an SSH window open with this tail command running so you can easily access the log output.
5. Loading SNOMED CT International Edition
The latest SNOMED CT Belgian Extension release is from November 2022. This is dependant on the September 2022 International Edition so we will load this first.
Put the International Edition release file "SnomedCT_InternationalRF2_PRODUCTION_20220930T120000Z.zip" into the /opt/snowstorm directory on the server.
Apply the snowstorm file permissions with the command:
Code Block theme Confluence chown -R snowstorm:snowstorm /opt/snowstorm
The Snowstorm application has two APIs:
The Snowstorm FHIR API - this is the HL7 standards based API that is recommended for use in healthcare systems. This can be used to access any loaded code system including SNOMED CT, ICD, LOINC and others.
The Snowstorm Native API - this for the SNOMED CT Browser and Authoring Platform. It is the only way to load SNOMED CT editions and extensions.
We will use the Snowstorm Native API to run the imports. Access the native API swagger interface using the server ip-address and port 8080, for example - http://<ip-address>:8080/
First we need to start the import process by creating a new import job. Expand the "Import" section and then create a new import using the start-local-file-import endpoint with the following request body:
Code Block | ||||
---|---|---|---|---|
| ||||
{ "branchPath": "MAIN", "createCodeSystemVersion": true, "filePath": "/opt/snowstorm/SnomedCT_InternationalRF2_PRODUCTION_20220930T120000Z.zip", "type": "SNAPSHOT" } |
... and click on 'Execute'.
The Response Headers will contain the "Location" of the newly created job, the format is http://<ip-address>:8080/imports/<import_id>
. Copy this URL into a new tab to monitor the status of the job. The Snowstorm log also gives information about imports.
Warning |
---|
Make sure that you wait for the import to complete before starting the next step!
|
There are 357,473 active concepts in the September 2022 International Edition (including more than 1 million descriptions, 1 million relationships and 4 million reference set members).
The import should take around 40 minutes.
(See Snowstorm documentation loading-snomed).
4. Check Loaded Content
As previously mentioned Snowstorm has two APIs: FHIR and Native. Let's use each of them to check that the content is loaded. Once the import has a status of "COMPLETED" we know that the content is there, this is just a training exercise.
Snowstorm FHIR API - CodeSystem Resources
The FHIR API can list all loaded Code Systems including SNOMED CT code systems and others. When a new version of a SNOMED CT release is loaded it shows as a separate code system in FHIR.
Once the import is complete the FHIR CodeSystem listing will show the SNOMED CT code system - http://<ip-address>:8080/fhir/CodeSystem
It is also possible to check the number of concepts loaded by expanding the value set containing all active concepts in the International Edition. We use the module identifier "900000000000207008" to reference this - http://<ip-address>:8080/fhir/ValueSet/$expand?url=http://snomed.info/sct/900000000000207008?fhir_vs
Snowstorm Native API - Code System Registry
The Snowstorm Native API has a Code System Registry to manage SNOMED CT code systems. In the Native API code systems are listed as soon as they are created. Imported versions are listed separately.
Code systems that exist are listed here - http://<ip-address>:8080/codesystems
Once the import is complete the version will be listed here - http://<ip-address>:8080/codesystems/SNOMEDCT/versions
Check the registry throughout this exercise to see your changes reflected.
5. Loading the SNOMED CT Belgian Edition
Put the Belgian SNOMED CT release package "SnomedCT_ManagedServiceBE_PRODUCTION_BE1000172_20221115T120000Z.zip"into the /opt/snowstorm directory on the server.
Apply the snowstorm file permissions with the command:
Code Block theme Confluence chown -R snowstorm:snowstorm /opt/snowstorm
When loading a second SNOMED CT Edition for the first time a new Code System must be created:
On the swagger interface in the ‘Code Systems’ section look for the ‘Create a code system’ endpoint.
Use the following in the request to create the CodeSystem. Note the dependantVersionEffectiveTime allows you to create a CodeSystem dependent on a specific International Edition version.
Code Block | ||||
---|---|---|---|---|
| ||||
{ "name": "Belgian Edition", "shortName": "SNOMEDCT-BE", "countryCode": "be", "branchPath": "MAIN/SNOMEDCT-BE", "dependantVersionEffectiveTime": 20220930, "defaultLanguageCode": "en" } |
click 'Try it now'.
Now the extension package can be imported. Like last time, we need to start the import process by creating a new import job. Look for the Import endpoints and then create a new import using the start-local-file-import endpoint with the following importRequest parameter
Code Block | ||||
---|---|---|---|---|
| ||||
{ "branchPath": "MAIN/SNOMEDCT-BE", "createCodeSystemVersion": true, "filePath": "/opt/snowstorm/SnomedCT_ManagedServiceBE_PRODUCTION_BE1000172_20221115T120000Z.zip", "type": "SNAPSHOT" } |
click 'Try it now'.
Copy the "location" from the Response Headers and open this in a new browser tab.
Refresh the import job in your browser to see the status change from WAITING_FOR_FILE to RUNNING and then COMPLETED. You can also see how this is progressing in the Snowstorm log.
This should take about 5 minutes.
Warning |
---|
Make sure that you wait for the import status to change to COMPLETED before going any further. |
6. Check Loaded Content
Check that the Belgian Edition of SNOMED CT now appears in the FHIR API. The module identifier for the Belgian edition is 11000172109.