Module 5 Lesson 4 Lab 9: Ingest to FHIR
Overview
In this lab, you will learn how to use the FHIR Loader utility (https://github.com/microsoft/fhir-loader) to ingest FHIR data into the FHIR service.
Data ingestion into FHIR is a vital capability for a healthcare organization’s integration with multiple health data systems. While the FHIR service does features a custom $import operation for data ingestion, it is only recommended for the initial transfer of data into the FHIR service (data loading at high speeds). Alternate approaches can be used for the ongoing, transactional loading of FHIR data. In this lab, we will be using Microsoft’s FHIR Loader (OSS) utility, which is an Azure Function App built for importing data into the FHIR service.
The open-source FHIR Loader is designed to ease the process of FHIR data import into the FHIR service. The operation simply involves uploading FHIR data files to Azure blob storage, and from there the FHIR Loader automatically transfers the data for persistence in the FHIR service database. The user may upload FHIR Bundles in regular JSON format (.zip compressed or non-compressed) or NDJSON format (non-compressed). Operationally, FHIR Loader works by making parallel asynchronous API calls to the FHIR service.
Below is a component view of FHIR Loader connected to the FHIR service endpoint.
In Lab 7, the ARM template automatically deployed and configured FHIR Loader to connect with FHIR service in your resource group.
For this lab, you will upload FHIR data bundles for import into the FHIR service. You will need to examine error logs and determine what is preventing the data in one of the bundles from being ingested.
Prerequisites
-
Successful completion of Lab 7
-
A text editor (e.g., Visual Studio Code (see https://code.visualstudio.com/)
Learning objectives
In this lab, you will:
-
Ingest FHIR data into FHIR service with FHIR Loader
-
Identify issues in loading FHIR bundles
-
Recognize data constraints with FHIR Loader
-
Track and compare FHIR Loader operations
Exercise 1: Download Sample Data
- Start by downloading these two .zip files to the VM desktop (Open the following URLs in new tabs. You will see a download button on the right).
- good_bundles.zip at (https://github.com/microsoft/azure-health-data-services-workshop/blob/main/Challenge-03%20-%20Ingest%20to%20FHIR/samples/good_bundles.zip)
Exercise 2: Use FHIR Loader to upload data
-
Open a tab in the browser. Go to Azure Portal
-
Login with your credentials.
-
Enter Storage Account in the Search area on the home page. Select the option accordingly.
- Click on Create.
-
Update the below details:
a. Select your Azure subscription
b. Select your Azure Health Data services resource group
c. Storage account name – fhir123
d. Select Review
-
Once the Validation is a success. Click on Create.
-
The deployment takes a while to complete. You can see the service in your resource group.
Exercise 3: Upload data to FHIR
- Go to Azure Portal and select Resource Groups.
- Select your resource group created.
-
Navigate to your Resource group – AHDSW. Select the Storage account.
-
In the Storage account, select the Storage browser blade and then select Blob containers.
- Select the zip container and select Upload. If you don’t find it, you can create a new container with the name zip. Once created, upload the files.
-
Browse and upload the good_bundles.zip file downloaded in Exercise 1 of this lab.
-
Select Zip in Select an existing container field.
-
Select Upload, and the FHIR Loader will automatically import the data from the .zip file into the FHIR service database.
We have successfully uploaded and import data from the file good_bundles.zip.