We need your crazy new technology ideas!

Next week’s developer forum topic is “Crazy new technology ideas!”.

The idea is that we should take a step back, think outside the box, and envision novel technology approaches we could take to OpenMRS.

So…I’m asking you all to start brainstorming!

You can post your ideas on this thread, or save them for next week’s developer forum.


An idea of mine: (note: yours should be crazier)

We could invest in some Event-driven thinking (which we’ve never really done in the core OpenMRS world) to let people build richer client behaviors, more effectively populate/update analytics DBs, and more.

Simply, we could expose all OpenMRS Events as an API.

Or more strongly we could run an actual Event Store alongside MySQL, so clients can program with an Event Sourcing model.

I think another take on the same idea is to look at Apache Kafka.

4 Likes

I was at BIDMC yesterday and they showed me their analytics system. Basically, when they save their EHR data to the database, they also send a FHIR packet to elastic search. With all their (nicely structured) data in elastic search, they use Kibana to do some really cool (and fast) reporting/analytics.

5 Likes

Dockerize the Platform

Starting up the Platform becomes: docker-compose up. Eventually, different services or even modules might be served up via separate, linked containers. This could also open the door for parts of our web services to be served using alternate technologies (e.g., nodejs, NoSQL, etc.).

SQL

What if Platform 3.0 was written in Nodejs + ElasticSearch or SOLR and we only used SQL when/where it outperformed a NoSQL solution? What would be the pros/cons? What might be the migration path for existing implementations?

*nix-ify the Platform

What if each service was like its own *nix service – i.e., apt-get install omrs-person omrs-patient?

5 Likes

Generate simple CRUDs from a data dictionary

Instead of multiple JSP, JS, Controllers etc. let’s have a single view and controller for all the admin CRUD (or any simple entity even if not metadata).

Therefore, adding a new one will be just a few entries in the dictionary, as the layout will be generated dinamically from the dictionary. When a new UI framework (Angular 3 :slight_smile: ) appears the migration will be trivial.

The engine should be able to generate different layouts (form and grid as a minimum).

It sounds a bit like https://en.wikipedia.org/wiki/Inner-platform_effect but it’s not.

3 Likes

I am very new in OpenMRS, however i think that we could integrate it with some open statistic frameworks, like R. Today, there are integration between R and SQL platforms (MySQL for example). There is a possibility of apply data science concepts over all data already existent in several OpenMRS databases and through them, produce statistical inferences and predictions. We could forecast some demands associated with a specific type of disease, to the next year, for example.

https://www.r-project.org/

6 Likes
  1. Infrastructure to build Disease/environment specific distros - say HIV Distro, TB Distro, Small Clinic Distro etc. Maybe later it can become select options and the necessary modules are bundled together into a single WAR file

  2. How can encounters, concepts and forms be deployed as part of core meta-data for a new installation without having to run SQL scripts - drop a well formed XML file and voila (almost like what liquibase does)

1 Like

+1 to *nix-ify the platform and the Event Store.

If we intend to stay in the sql world, a less crazy idea is supercharging our dao layer with QueryDSL and Object Specifications? It would help boost our REST API performance for sure.

1 Like

Integrating R would be good for Data analytics. I’m all for help on this…

1 Like

I agree, but can R programs be invoked seamlessly from a Java webapp?

It would be nice to integrate with Weka. It is a java based machine learning library. I already have some code that can learn from data pulled from OpenMRS if anyone is interested.

1 Like

Something like OpenCPU would allow you to return R data as a JSON object, which you could then utilize however you wanted. Or at least it appears that way. https://www.opencpu.org/

1 Like

How about moving away from Application Servers?

1 Like

Great ideas so far!

I just realized that I cannot attend the developer forum this week. So someone else need to drive this 30 minute discussion.

Can we get a volunteer for that?

i would love to have any other volunteer lead the forum, however just in-case none shows up i will be glad to take the lead as we shall have a few minutes to discuss our upcoming #omrs15-hackathon planning :smile:

1 Like

@dkayiwa - Here’s what you were looking for - https://github.com/Bhamni/bahmni-package/tree/master/openmrs

Hahaha. Looks like it is no longer crazily new! :slight_smile: Would be great if you can attend the call and share with us your experience regarding this.

There seems to be a lot of interest in CDS. Chica is now fully electronic and no longer depends on Teleform. For those interested in implementing clinical decision support in Openmrs, it might be worth taking a look at what CHICA has done. CHICA provides some powerful CDS that OpenMRS could leverage.

1 Like

Kibana dashboards (based on ElasticSearch) are awesome. We should definitely add them to OpenMRS (even maintaining core model in SQL). A nightly batch process could copy data from SQL to Lucene.

2 Likes