A QuanuX node is a Linux server that has been conditioned into a specific role byDocumentation Index
Fetch the complete documentation index at: https://docs.quanux.org/llms.txt
Use this file to discover all available pages before exploring further.
quanuxctl. The server itself is just hardware; what makes it a “node” is the two-stage deployment process that first prepares the OS and then drops the correct engine onto it. Once deployed, a node has a single clear purpose within the cluster—whether that is executing trades at nanosecond speed, observing portfolio state, or replaying historical data for backtesting.
Two-stage deployment
Every node, regardless of its eventual role, goes through the same two-stage deployment pattern before it can do any work.Stage 1 — habitat equip
quanuxctl habitat equip <TARGET_GROUP> conditions the bare server. It installs C++ toolchains (g++, cmake, ninja-build), native libraries (ZeroMQ, OpenSSL, FlatBuffers, DuckDB headers), tunes IPC parameters, and writes /etc/quanux/habitat.env. This file binds the node to the QuanuX internal network by pinning the NATS_URL to the internal NATS instance.Stage 2 — nest drop
quanuxctl nest drop <TARGET_GROUP> --engine <ENGINE_TYPE> pushes the repository to the remote server, compiles the engine natively using -O3 -march=native, and installs the resulting binary as a systemd daemon (quanux-engine.service).The
habitat.env file written in Stage 1 is a hard dependency for Stage 2. If the file is absent, the engine binary will refuse to start.Node types
Execution node (Spreader)
The primary trading node. Runs the C++20 Sovereign Engine with Core 3 pinned as the “Dead Core” Spreader for alpha generation and Core 5 as the Sovereign Sentinel for hardware risk enforcement. Compiled against the exchange-closest hardware available, typically labeled
edge-nyc or similar.FIX execution node
A specialized execution node that adds a FIX protocol adapter layer. Intended for qualified clients requiring FIX conformance testing and independent confirmation to trade. Uses QuickFIX or the proprietary OnixS Solarflare Binary Order Handler via
Makefile.onixs.NIC / Solarflare node
An execution node equipped with a Solarflare network interface card running in kernel-bypass mode (EF_VI). Market data ingress bypasses the Linux OS entirely. This is the target for the Neural Singularity ingress path—reducing NIC ingress from ~800ns toward the theoretical minimum.
Observation node
Hosts Panopticon components: Vector, GreptimeDB, OpenSearch, and/or Hasura depending on role. Does not execute trades. Consumes the NATS firehose and serves telemetry to dashboards and AI agents.
Statistics node
Dedicated to quantitative computation outside the live trading path—position analytics, portfolio-level risk metrics, and settlement. Runs DuckDB analytical logic via the C++ DuckDB C API. The Python
duckdb library is forbidden on this node class.Backtesting / replay node
Runs the QuanuX Arena (the Training Cortex). Uses TSC-injection to feed the same C++ engine object code historical packet timestamps, so the engine’s state machine replays historical sessions with zero behavioral drift from the live path. Backed by the Databento L3 HDF5-to-Parquet pipeline.
Verifying a deployed node
Afternest drop completes, verify the engine is running on the target node: