Skip to main content

RealTime Hub for Earthquake foRecasts ManagEment and Scheduling

Project description

pypi PyPI - License PyPI - Python Version test codecov

RT-HERMES - RealTime Hub for Earthquake foRecasts ManagEment and Scheduling

©2025 ETH Zurich

1. Overview

This project is under active development. The goal is to provide an orchestration and scheduling platform for earthquake forecast models.

For v0 of the project, see the gitlab repository

1.2 Caveat

This project does not distribute any earthquake forecast models. It is merely a framework to run and schedule earthquake forecast models. The models need to be installed separately. Please look at the hermes-model repository for more information on how to install and use a model with HERMES.

2. Installation

This installation instruction is merely a recommendation for a user of the software. Depending on your preferences and knowledge, you are free to choose a different setup.

To use the software, you need to have a correctly configured Prefect Server installation as well as a PostgreSQL database. You can install them using Docker Compose as described in section 2.1. If there is already such an installation provided, you can skip to section 2.2.

2.1 Installation of the services.

2.1.1 Install Docker

Follow the instructions here

2.1.2 Clone the repository

First you need to clone the repository. This will create a folder called rt-hermes in your current directory.

git clone https://github.com/swiss-seismological-service/rt-hermes.git
cd rt-hermes

2.1.3 Configure environment file

The .env file is used to configure the Prefect Server and the PostgreSQL database. It contains sensitive information such as passwords and connection strings. You can create a copy of the example file with the following command:

cp .env.example .env

As a quick test setup, the configuration works as is, but is not secure. Please change the credentials, ports and connection strings in the .env file.

2.1.4 Create the Docker services

You can now create the Docker services for the Prefect Server and the PostgreSQL database using the following command:

docker compose --env-file .env -f compose-prefect.yaml -f compose-database.yaml pull
docker compose --env-file .env -f compose-prefect.yaml -f compose-database.yaml up -d

You can now access the Prefect Server at http://localhost:4200 and the webservice at http://localhost:8000/docs.

Note: Using multiple -f flags ensures both services share the same Docker network for proper inter-service communication.

2.2 Install HERMES

Going forward, we are building the following project structure:

.
├── rt-hermes/          # optional, the cloned repository
├── hermes-project/     # your project folder   ├── env/            # virtual environment   ├── .env            # environment file   └── examples/       # copied from ../rt-hermes/examples
└── models/             # optional, contains the installed models
    ├── ml1/
    └── em1/

2.2.0 Prerequisites

If you already followed Section 2.1, you can create a new folder next to the cloned rt-hermes repository to create your project.
If you have a Service installation provided, but would like to use the examples provided in the repository, you can still clone the repository to get the examples and the template env file:

git clone https://github.com/swiss-seismological-service/rt-hermes.git

2.2.1 Install Python and a virtual environment

It is strongly recommended to use a virtual environment. This will ensure that the dependencies are isolated from your system Python installation.

mkdir hermes-project && cd hermes-project
python3 -m venv env # python3.12 is required
source env/bin/activate
pip install -U pip wheel setuptools

2.2.2 Dependencies

Possibly, the following system dependencies are required to install some of the Python dependencies. On a Debian-based system, you can install them using:

sudo apt-get install build-essential libpq-dev python3-dev

2.2.3 Install HERMES

Install Hermes from the Python Package Index

pip install rt-hermes

2.2.4 Configure the environment file

For HERMES to find the correct Prefect Server and PostgreSQL database, you need to create a .env file in the root of your project. You can use the example file provided in the repository:

# Assuming you have cloned the repository into the current directorys parent
cp ../rt-hermes/.env.example .env

Use the credentials defined in section 2.1 or the ones provided to you by your admin.

2.2.5 Use the CLI

The main usage of HERMES is currently via CLI

2.2.6 Install the models

To run models, you need to have them installed locally. You can, for example, clone them into a subdirectory and install from there.

mkdir ../models
git clone https://gitlab.seismo.ethz.ch/indu/em1.git ../models/em1
git clone https://github.com/swiss-seismological-service/etas.git ../models/etas

pip install -e ../models/em1
pip install -e ../models/etas

3 Run models

The models can be run using the CLI.

3.1 Start with example configuration and data

You can start with an example configuration and data to get a feel for how HERMES works. The example configuration is located in the examples/induced folder. You can copy it to your project directory using the following command, assuming again you have the repository cloned in the parent directory:

cp -r ../rt-hermes/examples .

[!IMPORTANT] Update the absolute path fdsnws_url in examples/induced/forecastseries.json to your local path of the examples/induced folder. Also, to use the scforge HYDWS service, you need to be connected to the ETH network or a VPN.

3.2 Initialize the database

hermes db initialize

This only needs to be done once. In case you want to delete all data and start from scratch, you can run hermes db downgrade -y and then hermes db initialize again.

3.3 Load an example configuration

hermes projects create project_induced --config examples/induced/project.json
hermes forecastseries create fs_induced --config examples/induced/forecastseries.json --project project_induced
hermes injectionplans create default --forecastseries fs_induced --file examples/induced/multiply_template.json
hermes models create em1 --config examples/induced/model_config.json

The CLI can be used to interact with the HERMES service. For a list of available commands, run hermes --help. Most commands have a --help option to show the available options.

Most setting should be self-explanatory, but more information can be found in the concepts documentation.

A more detailed of the InjectionPlan configuration can be found here.

3.4 Run a single forecast using the CLI

hermes forecasts run fs_induced --start 2022-04-21T15:00:00 --end 2022-04-21T18:00:00 --local

This starts a single forecast directly on the local machine.

3.5 (Optional) Schedule forecasts or execute "replays".

To use advanced features like scheduling, it is necessary to start a process which "serves" the forecastseries. This will be a long-running process which will execute forecasts as they are requested by the schedule or by the CLI, so just let the process run in a terminal, and open a new terminal to execute further commands.

hermes forecastseries serve fs_induced

Depending on your model, you need to control how many modelruns are executed in parallel, you can do that by specifying the --concurrency-limit option which is by default set to 3. Please consider, that also the requesting of the input data can become a limiting factor if you are requesting a lot of data at the same time (eg. requests to an FDSNWS).

hermes forecastseries serve fs_induced --concurrency-limit 1

Once this process is running, you can "send" a forecast to the service using the above command in a new terminal without the --local flag.

hermes forecasts run fs_induced --start 2022-04-21T15:00:00 --end 2022-04-21T18:00:00

This will again execute a single forecast, but this time it will be executed by the service. This now allows us to create a schedule for the forecastseries, which will automatically execute forecasts at the specified times. More information about the schedule settings can be found here.

hermes schedules create fs_induced --config examples/induced/schedule_replay.json

This schedule specifies forecasts in the past. Accordingly, no future forecasts will be executed, but the catchup command can be used to execute all forecasts as a "replay".

hermes schedules catchup fs_induced

Note that a schedule can either lie in the past, the future, or both. The catchup command will only execute forecasts in the past, while the service will automatically execute forecasts in the future.

3.6 Debugging

To view the forecasts and modelruns, currently only the webservice is available. The available endpoints are listed in the API documentation: http://localhost:8000/docs.

A quick description of the way to traverse the API is as follows: To view the Projects, you can navigate to the following URL: http://localhost:8000/v1/projects. Copy the oid of the project you'd like to access.

To find the correct Forecastseries, you can navigate to the following URL: http://localhost:8000/v1/projects/<project_oid>/forecastseries. Again, copy the oid of the ForecastSeries.

To view the Forecasts and ModelRuns, you can navigate to the following URL: http://localhost:8000/v1/forecastseries/<forecastseries_oid>/forecasts.

Once you have the oid of the models, you can use that to more easily debug the models. You can download the exact configuration and input files the modelrun used. Navigate to the following URL: http://localhost:8000/v1/modelruns/<modelrun_oid>/input to download the input files.

3.7 Results

The results of the modelruns can be directly downloaded from the webservice. This API is still under development and will be improved in the future. The results can be downloaded from the following URL: http://localhost:8000/v1/modelruns/<modelrun_oid>/results.

3.8 Python Client

A Python client library is provided for easier access to the RT-HERMES data and results. It can be installed using pip:

pip install hermes-client

A documentation is available here

4 Update

4.1 Update the services

Inside the cloned repository folder, update the docker containers:

docker compose --env-file .env -f compose-prefect.yaml -f compose-database.yaml up -d
prefect server database upgrade -y
hermes db upgrade

4.2 Update the library

If you want to update the library, you can do so by running the following command inside your virtual environment:

pip install -U rt-hermes

If you need to update the hermes database too (if your admin has not done that already), you can run the following command:

hermes db upgrade

4.3 Reinstall the services

If you want to update the services and would like a clean install or/and don't care about the existing data, you can do so by completely removing the existing containers and volumes, pulling the latest changes, and then starting the services again.

docker compose --env-file .env -f compose-prefect.yaml -f compose-database.yaml down -v
docker compose -f compose-prefect.yaml pull
docker compose -f compose-database.yaml pull
docker compose --env-file .env -f compose-prefect.yaml -f compose-database.yaml up -d

4.4 Major Database Upgrades

In case of major upgrades to the database (eg. postgreSQL version upgrades), it might be necessary to manually migrate the data. Such upgrades should not happen often. Please contact the maintainers in such a case.

As reference, a quick upgrade path is described below:

# -U specifying the user, -d specifying the database
pg_dump -h localhost -p 5434 -U postgres -d postgres > backup.sql

# update the containers
docker compose --env-file .env -f compose-prefect.yaml -f compose-database.yaml up -d

# restore the database
psql -h localhost -p 5432 -U postgres -d postgres < backup.sql

# run the database upgrades
hermes db upgrade

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rt_hermes-1.2.1.tar.gz (481.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rt_hermes-1.2.1-py3-none-any.whl (413.3 kB view details)

Uploaded Python 3

File details

Details for the file rt_hermes-1.2.1.tar.gz.

File metadata

  • Download URL: rt_hermes-1.2.1.tar.gz
  • Upload date:
  • Size: 481.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rt_hermes-1.2.1.tar.gz
Algorithm Hash digest
SHA256 507bbcfa8e3abc21a9286b1daafc00dd7200aff17b7394b4279ef53d8790b816
MD5 8e7edf81e01ec61fc983831b3cc2f576
BLAKE2b-256 9e2ce6e7fe81fdb5ab659b473fdefb8a9b0833b08c43efe8de0b5a8dac1b020c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rt_hermes-1.2.1.tar.gz:

Publisher: publish.yml on swiss-seismological-service/rt-hermes

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rt_hermes-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: rt_hermes-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 413.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rt_hermes-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c83e5b21cc4c1ca39525feca801490029e73fa37ab5774d1c9405520ea01e325
MD5 27888a7f08e419a89927a2122378889c
BLAKE2b-256 12ec3e262b51c2e5cba073c53acdfb1ade5577c6abc67e4cce32644478ac9c21

See more details on using hashes here.

Provenance

The following attestation bundles were made for rt_hermes-1.2.1-py3-none-any.whl:

Publisher: publish.yml on swiss-seismological-service/rt-hermes

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page