Skip to content
Snippets Groups Projects
Forked from AURA / engine
Source project has a limited visibility.

Aura Engine

Contributor Covenant Latest Release pipeline status coverage report security: bandit Code style: black

AURA Engine is a scheduling service to control the playout of Engine Core.

This documentation is primarily meant for developers. For using the AURA Community Radio Suite check out the documentation at docs.aura.radio

To learn more about Automated Radio go to aura.radio.

Overview

The following diagram gives an simplified overview on the architecture.

flowchart LR

    api-- GET calendar -->steering[Steering API]
    api-- GET playlist -->tank[Tank API]
    ea[Engine API]
    events-- on_boot\non_sick\non_resurrect -->monitor[Monitor]
    events-- on_play\non_fallback_active -->clock[Clock]
    clock-- POST clock_data -->ea
    monitor-- PING heartbeat -->monserver[Monitoring Server]
    monitor-- POST health_data -->ea
    mixer-- UNIX SOCKET -->engine_core

    subgraph external
        ea
        monserver
        engine_core
        steering
        tank
    end
    subgraph engine
        engine_instance[Engine]-.-oplayer & events & scheduler

        scheduler-- control\ncommand\ntimer -->player[Player]

        player-- control action -->mixer
        events[Event Dispatcher *]

        subgraph scheduling
            api[Fetch & Cache API]
            timetable<-->api
            scheduler<-->timetable[Timetable Management]
            scheduler-- cycle -->scheduler
        end
        subgraph core[core]
            mixer[Mixer]
        end
        subgraph plugins
            clock
            monitor
        end
    end

    style external fill:#FFF
    style ea fill:#FFF,stroke:#333,stroke-width:1px
    style steering fill:#FFF,stroke:#333,stroke-width:1px
    style tank fill:#FFF,stroke:#333,stroke-width:1px
    style monserver fill:#FFF,stroke:#333,stroke-width:1px
    style engine_core fill:#FFF,stroke:#333,stroke-width:1px

(*) Event Dispatcher: Events are issued and consumed in multiple locations of Engine. The diagram shows only a few ones, in order to support the overview. Similar to other artifacts, which are not part of this diagram.

Prerequisites

Before you begin, ensure you have met the following requirements:

  • Operating system: Debian 11, Ubuntu 20.04 or newer
  • git, make
  • Docker, optional if you want to run in a container
  • Python 3.10+
  • Poetry

Ensure that you have also dependencies such as steering, tank, dashboard, engine-core, and engine-api up and running.

Preparation

Initialize environment

Install dependencies and prepare config file:

make init.app

This also creates a default configuration file at config/engine.yaml.

For development install with:

make init.dev

Note, if some configuration exists under /etc/aura/engine.yaml the configuration by default is drawn from there. This overrides any configuration located in the local configuration file.

Configuration

Edit the configuration file config/engine.yaml. Verify or change at least these config options:

# The secret which is used to authenticate against Tank
api_tank_secret: aura-engine-secret

Running Engine

To start the Engine execute:

make run

Docker

For production deployments follow the Docker Compose installation instruction for AURA Playout at docs.aura.radio.

The following instructions are meant for development.

Build with Docker

Build your own, local Docker image

make docker.build

Run with Docker

Run the locally build image

make docker.run

Release to DockerHub

Releasing a new version to DockerHub

make docker.push

Usually this is not required, as it is done automatically by the CI/CD pipeline.

Read more