DEV Community

Evgeny Shvarov for InterSystems

Posted on • Updated on

COVID-19 Analytics using InterSystems IRIS

Hi colleagues!

Every day Johns Hopkins University publishes new data on coronavirus COVID-19 pandemic status.

I built a simple InterSystems IRIS Analytics dashboard using InterSystems IRIS Community Edition in docker deployed on GCP Kubernetes which shows key measures of the disease outbreak.

This dashboard is an example of how information from CSV could be analyzed with IRIS Analytics and deployed to GCP Kubernetes in a form of InterSystems IRIS Community Edition.

Added the interactive map of the USA:

The next dashboard shows the timeline:

And can be filtered by country. E.g. here is in the USA:

The source code of the application is available on Open Exchange.

How does it work?

Demo runs using InterSystems IRIS Community Edition docker container and exposes InterSystems IRIS BI dashboards using DeepSee Web representation layer via MDX2JSON REST API. Its deployed on GCP and operates using Google Kubernetes Engine (GKE).

How it was developed 

The data is taken from the Johns Hopkins repository in CSV form.

Classes, cubes, and initial pivots were generated via Analyzethis module, thanks @peter .Steiwer!

Import method then was introduced using the CSVTOCLASS method, thanks @Eduard.Lebedyuk!

Dashboards are rendered with DeepSee Web (DSW) module.

IRIS BI artifacts (pivots, dashboards) were exported by ISC.DEV module:

IRISAPP> d ##class(dev.code).workdir("/irisdev/app/src")

IRISAPP> d ##class(dev.code).export("*.dfi")

The code has been developed using VSCode ObjectScript, thanks @dmitry .Maslennikov.

Building docker image for development and deployment

All the deployment sits in Dockerfile. With Dockerfile we build an image with data, web apps and modules installed and properly setup and then we deploy the image to GCP Kubernetes.

This Dockerfile is a modified version of this Template Dockerfile which is described very well in this article.

So I will stop only on new parts. 

17 COPY  data files

here we copy CSV files from data folder to the container

set pfile = "/opt/irisapp/files/covid-"_$tr($zd($h-1),"/","-")_".csv", rc=0 \
  do ##class(AnalyzeThis.Generated.covid03162020).Import(,pfile,",", ,1,.rc) \
  write "imported records: "_rc \
  do ##class(%DeepSee.Utils).%BuildCube("covid03162020") \

This code imports the latest data and builds a cube.

zpm "install dsw" \

Here we install DeepSee Web.

do EnableDeepSee^%SYS.cspServer("/csp/irisapp/") \

This enables IRIS Analytics (DeepSee) for /csp/irisapp web app.

zn "%SYS" \
  write "Modify MDX2JSON application security...",! \
  set webName = "/mdx2json" \
  set webProperties("AutheEnabled") = 64 \
  set webProperties("MatchRoles")=":%DB_IRISAPP" \
  set sc = ##class(Security.Applications).Modify(webName, .webProperties) \
  if sc<1 write $SYSTEM.OBJ.DisplayError(sc)

This code is needed to make the analytics web app be available without credentials.

COPY irisapp.json /usr/irissys/csp/dsw/configs/

And this command helps to set DSW configuration.

Deployment to Kubernetes

The deployment procedure is being processed by Github Actions - and this workflow handles it on every commit to the repository.

Github workflow uses Dockerfile we built on a previous step along with Terraform and Kubernetes settings. 

The procedure is identical to the one described in this article by @mikhail .Khomenko.

How to run and develop it locally

You are very welcome to run, develop  and collaborate with this project.

To run it locally using docker do:

Clone/git pull the repo into any local directory

$ git clone https://github.com/intersystems-community/objectscript-docker-template.git
Enter fullscreen mode Exit fullscreen mode

Open the terminal in this directory and run:

$ docker-compose build
Enter fullscreen mode Exit fullscreen mode
  1. Run the IRIS container:
$ docker-compose up -d
Enter fullscreen mode Exit fullscreen mode

Once the container is built up and running open the application on:

localhost:yourport/dsw/index.html#!/d/Covid19/Countries.dashboard?ns=IRISAPP

How to Develop

This repository is ready to code in VSCode with the ObjectScript plugin. Install VSCodeDocker and ObjectScript plugin and open the folder in VSCode.

How to Contribute

Fork the repository, make changes and send Pull Requests. See the video for more information.

Would love to see your contribution! 

Top comments (0)