Skip to content

πŸŽ“ "Concurrent Programming with Actors and Microservices", 2018, Master's Thesis, TU Wien. This repository contains all developed applications, the evaluation tools with the scientific raw data, and the source of the thesis document.

mpgirro/dipl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Concurrent Programming with
Actors and Microservices

I am Maximilian Irro and this is my master thesis ("Diplomarbeit") that I worked on in 2017/2018 as a requirement for the completion of my master curriculum Software Engineering & Internet Computing at TU Wien. The supervisor was Franz Puntigam from the Institute for Information Systems Engineering, Compilers and Languages Group. This repository contains all materials related to my master thesis project (documents and implementation source codes, measurement data, etc.).

Table of Contents

Abstract

Common problems require applications to manage multiple concerns simultaneously. A convenient approach is the concept of concurrent programming. In this thesis, we investigate two different models for introducing concurrent computational units into software architectures. One approach is the actor model that defines theoretically well-known constructs supporting concurrent, parallel and distributed execution in a transparent way. The other approach is an architectural style based on microservices, a recent trend that gained academic and industrial popularity. Microservices facilitate many principles of the old Unix philosophy by composing complex functionality through small, independent, highly cohesive and loosely coupled executables. These programs interoperate via lightweight, technology-heterogeneous messaging channels. The deployment modality of microservices conceives concurrent execution through the operating system scheduler. This thesis compares the programming of concurrent computation through actors and microservices with respect to a non-trivial concurrent system scenario. We argue that both approaches share many conceptual similarities and show few but significant differences. Both models have the same expressive capabilities regarding concurrent programming concerns like communication and scalability, but are subject to different trade-offs. We provide implementations of the system scenario based on actor and microservice architectures. Benchmark results of these implementations suggest that actors provide better system efficiency through a smaller codebase. Microservice architectures consume significantly more system resources and suffer especially from purely synchronous communication mechanisms.

Repository Structure

This repository is structured as follows:

  • πŸ“‚ /docs/ – document source files (thesis, poster, slides, graphics, etc.)
  • πŸ“‚ /eval/ – evaluation material (measurement data, R scripts)
  • πŸ“‚ /src/ – program artifact source codes (actor and microservice architecture, domain library, web interface)

The subdirectories have separate README.md files with detailed information.

Thesis Document

This master project originated a thesis document. It is available in the following file versions:

  • πŸ“– PDF (optimized for printing)
  • 🌐 HTML (optimized for screens)

If you want to cite the original thesis, please use the following BibTeX entry:

@mastersthesis{Irro18,
  author    = {Maximilian Irro},
  title     = {Concurrent Programming with Actors and Microservices},
  school    = {TU Wien},
  year      = {2018},
  keywords  = {concurrent programming, actors, microservices},
  timestamp = {20180930},
  url       = {https://repositum.tuwien.ac.at/urn:nbn:at:at-ubtuw:1-115820}
}

For a lists errors found in the submitted version of the thesis, see the errata file.

Implementations

This thesis uses a non-trivial system scenario for evaluating the programming of concurrency with actors and microservices. The scenario is a podcast search engine called Echo. Several implementation artifacts for Echo were produced in the course of this project. The four main parts are:

Core Library

Java version Lucene version

πŸ“‚ /src/echo-core/

A library for all domain-specific functionality.

Actor Architecture

Scala version Akka version

πŸ“‚ /src/echo-actors/

An implementation of Echo's backend based on an architecture that uses the actor model. The programming language is Scala. The actor library is Akka. This system implements the whole search engine within a single executable artifact (monolith).

Microservice Architecture

Java version Spring Boot version Spring Cloud version

πŸ“‚ /src/echo-microservices/

An implementation of Echo's backend based on a microservice architecture. This system is composed of several executable artifacts (the microservices). These distinct programs communicate via network mechanism, either REST or RabbitMQ (an AMQP-compatible messaging system). All microservices build on Spring Boot as the application foundation and various components of Spring Cloud.

The microservice applications are:

Web UI

Node version Angular version

πŸ“‚ /src/echo-web/

The web-frontend for the Echo search engine. This web app builds on Angular.

WebApp Screenshot

Evaluation

Indexing subsystem benchmark results

The indexing phase facilitates asynchronous communication. The efficiency benchmark results show that the execution modality of actors is more efficient. Microservices have a higher runtime over- head, since they are separate system processes.

Retrieval subsystem benchmark results

The time constraints of the retrieval phase favours synchronous interaction. Actors use a request/asynchronous response style (Akka's ask message dispatch). This semi-synchronous strategy shows better efficiency than the strictly synchronous communication via REST in the microservice architecture.

About

πŸŽ“ "Concurrent Programming with Actors and Microservices", 2018, Master's Thesis, TU Wien. This repository contains all developed applications, the evaluation tools with the scientific raw data, and the source of the thesis document.

Topics

Resources

Stars

Watchers

Forks