Partisan

Version
Build and TestHeavy Test Suite

Partisan

Partisan is a scalable and flexible, TCP-based membership system and distribution layer for the BEAM. It bypasses the use of Distributed Erlang for manual connection management via TCP, and has several pluggable backends for different deployment scenarios.

Partisan is a runtime system that enables greater scalability and reduced latency for distributed actor applications.

Getting started

The full documentation is published at hexdocs.pm/partisan. The Installation tutorial walks through adding Partisan as a dependency from rebar3 or Mix and explains how the build-time OTP modules generator (partisan_gen_server, partisan_gen_statem, …) is wired up.

In short, for an Erlang project add the dep:

%% rebar.config
{deps, [{partisan, "6.0.0"}]}.

For an Elixir project:

# mix.exs
defp deps, do: [{:partisan, "~> 6.0"}]

Then rebar3 compile (or mix deps.get && mix compile). On every compile Partisan automatically generates Partisan-flavoured copies of OTP's gen_server, gen_statem, supervisor, etc. into its own ebin/ — no extra configuration is required on the consumer side. See the Installation tutorial for the details of how that works and when you would care.

You can build the docs locally with make docs; the result lands in doc/ (open doc/index.html).

Why do we need Partisan?

Erlang/OTP, specifically distributed erlang (a.k.a. disterl), uses a full-mesh overlay network. This means that in the worst case scenario all nodes are connected-to and communicate-with all other nodes in the system.

Failure detector. These nodes send periodic heartbeat messages to their connected nodes and deem a node "failed" or "unreachable" when it misses a certain number of heartbeat messages i.e. the net_tick_time setting in disterl.

Due to this heartbeating and other issues in the way Erlang handles certain internal data structures, Erlang systems present a limit to the number of connected nodes that depending on the application goes between 60 and 200 nodes.

Also, Erlang conflates control plane messages with application messages on the same TCP/IP connection and uses a single TCP/IP connection between two nodes, making it liable to the Head-of-line blocking issue. This also leads to congestion and contention that further affects latency.

This model might scale well for datacenter deployments, where low latency can be assumed, but not for geo-distributed deployments, where latency is non-uniform and can show wide variance.

Partisan was also designed to handle failures:

Partisan features

Partisan was designed to increase scalability, reduce latency and improve failure detection for Erlang/BEAM distributed applications.

Requirements

Who is using Partisan

Projects

Organizations and People

Reference

Academic Papers

Presentations