GithubHelp home page GithubHelp logo

isabella232 / healthcare-data-harmonization-dataflow Goto Github PK

View Code? Open in Web Editor NEW

This project forked from googlecloudplatform/healthcare-data-harmonization-dataflow

0.0 0.0 0.0 205 KB

License: Apache License 2.0

Shell 1.31% Java 98.69%

healthcare-data-harmonization-dataflow's Introduction

HL7v2 to FHIR Pipeline

This directory contains a reference Cloud Dataflow pipeline to convert HL7v2 messages to FHIR resources. Please note that additional configurations and hardening are required before processing PHI data with this pipeline.

Prerequisites

Permissions

Make sure you have enough permissions to run Cloud Dataflow jobs.

The Cloud Dataflow Controller Service Account needs the following permissions.

  • roles/pubsub.subscriber.
    • To listen for PubSub notifications from new messages. The service account only needs the role on the specific PubSub subscription.
  • roles/healthcare.hl7V2Consumer.
    • To access messages in your HL7v2 store. The service account only needs the role on the source HL7v2 Store.
  • roles/healthcare.fhirResourceEditor.
    • To write transformed resources to your FHIR store. The service account only needs this role on the target FHIR Store.
  • roles/storage.objectAdmin.
    • To access mapping and harmonization configurations on GCS. The service account needs this role on all GCS buckets that the mappings reside in.

How to Run

Build a fat JAR of the pipeline by running the following from the project directory.

  • Please make sure gradle is added to PATH before running the following commands.
# Generate wrapper classes.
gradle wrapper
./gradlew shadowJar

A JAR file should be generated in build/libs folder.

Now run the pipeline with the following command:

# Please set the environment variables in the following command.

java -jar build/libs/converter-0.1.0-all.jar --pubSubSubscription="projects/${PROJECT}/subscriptions/${SUBSCRIPTION}" \
                                             --readErrorPath="gs://${ERROR_BUCKET}/read/read_error.txt" \
                                             --writeErrorPath="gs://${ERROR_BUCKET}/write/write_error.txt" \
                                             --mappingErrorPath="gs://${ERROR_BUCKET}/mapping/mapping_error.txt" \
                                             --mappingPath="gs://${MAPPING_BUCKET}/mapping.textproto" \
                                             --fhirStore="projects/${PROJECT}/locations/${LOCATION}/datasets/${DATASET}/fhirStores/${FHIRSTORE}" \
                                             --runner=DataflowRunner \
                                             --project=${PROJECT}

A few notes:

  • By default, streaming pipelines do not have autoscaling enabled, please use either --enableStreamingEngine (recommended) or a combination of --autoscalingAlgorithm=THROUGHPUT_BASED and --maxNumWorkers=N to manually enable it. See this page for more details.
  • For production use, we recommend enabling agent metrics by appending --experiments=enable_stackdriver_agent_metrics as an option (you will need to grant roles/monitoring.metricWriter to Dataflow controller service account as well), see this page for more details. Additionally, we highly recommend limiting the number of threads on each worker, e.g. --numberOfWorkerHarnessThreads=10. You can tune the limit based on your workload.
  • To generate a template instead of running the pipeline, add --stagingLocation=gs://${STAGING_LOCATION} --templateLocation=gs://${TEMPLATE_LOCATION} to the above command. See here

Please take a look at the PipelineRunner class to see the concrete meaning of each argument.

You should be able to verify that a Dataflow pipeline is running from the cloud console UI. Data should start flowing through the pipeline and arrive at the FHIR Store, use the SearchResources API to verify that FHIR Resources are written correctly.

Support

Please file GitHub issues if you encounter any problems.

healthcare-data-harmonization-dataflow's People

Contributors

lastomato avatar rpolyano avatar sujy-name-is-su avatar yeweidaniel avatar yinyanghu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.