AeMdw is a middleware that acts as a caching and reporting layer for the æternity blockchain. It responds to queries more efficiently than the node and supports additional queries.
The middleware runs an Aeternity Node alongside it in the same Docker container and BEAM VM instance. This node can be configured using the aeternity.yaml file or by passing environment variables, just like configuring the node directly.
Each WebSocket connection consumes one file descriptor. The BEAM VM and RocksDB also open many fds internally. The default of 1024 is far too low for production.
Apply to the host running Docker. The override file does not exist by default — create it with:
sudo systemctl edit docker
This opens an editor. Add:
[Service]
LimitNOFILE=131072Save and exit, then apply:
sudo systemctl daemon-reload && sudo systemctl restart docker
Verify inside a container:
docker run --rm busybox sh -c 'ulimit -n'
Check current values with:
sysctl net.core.somaxconn net.ipv4.tcp_tw_reuse net.ipv4.ip_local_port_range vm.overcommit_memory
Create /etc/sysctl.d/99-ae-mdw.conf with the following content and apply it:
# /etc/sysctl.d/99-ae-mdw.conf
# Listen backlog — allows more pending connections before the kernel drops them.
# Default on most systems is already 4096; set explicitly to ensure it.
net.core.somaxconn = 4096
# TIME_WAIT socket reuse. Value 2 (loopback-only, Linux 4.6+) is the safest option.
# Value 1 enables global reuse which can break NAT; 0 disables reuse entirely.
net.ipv4.tcp_tw_reuse = 2
# Ephemeral port range. Widening beyond the default (32768–60999) helps under
# extreme connection churn; leave at default if churn is low.
net.ipv4.ip_local_port_range = 1024 65535
# BEAM requires overcommit to allocate large ETS tables without triggering OOM.
# 0 = heuristic (default, can kill BEAM), 1 = always allow, 2 = strict deny.
vm.overcommit_memory = 1
Apply without rebooting:
sudo sysctl --system
The WebSocket Broadcaster is a single-threaded GenServer — it is the primary CPU bottleneck on busy blocks. Increasing the BEAM scheduler count (via +S in vm.args) does not fix this directly, but it ensures schedulers are split sensibly between the broadcaster, HTTP workers, and RocksDB dirty I/O threads.
With ENABLE_TELEMETRY=true and a StatsD → Grafana pipeline, alert on:
| Metric | Alert threshold |
|---|---|
| ETS subscriptions table size | > 5 M rows |
BEAM ETS memory (erlang:memory(:ets)) |
> 8 GB |
Broadcaster handle_cast queue depth |
> 1000 |
| Open file descriptors | > 100 k |
The ETS subscription row count is the key early-warning metric for subscriber-cleanup regressions: rows should drop to zero promptly after a client disconnects.
git clone https://github.com/aeternity/ae_mdw && cd ae_mdw
-
Download a full backup from Aeternity Downloads.
-
Create a
datadirectory under the root repository directory and extract the backup using the following command:tar -xvzf path-to-backup.tar.gz -C dataThis will extract the
mnesiaandmdw.dbfolders to thedatadirectory.
Run the following command to start the application on the mainnet:
docker compose up
To check if the application is running properly, visit the /status endpoint and ensure that node_height is higher than 600000.
Create the necessary directories for data storage and logs:
mkdir -p data/mnesia data/mdw.db log
Ensure the directories have the correct permissions to allow the middleware to write to them:
chown -R 1000 data log
If you want to use a database snapshot:
-
Download a full backup from Aeternity Downloads.
-
Extract the backup to the
datadirectory:tar -xvzf path-to-backup.tar.gz -C dataThis will place the
mnesiaandmdw.dbfolders under thedatadirectory.
Start the container with the following command:
docker run -it --name ae_mdw \
-p 4000:4000 \
-p 4001:4001 \
-p 3113:3113 \
-p 3013:3013 \
-p 3014:3014 \
-v ${PWD}/data/mnesia:/home/aeternity/node/data/mnesia \
-v ${PWD}/data/mdw.db:/home/aeternity/node/data/mdw.db \
-v ${PWD}/log:/home/aeternity/ae_mdw/log \
-v ${PWD}/docker/aeternity.yaml:/home/aeternity/.aeternity/aeternity/aeternity.yaml \
aeternity/ae_mdw:latest
This command starts the middleware in a docker container. The middleware will be available at http://localhost:4000. Note that you can pass the -d flag to run the container in detached mode.
To check if the middleware is running properly, visit the /status endpoint and ensure that node_height is higher than 0.
To check the logs, run the following command:
docker logs ae_mdw
To check the status of the container, run the following command:
docker ps -a
To stop the container, run the following command:
docker stop ae_mdw
To restart the container, run the following command:
docker start ae_mdw
Edit the configuration file docker/aeternity.yaml to specify network settings:
-
ae_mainnetfor mainnet -
ae_uatfor testnet -
A custom network name if running your own network or a hyperchain
You can also pass environment variables to configure the node, similar to standard Aeternity Node configuration.
Refer to Aeternity Configuration Docs for more details.
The following environment variables configure the middleware itself (not the underlying node):
| Variable | Default | Description |
|---|---|---|
PORT |
4000 |
HTTP API port |
WS_PORT |
4001 |
WebSocket port |
DISABLE_IPV6 |
false |
Set to true to bind on IPv4 only (0.0.0.0 instead of ::) |
LOG_LEVEL |
debug |
Log verbosity: debug, info, notice, warning, error, critical, alert, emergency, none |
LOG_FILE_PATH |
log/info.log |
Path for the log file |
ENABLE_JSON_LOG |
false |
Set to true to emit logs in JSON format |
ENABLE_CONSOLE_LOG |
false |
Set to true to also log to stdout |
WEALTH_RANK_SIZE |
200 |
Number of top accounts tracked for the wealth rank endpoint |
MAX_SUBS_PER_CONN |
100000 |
Maximum WebSocket subscriptions per connection. 100k covers monitoring 100k accounts on a single connection; ETS cost is ~15 MB at that size |
MAX_WS_CONNECTIONS |
1000 |
Total simultaneous WebSocket connections across all clients |
MAX_WS_CONNECTIONS_PER_IP |
50 |
Maximum simultaneous connections from a single IP. 50 accommodates services with many workers behind shared egress NAT |
MAX_TOTAL_WS_SUBS |
2000000 |
Global cap on active subscription rows. At ~150 bytes/row this is ~300 MB |
MAX_WS_CLIENT_BACKLOG |
2000 |
Pending-message queue depth above which a slow client's messages are dropped. At peak ~750 object messages/s this is ~2.7 s of buffer |
MAX_PING_LIMIT |
1000 |
Maximum number of subscription entries included in a Ping response sample. When the total exceeds this, the response includes "has_more": true and "count": N. There is no cursor — Ping is a liveness and count-verification tool, not an enumerator. At 1000 entries the JSON payload is ~60 KB |
WS_SUBS_FULL_LIST_REPLY |
false |
Set to true to return the full subscription list on every subscribe/unsubscribe response (legacy behaviour; use Ping to retrieve the full list instead) |
ENABLE_TELEMETRY |
false |
Set to true to enable StatsD telemetry reporting |
TELEMETRY_STATSD_HOST |
hostname | StatsD host (used when ENABLE_TELEMETRY=true) |
TELEMETRY_STATSD_PORT |
8125 |
StatsD port |
TELEMETRY_POLLER_PERIOD |
10000 |
VM metrics polling interval in milliseconds |