Stand up a runnable distribution stack on top of the core node logic. - distribution: add NodeDriver bridging DistributedNode to real TCP I/O (TcpTransport/TcpAcceptor), translating NodeActions to/from wire messages; refine swim probe timing and transport wiring. - node: new swactor-node binary (crates/node) hosting a real node over TCP. - tests/docker: multi-host LAN cluster harness (compose, run-lan-cluster.sh, cluster + lan_cluster integration tests) exercising the full SWIM path. - simulation: cluster_scenarios integration + distribution property coverage. - docs: reorganize into distribution/, runtime/, diagrams/, connectome/; add DOCKER_REALIZATION + SIMULATION_TESTING realization notes. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
34 lines
730 B
YAML
34 lines
730 B
YAML
## LAN cluster — hpz side (192.168.1.106)
|
|
## Run alongside docker-compose.lan-thinkpad.yml on the thinkpad.
|
|
##
|
|
## docker compose -f tests/docker/docker-compose.lan-hpz.yml up -d --build
|
|
services:
|
|
seed:
|
|
build:
|
|
context: ../..
|
|
dockerfile: Dockerfile
|
|
network_mode: host
|
|
command:
|
|
- "--listen"
|
|
- "192.168.1.106:7000"
|
|
- "--dashboard-port"
|
|
- "9091"
|
|
- "--actors"
|
|
- "2"
|
|
|
|
node-2:
|
|
build:
|
|
context: ../..
|
|
dockerfile: Dockerfile
|
|
network_mode: host
|
|
command:
|
|
- "--listen"
|
|
- "192.168.1.106:7001"
|
|
- "--seed"
|
|
- "192.168.1.106:7000"
|
|
- "--dashboard-port"
|
|
- "9092"
|
|
- "--actors"
|
|
- "2"
|
|
depends_on:
|
|
- seed
|