Layer 3 · self-hosting reality check
What it actually takes to self-host Dagster
The docs say 2 GB. In practice you want 8 GB. Here is the honest version — real requirements, real monthly cost, what you will be maintaining, and the one thing that catches people out.
Usually reached from Astronomer (Astro) alternatives, where Dagster is one of the picks.
| RAM — documented minimum | 2 GB |
|---|---|
| RAM — what it really needs | 8 GB |
| CPU | 4 vCPU |
| Disk | Modest for Dagster itself; run logs accumulate |
| Monthly cost | $50–90/mo self-hosted, against Dagster Cloud or managed Airflow pricing |
| Setup time | A day |
| How you install it | docker compose or Helm — webserver, daemon, PostgreSQL |
| Ongoing maintenance | Moderate. Lighter than Airflow, heavier than a cron job. |
| Where it stops scaling | Large pipelines with rich lineage. The asset graph is what keeps big estates comprehensible. |
The thing that catches people out
Dagster models assets rather than tasks, which is both the reason to choose it and the reason Airflow migrations stall. Porting a DAG one-to-one produces something that runs and gains you nothing — the value comes from re-expressing pipelines as the data they produce. Budget for rethinking rather than translating, or you carry Airflow's model into a tool built around a different one.
When not to self-host Dagster
Your pipelines are simple schedules. The asset model earns its keep on complex lineage and pays nothing on "run this at 3am".
Every guide here carries this section. A site that only ever tells you to self-host is selling something — the useful answer is sometimes no.
Other Layer 3 self-hosting guides
Common questions
- How much RAM does Dagster actually need?
- 8 GB in practice. The documented minimum is 2 GB, which is the figure at which the process starts rather than the figure at which it works under real use. 4 vCPU alongside it.
- What does self-hosting Dagster cost per month?
- $50–90/mo self-hosted, against Dagster Cloud or managed Airflow pricing This is commodity VPS pricing and excludes your time, which is the larger cost for most people — budget for moderate. Lighter than Airflow, heavier than a cron job.
- How long does it take to set up Dagster?
- A day, via docker compose or Helm — webserver, daemon, PostgreSQL.
- When should I NOT self-host Dagster?
- Your pipelines are simple schedules. The asset model earns its keep on complex lineage and pays nothing on "run this at 3am".
- What is the most common mistake when self-hosting Dagster?
- Dagster models assets rather than tasks, which is both the reason to choose it and the reason Airflow migrations stall. Porting a DAG one-to-one produces something that runs and gains you nothing — the value comes from re-expressing pipelines as the data they produce. Budget for rethinking rather than translating, or you carry Airflow's model into a tool built around a different one.