Architecture and Concepts
Project overview and doc navigation start from the Fluxon documentation home.
This page explains the core concepts and config fields that appear throughout the rest of the docs.
System Overview

- Control plane / metadata:
etcd + masterfor members, leases, routing, and connection-state metadata - Data plane:
shared memory + transfer enginefor same-host reuse and cross-node data movement - KV: base read/write and RPC capability;
ownercontributes the memory pool andexternalattaches in zero-contribution mode - MQ: queue semantics built on top of KV and reusing the same service plane and shared memory pool
- FluxonFS: remote file access built on top of KV; access control is persisted through
fluxon_fs.master_panel.access_db_path, and transfer-state persistence usesfluxon_fs.master_panel.transfer_state_store - FluxonOps: deployment and operations control plane built on KV
Distributed Deployment View

Control plane:
- Fluxon KV Master: cluster management, routing, coordination
- ETCD: metadata store for member state, MQ state, offsets, and connection data
- Prometheus / GreptimeDB: metrics collection and storage for the monitoring panel
Per machine:
- Fluxon KV Owner: contributes local data-plane resources and shared memory
- Fluxon KV External: attaches to the owner’s shared pool and exposes access to business processes
Cross-machine transport:
- High Performance P2P: owners exchange data over RDMA / DPDK / SPDK / WebSocket / TCP / QUIC with busy-polling-first behavior and cross-cluster relay
Roles
| Role | Responsibility |
|---|---|
| master | Control-plane entrypoint: membership, routing, leases, monitoring broadcast |
| owner_client | Data-plane resource provider: contributes the shared memory pool |
| external_client | User-facing access point: attaches to an owner’s pool without contributing memory |
Core Config Fields
cluster_name
- Logical cluster name
- Separates metadata keyspaces across clusters
- Must match on every component in one cluster
instance_key
- Unique process identifier
- Used for registration, RPC addressing, logs, and monitoring
- Must be unique inside one
cluster_name
node_id / member_id
- Target locator fields in APIs
- Usually equal to
instance_key
etcd_endpoints
- List of etcd addresses
- Some components need
http://..., others accepthost:port - MQ and panel features depend on etcd reachability
prometheus_base_url
- Metrics source queried by the panel
- The panel only reads; it does not scrape by itself
shared_memory_path
- Shared-memory authority for local attachment to the same pool
shared_file_path
- Shared-file authority for
shared.json, logs, profiles, and other local shared files
log_dir
- Master-local log authority
contribute_to_cluster_pool_size
- Memory contribution config
- Non-zero for owners, omitted or zero for external clients
MQ Concepts
unique_key and chan_id
unique_keyis the stable logical channel namechan_idis the bound existing channel instance id
See User - 4 - MQ Interface for details.