Skip to content

HPI-Information-Systems/akka-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Akka tutorial

This repository contains some tutorial and exercise projects for the actor programming toolkit Akka. It is maintained by the information systems group at HPI and used in distributed computing classes. The projects are implemented in Java 8 and run distributedly on a computer cluster.

Projects

The akka-tutorial project is a very simple grid computing app for determining all prime numbers in a given range of numbers. The implementation is very basic and uses only the core concepts of the Akka toolkit, i.e., simple remoting with additional libraries, such as Akka clustering.

The octopus project showcases a binary tree traversal where each node represents some arbitrary work that needs to be performed. It uses Akka's clustering module.

The ddm project is a framework project for exercises in the lecture Distributed Data Management. It also uses Akka's clustering module for the distributed computing.

All projects can be startet as master or worker systems. The worker systems connect to the master and support its calculations. There should be only one master but arbitrary many worker systems. For a high-level overview of the apps' architectures, have a look at the tutorial slides, the teaching slides 2018 and the teaching slides 2019.

Requirements

To build and execute the code, Java 8 and Maven are required. To make sure that the projects are set up correctly in an IDE, you can run the tests in the akka-tutorial/src/test/java folder. If you are operating from a command line instead, run mvn test in the folder with pom.xml file.

Execution instructions

The projects can be started by running their main classes, which are de.hpi.akka_tutorial.Main, de.hpi.octopus.OctopusApp, and de.hpi.ddm.Main, respectively, from within your IDE or from the command line. The app will then print an overview of the different possible parameters. Append parameters of your choice to the run a certain configuration. For example, calls could be as follows:

  • Parameters to start a master with two local workers: master --workers 2
  • Parameters to start a worker that tries to connect to a remote master: worker --master <master host>:<master port>

Releases

No releases published

Packages

No packages published

Languages