Process Data Transfer Deployment v1.0.x.x - medizininformatik-initiative/mii-process-data-transfer GitHub Wiki

Deploying the data-transfer process plugin to the DSF involves copying the process jar-file and configuring environment variables for the business process engine (BPE). Information of fixed issues and new features see Release Notes v1.0.1.0.

Prerequisites

  • A DSF installation of version 1.0.0 or higher. An installation guide can be found here.

Deployment

  • Add the mii-process-data-transfer-1.0.1.0.jar to the DSF BPE folder /opt/bpe/process:

     wget https://github.com/medizininformatik-initiative/mii-process-data-transfer/releases/download/v1.0.1.0/mii-process-data-transfer-1.0.1.0.jar
    
  • Make sure the process is readable by the bpe user or group, for example by executing:

    sudo chmod 440 mii-process-data-transfer-1.0.1.0.jar
    sudo chown root:bpe mii-process-data-transfer-1.0.1.0.jar
    
  • Modify the process exclude config in /opt/bpe/docker-compose.yml

    • DIC:
    @@ +45,1 @@
           DEV_DSF_BPE_PROCESS_EXCLUDED: |
    +        medizininformatik-initiativede_dataReceive|1.0
    
    • DMS:
    @@ +45,1 @@
           DEV_DSF_BPE_PROCESS_EXCLUDED: |
    +        medizininformatik-initiativede_dataSend|1.0
    

    Additional processes may be listed in your process exclude config.

Configuration

  • The configuration of the transfer-process is described here.

Preparations & Starting the Data-Transfer Send Process

  • How to prepare the DIC CDS FHIR store and how to start the data-transfer send process at a DIC is described here.