No description
SwimTelemetry observer records probe RTTs (p50), recent targets, and membership transitions for the node's telemetry tick. Expand registry/registry_actor, datastream catalog/emit/source, and the pipeline-parallel cluster/fleet. Wire the node main loop to emit host/runtime/transport/membership frames. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com> |
||
|---|---|---|
| .cargo | ||
| .deploy | ||
| apps/pipeline-parallel-inference | ||
| benches | ||
| ci | ||
| crates | ||
| examples/single-gpu-inference | ||
| fuzz | ||
| scripts | ||
| src | ||
| tests | ||
| xtask | ||
| .dockerignore | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| Dockerfile | ||
| README.md | ||
swactor
Minimal actor runtime for Rust. One trait, one message type.
Single-threaded (tick()) or multi-threaded (run()).
Description
Core runtime is src/. Actors implement ActorInterface (in actor.rs),
interact through Ctx (in runtime.rs), and run on worker threads (worker.rs).
crates/ builds upward: std adds OTP patterns (supervision, monitoring, groups),
distribution adds clustering, everything else composes from there.
Dev commands
cargo xtask --help for available test groups.
Testing
cargo check --workspace
cargo xtask test <your-feature-crate>
cargo xtask test essential