> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pulsy.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Orchestrator

> Learn how Atria coordinates deployments and feed health.

# Orchestrator

The Orchestrator coordinates feed deployment, status transitions, delivery configuration requests, and runtime health.

## Responsibilities

* Handles feed deploy requests.
* Tracks `Pending`, `Running`, `Paused`, `Error`, and `Completed` transitions.
* Confirms runtime deployment events.
* Responds to delivery services with output configuration.
* Provisions feeds and outputs from manifests.

## Control Flow

```mermaid theme={null}
sequenceDiagram
  participant Control as Control plane
  participant Orchestrator
  participant Runtime
  Control->>Orchestrator: feed.deploy.req
  Orchestrator->>Runtime: deploy feed
  Runtime->>Orchestrator: feed.deployed
  Orchestrator->>Control: update feed status
```
