jasondavies / plane

A distributed system for running WebSocket services at scale.

Home Page:https://plane.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Note: This branch represents a recent rewrite of Plane. Feel free to poke around, but we recommend talking to us before using it in production. See the 0.3.x branch for the previous version.

Docker image Build Docker Image Tests Chat on Discord crates.io

Plane is a distributed system for running stateful WebSocket backends at scale. Plane is heavily inspired by Figma’s mulitplayer infrastructure, which dynamically spawns a process for each active document.

Use cases include:

  • Scaling up authoritative multiplayer backends.
  • Running isolated code environments (like REPLs, code notebooks, and LLM agent sandboxes).
  • Data-intensive applications that need a dedicated high-RAM process for each active user session.

How Plane works

You can think of Plane as a distributed hashmap, but instead of storing data, it stores running processes. When you ask Plane for the process associated with a key (via an HTTP API), it either returns a URL to an existing process, or starts a new process and returns a URL to that.

Plane will keep the process running for as long as there is an open connection (usually a WebSocket connection) to it. Once all connections to a process have been closed for some time threshold, Plane will shut down the process.

Plane guarantees that only one process will be running for each key at any given time, allowing that process to act as an authoritative source of document state for as long as it is running.

Architecture

Read more about Plane’s architecture.

Architecture diagram of Plane

Learn more

About

A distributed system for running WebSocket services at scale.

https://plane.dev

License:MIT License


Languages

Language:Rust 98.5%Language:Shell 0.9%Language:Dockerfile 0.6%