Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Work in progress

This document is actively under development. This info box will be removed when the team is finished.

As outlined in the End-to-End Data Flow document, data moves bidirectionally between the Android client, OpenSRP server and OpenMRS. Data is represented in different structures, databases and data models in each of these systems. This document provides a logical walk through, with examples, of a standard client record and their encounters from the point of origin to the OpenMRS and reporting systems.

Note: This walk through is based on the event client data model that is deployed in the Zambia Electronic Immunization Registry (ZEIR). Other implementations may be following a different model.

All Event Types:

Out of Area Service - Vaccination
New Woman Registration
Birth Registration
Out of Area Service - Growth Monitoring
Vaccination
Growth Monitoring
Recurring Service
Death
Move To Catchment
Update Birth Registration
AEFI


Steps:

  • Android Client:
    • Child Registration Form:
      • When a child registration form is created, the form is saved as an event with eventType "Birth Registration"
      • The form is saved as JSON and a number of processes kick off:
        • A child is created in the client table based on that birth registration form. The child is assigned a zeir_id.
        • A mother is created in the client table based on that birth registration form. The mother is assigned a m_zeir_id in the database.
        • A relationship is create in both clients in the client table.
        • The view is updated and the child is shown in the register.
    • Update Child Registration Form:
      • Any updates to the child registration form are captured as events as eventType "Update Birth Registration"
      • The changes are stored in the event as JSON and any changes to the child or mother update the associated client in the client table
    • Capture Weight or Length:
      • When the user captures a weight or length, an event is saved in the system as eventType "Growth Monitoring"
      • This weight is only stored in the event table
    • Recurring Service:
      • When the user captures a recurring service like Vitamin A supplement, Deworming and ITN, they are stored in the events table as eventType "Recurring Services"
      • Each recurring service is stored as JSON in the event table
      • Business logic is performed to update the schedule and view
    • Vaccinations:
      • When a user captures a vaccination event, the event is stored in the events table as eventType "Vaccination"
      • Each recurring service is stored as JSON in the event table
      • Business logic is performed to update the schedule and view
  • Sync:
    • On a regular interval the Android client syncs with the OpenSRP Server through the REST API
    • The device pushes all of its clients to the server followed by the events
      • When the event hits the OpenSRP server, it is assigned a serverVersion that is effectively a millisecond timestamp so we can query for all events after a particular time
    • The device then queries the server to pull down all events that it should know about.
      • This query is generated from the Android client based on the user ID, location IDs associated with the user's team and the last sync time (serverVersion)
    • All events that have happened based on the query credentials are compressed and returned back to the Android client
    • The Android client receives these events and applies them to the local SQLite database
  • OpenSRP Server:
    • A number of actions happen for each client and event that is received by the OpenSRP server:
      • For each birth registration or update birth registration OpenSRP pushes the form to OpenMRS to create a new person and patient as well as a patient relationship between the mother and child.
      • For each event, OpenSRP server pushes an encounter with the associated encounterType/eventType and observations to OpenMRS
    • Each time a person is created or an encounter is created in OpenMRS, it raises an entry in the OpenMRS atom feed
    • On a regular schedule, OpenSRP server queries the patient and encounter atom feeds and performs processes on each:
      • For each new entry in the atom feed, OpenSRP queries the OpenMRS REST API
      • The person or encounter is returned and OpenSRP queries the couch database to see if that person already exists in the client table or if the encounter exists in the event table.
      • If they don't exist, OpenSRP creates the client or event.
      • If the person already exists, OpenSRP updates the identifier information in the Client table.
  • ETL:
    • On a regular schedule, an ETL process is run to flatten the Event Client model for data analytics.
    • This ETL queries the OpenSRP Server's couch database and stores information in PostgreSQL database
    • On a regular schedule (nightly), CSV files are dumped from the PostgreSQL and forwarded to the data analytics platform


  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.