Temporal-backed workflow registry, scheduler, and HTTP dispatch gateway.
Project description
temporal-registry
Temporal-backed workflow registry, scheduler, and HTTP dispatch gateway.
The Problem
Temporal gives you durable workflow execution, but clients still need to know a lot before they can safely start work:
- Which workflow types exist.
- Which task queue can run each workflow.
- What input shape each workflow expects.
- Which search attributes are supported.
- Whether any worker that can run the workflow is currently alive.
Without a registry, that information tends to get copied into clients, deployment config, docs, and worker code. Those copies drift. Clients start hard-coding task queues, old workflow names stay around, schedule creation depends on tribal knowledge, and independent worker deployments become tightly coupled to every caller.
The operational failure mode is simple: the worker knows what it can run, but the client does not have a reliable, current way to discover that before it starts or schedules a workflow.
The Solution
temporal-registry is a small always-on registry service for Temporal workflow
workers. It serves two purposes:
- It hosts an HTTP API for clients to discover, start, schedule, and administer registered workflows.
- It also runs as a Temporal worker for the registry workflow, which stores workflow registrations, task queues, schemas, workers, and heartbeat state.
Other workers register their runnable workflow types, task queues, input schemas, search attributes, labels, and heartbeat TTLs. The registry stores that metadata inside the durable registry workflow, then exposes it through the HTTP API.
Clients use the registry instead of hard-coding worker details. A caller can:
- List registered workflow types.
- Validate workflow input against the registered schema.
- Start a workflow on the currently registered task queue.
- Create schedules without knowing the worker deployment layout.
- Query supported search attributes for a workflow type.
Worker heartbeats keep availability current. If a worker stops heartbeating, the registry can stop advertising that worker as a healthy dispatch target, while the registry state itself remains durable because it is backed by Temporal.
This keeps ownership clean: workers own execution and capability registration;
clients own requests; temporal-registry owns discovery, validation, dispatch,
and scheduling. It does not execute workflow activities directly; registered
Temporal workers host the actual workflow code.
Use it when workers are deployed independently, workflow types change over time, or multiple runtimes need to advertise capabilities into one shared Temporal namespace.
How To Use It
- Start
temporal-registryagainst your Temporal namespace. - Have each worker register the workflow types it can run, including task queue, input schema, labels, and supported search attributes.
- Keep workers heartbeating so the registry knows which dispatch targets are currently healthy.
- Point clients at the registry API to list workflows, validate inputs, start runs, or create schedules without hard-coding worker task queues.
Terms And Configuration
temporal-registry sits between HTTP clients and Temporal. It hosts both the
registry HTTP API and the registry worker. The HTTP API talks to Temporal over
gRPC, while clients talk to temporal-registry over HTTP.
client / curl / docs
|
| HTTP
v
temporal-registry API
|
| Temporal gRPC
v
Temporal frontend
|
v
registry workflow state
Temporal terms:
TEMPORAL_ADDRESSis the Temporal frontend gRPC endpoint. Despite the word "frontend", this is not the browser UI.TEMPORAL_NAMESPACEis the Temporal namespace where the registry workflow and dispatched workflows run.TEMPORAL_TLScontrols whether the registry connects to Temporal using TLS.TEMPORAL_API_KEYauthenticates the registry process to Temporal, if your Temporal deployment requires API-key auth.- Temporal UI is the browser UI for humans to inspect workflow histories, schedules, and runs. It is separate from this service.
Registry terms:
TEMPORAL_REGISTRY_URLis the HTTP URL for thetemporal-registryAPI, for examplehttp://127.0.0.1:8080.TEMPORAL_REGISTRY_TOKENis the bearer token for the registry HTTP API when registry auth is enabled. It is not the Temporal API key.- The registry workflow is the durable Temporal workflow that stores registered workflow types, task queues, schemas, workers, and heartbeat state.
- The registry worker is the worker process started by
temporal-registryto execute the registry workflow itself.
Quick Start
uv sync --frozen
uv run temporal-registry -f temporal_registry/config.yaml
The HTTP API publishes an OpenAPI spec at /openapi.json and interactive docs
at /docs.
Health and visibility endpoints:
/healthreturnsokwhen the HTTP API process is alive./readychecks that the API can query the registry workflow through Temporal./registry/statusreturns registry workflow counts and the latest registry service startup marker.
The registry records a startup signal in workflow history. Runtime liveness stays
on /health and /ready so the registry workflow history does not grow from
periodic service heartbeat signals.
Search Attribute Administration
Registered workers declare the custom search attributes their workflows use. The registry provisions those attributes in the configured Temporal namespace before advertising the worker or workflow. Missing attributes are created automatically; existing attributes with the same type are left unchanged.
Type conflicts are not overwritten during normal registration. A same-name, different-type attribute is a namespace-level admin concern, so the registry fails provisioning and keeps the workflow unavailable until an operator reconciles it explicitly.
List attributes declared by registered workflows:
curl "$TEMPORAL_REGISTRY_URL/registry/search-attributes"
List attributes that actually exist in the Temporal namespace:
curl "$TEMPORAL_REGISTRY_URL/registry/temporal/search-attributes"
Reconcile registered declarations against Temporal:
curl -X POST "$TEMPORAL_REGISTRY_URL/registry/temporal/search-attributes" \
-H 'content-type: application/json' \
-d '{"mode":"validate"}'
Reconcile modes:
validatereports missing and conflicting attributes without changing Temporal.ensurecreates missing attributes and refuses type conflicts.replaceremoves conflicting custom attributes and recreates them with the registered type. It requires an explicitattributeslist andconfirm: true.
Example explicit replacement:
curl -X POST "$TEMPORAL_REGISTRY_URL/registry/temporal/search-attributes" \
-H 'content-type: application/json' \
-d '{"mode":"replace","attributes":["agent_id"],"confirm":true}'
replace never removes system search attributes. Use it only as an admin
migration step because changing an attribute type can invalidate existing
visibility queries and assumptions.
Useful targets:
make test
make lint
make docker-build
Contributing
Set up the project with uv sync --frozen, then run make check before opening
a change. Use make fmt to apply Ruff formatting and safe fixes.
For local git hooks:
make hooks-install
The hooks run shared config sync, Ruff, mypy, and commit message linting. Commit messages should follow Conventional Commits because releases are managed by release-please.
License
MIT. See LICENSE.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file temporal_registry-0.1.5.tar.gz.
File metadata
- Download URL: temporal_registry-0.1.5.tar.gz
- Upload date:
- Size: 39.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0907b3e3929bd58884808f3d079bd26028bfa72999e2de7e53bee97ff3ce46aa
|
|
| MD5 |
6609a0955fedea0ad065a46cf05f4a9c
|
|
| BLAKE2b-256 |
69f248aabec7ab689bac52cf30abbc3bc76d4d44a7b1250e2f42136ae6dd5da6
|
File details
Details for the file temporal_registry-0.1.5-py3-none-any.whl.
File metadata
- Download URL: temporal_registry-0.1.5-py3-none-any.whl
- Upload date:
- Size: 41.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7aac558e105b249cd6ba77f8b9082005752d897ba9bbb6d13a6192be64f7ed83
|
|
| MD5 |
28fd310032ff8c8ca50d466273ab87ed
|
|
| BLAKE2b-256 |
db19d76b627fa066e44293afe08c553fab17ab926064cd333fe7e1d8916548c6
|