Skip to main content

Launch, supervise, and reconnect to long-running HTTP services locally or over SSH, with optional tunneling.

Project description

remote-http-launcher

remote-http-launcher is a command-line tool and Python library for launching, supervising, and reconnecting to long-running HTTP services — either locally or on remote hosts via SSH. It is driven by a single YAML configuration file that describes the service to launch, and it manages all process lifecycle state through JSON files on the client and server side.

Although it originated in the Seamless scientific-workflow framework, remote-http-launcher is fully generic: it can launch any HTTP service that follows its status-file protocol.

How it works

Given a YAML config, the launcher follows a deterministic sequence:

  1. Check for an existing local connection file (~/.remote-http-launcher/client/<key>.json). If one exists and the service responds to the configured handshake, the launcher exits immediately — the service is already running.

  2. Check the remote (or local) server directory (~/.remote-http-launcher/server/<key>.json):

    • If the remote JSON shows "status": "running", the launcher verifies the port and handshake, then writes the local connection file.
    • If it shows "status": "starting", the launcher monitors until the service comes up (or times out).
    • If the JSON file is absent or stale, the launcher starts the service.
  3. Launch the service as a daemonic subprocess (locally or over SSH), writing a server-side JSON file with the PID, workdir, and "status": "starting". The path to this JSON file is passed to the service via the {status_file} template variable in the command field.

  4. Optionally create an SSH tunnel forwarding the remote port to a local port, with a background monitor that tears down the tunnel when the remote process exits.

  5. Write the local connection file containing the hostname and port (local or tunneled) for consumption by client code.

Status-file protocol

remote-http-launcher imposes a specific contract on any service it launches. The service must:

  1. Read the JSON status file whose path was passed to it (via the {status_file} template variable in the command).
  2. Acquire a free port and start listening on it.
  3. Update that same JSON file: set "status" to "running" and add a "port" field with the chosen port number.

If the service fails to start, it should set "status" to "failed".

The launcher monitors the status file after starting the process. If the file is not updated within roughly one minute (and the process has exited), the launcher treats the launch as failed.

This is the only requirement remote-http-launcher places on the launched service — beyond this protocol, the service can be anything that speaks HTTP.

Configuration

The YAML configuration file supports the following fields:

Field Required Description
workdir yes Working directory on the (remote) host
key yes Template string evaluated to a filename used for the JSON state files
command yes Template string for the bash command to launch the service
hostname no Target HTTP hostname or IP; omit to run locally
ssh_hostname no SSH host to connect to (defaults to hostname)
network_interface no Interface the service binds to (default: localhost)
tunnel no Create an SSH tunnel for the service port (default: false)
handshake no HTTP path (and optional query parameters) for a health-check GET request
conda no Conda environment to activate before launching the command
file_parameters no Arbitrary parameters written into the server-side JSON file

The key and command fields are Python f-string templates evaluated against the full config namespace.

Example

workdir: /home/user/my-service-data
hostname: my-server.example.com
key: 'myservice-{workdir.strip("/").replace("/", "--")}'
command: >-
  myservice --port-range {port_start} {port_end}
  --status-file {status_file}
  --host {config['network_interface']}
  --timeout {timeout}
  {workdir}
network_interface: "0.0.0.0"
handshake: healthcheck
conda: myservice-env
timeout: 600
port_start: 10000
port_end: 19999

A JSON schema is included at config.schema.yaml for validation and editor support.

Installation

pip install remote-http-launcher

The only runtime dependency is PyYAML.

Usage

# Launch (or reconnect to) the service described in config.yaml
remote-http-launcher config.yaml

# Override the client connection directory
remote-http-launcher config.yaml --connection-dir /tmp/my-connections

# Print the evaluated command without launching
remote-http-launcher config.yaml --dry-run

Python API

from remote_http_launcher import run

result = run({
    "workdir": "/home/user/data",
    "key": "my-service",
    "command": "myservice --port-range 10000 19999 --status-file {status_file} {workdir}",
    "handshake": "healthcheck",
})
print(result["hostname"], result["port"])

CLI scripts

Installing remote-http-launcher also provides:

  • remote-http-launcher

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

remote_http_launcher-0.1.0.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

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

remote_http_launcher-0.1.0-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file remote_http_launcher-0.1.0.tar.gz.

File metadata

  • Download URL: remote_http_launcher-0.1.0.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.23

File hashes

Hashes for remote_http_launcher-0.1.0.tar.gz
Algorithm Hash digest
SHA256 89d565ead45d22e7212c41927b19d3a5f305d11241c5ee5ee5ed99134d3db85a
MD5 a3e050ae8cb8bbdad78f432b9555cef9
BLAKE2b-256 1cbf12f0b3b454876fff2ad4879c085cac6fde1273a78f013750feef00abdc3c

See more details on using hashes here.

File details

Details for the file remote_http_launcher-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for remote_http_launcher-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9a88d361f51ba37b086ce295a2fbace025d06a3ad3fe6edcf7a5f7d322587604
MD5 0334b9ffd7269c466b79292e06671fe5
BLAKE2b-256 38729e0de0fb35b7cf45911d9efd724948fe0698db0721223a10198a9ab7b12f

See more details on using hashes here.

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