Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/self-hosting/deployment/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"aws",
"azure",
"gcp",
"render",
"railway",
"infrastructure"
]
Expand Down
41 changes: 41 additions & 0 deletions content/self-hosting/deployment/render.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: Deploy Langfuse v4 on Render
description: Use this guide to deploy Langfuse v4 at production scale on Render with a prebuilt Blueprint.
label: "Version: v4"
sidebarTitle: "Render"
---

# Render

You can deploy Langfuse v4 at production scale on [Render](https://render.com/) with a prebuilt Blueprint.
The Blueprint creates separate Render resources for the Langfuse web service, worker, and each data store.
See the [architecture overview](/self-hosting#architecture) for more details.

## Deploy

Use the following button to deploy the Langfuse v4 Blueprint on Render:

[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/renderinc/langfuse-blueprint)

Before you apply the Blueprint, review the service plans, disk sizes, and estimated cost. Render creates these resources:

- Langfuse v4 web and worker services
- A managed PostgreSQL 18 database
- A managed Render Key Value instance
- A private ClickHouse service with a persistent disk
- A public MinIO service with a persistent disk

Select service plans and disk sizes that match your expected workload. Configure backups and recovery procedures before you send production traffic.

MinIO has a public endpoint because Langfuse sends presigned media URLs to browsers and SDK clients. MinIO still requires signed requests.

For more details, see the [Blueprint repository](https://github.com/renderinc/langfuse-blueprint).

## Features

Langfuse supports many configuration options and self-hosted features.
For more details, see the [configuration guide](/self-hosting/configuration).

import SelfHostFeatures from "@/components-mdx/self-host-features.mdx";

<SelfHostFeatures />
5 changes: 3 additions & 2 deletions content/self-hosting/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,14 @@ This is recommended for testing and low-scale deployments and lacks high-availab

### Production-scale deployments

For production and high-availability deployments, we recommend one of the following options:
For production-scale deployments, we recommend one of the following options:

- [Kubernetes (Helm)](/self-hosting/deployment/kubernetes-helm)
- [AWS (Terraform)](/self-hosting/deployment/aws)
- [Azure (Terraform)](/self-hosting/deployment/azure)
- [GCP (Terraform)](/self-hosting/deployment/gcp)
- [Railway](/self-hosting/deployment/railway)
- [Render](/self-hosting/deployment/render)
- [Railway (v3)](/self-hosting/deployment/railway)

## Architecture

Expand Down