A penguin-inspired self-organizing server load balancer with adaptive thermal eviction — now with master/agent cluster management
Project description
HuddleCluster
A penguin-inspired, self-organizing server load balancer with adaptive thermal eviction.
Author: Rahad Bhuiya Version: 2.0.0 License: MIT Paper: HuddleCluster: A Penguin-Inspired Self-Organizing Load Balancer with Adaptive Thermal Eviction
The Idea
Emperor Penguins survive Antarctic winters by forming huddles. Penguins on the cold outer edge push inward toward warmth, while those in the center gradually rotate outward to rest — with no central coordinator, only local temperature thresholds.
HuddleCluster maps this directly to server scheduling:
- Inner ring — active servers handling requests (warm)
- Outer ring — resting servers recovering from load (cool)
- Temperature — a composite EMA score derived from relative latency anomaly, CPU, memory, connections, and error rate
- Rotation — overheated servers evict to outer ring; cooled servers return to inner ring automatically
The key innovation is relative latency anomaly scoring: instead of comparing a server's latency to an absolute threshold, HuddleCluster compares each server to the cluster-wide median. A server 3x slower than its peers is evicted regardless of whether the baseline is 10 ms or 300 ms.
Benchmark Results
Simulated Benchmark (10 trials, mean +/- std, Welch's t-test)
| Scenario / Metric | Round Robin | Least Conn | HuddleCluster | p-value |
|---|---|---|---|---|
| Normal Load | ||||
| P50 (ms) | 21.5 +/- 0.2 | 21.2 +/- 0.3 | 21.0 +/- 0.2 | 0.000* |
| P95 (ms) | 29.6 +/- 0.3 | 28.8 +/- 0.4 | 28.6 +/- 0.6 | 0.001* |
| Avg (ms) | 21.4 +/- 0.1 | 21.1 +/- 0.2 | 21.0 +/- 0.2 | 0.000* |
| Fairness (Gini) | 0.000 | 0.067 | 0.000 | -- |
| Slow Server (5x at halfway) | ||||
| P95 (ms) | 63.2 +/- 1.0 | 61.7 +/- 1.1 | 55.1 +/- 10.6 | 0.039* |
| Avg (ms) | 20.1 +/- 0.2 | 19.7 +/- 0.2 | 19.6 +/- 0.4 | 0.002* |
| Server Failure (crash at halfway) | ||||
| P95 (ms) | 500.0 +/- 0.0 | 500.0 +/- 0.0 | 23.9 +/- 0.5 | 0.000* |
| Avg (ms) | 53.4 +/- 0.2 | 229.7 +/- 1.4 | 29.7 +/- 0.1 | 0.000* |
statistically significant (p < 0.05)
Real HTTP Benchmark (6 FastAPI servers, loopback)
| Scenario / Metric | Round Robin | Least Conn | HuddleCluster | vs RR |
|---|---|---|---|---|
| Normal Load | ||||
| P95 (ms) | 88.6 | 85.3 | 74.3 | +16.2% |
| Avg (ms) | 51.8 | 48.3 | 46.1 | +11.0% |
| Slow Server (5x) | ||||
| Avg (ms) | 55.2 | 52.1 | 53.4 | +3.4% |
| Server Failure | ||||
| P95 (ms) | 5,026.9 | 5,027.9 | 85.6 | +98.3% |
| Avg (ms) | 429.7 | 414.0 | 181.5 | +57.7% |
Industry Baseline (NGINX vs HuddleCluster, Docker)
Containerised benchmark: 6 FastAPI upstream servers, Docker bridge network, NGINX round-robin and NGINX least-connections as baselines.
| Scenario / Metric | NGINX RR | NGINX LC | HuddleCluster | vs NGINX RR |
|---|---|---|---|---|
| Normal Load | ||||
| P50 (ms) | 28.4 | 27.5 | 20.5 | +28.0% |
| P95 (ms) | 55.1 | 39.3 | 33.4 | +39.4% |
| Avg (ms) | 29.1 | 26.4 | 21.4 | +26.5% |
| Slow Server (5x) | ||||
| P50 (ms) | 25.3 | 25.3 | 19.8 | +21.6% |
| P95 (ms) | 38.9 | 42.8 | 33.6 | +13.6% |
| Avg (ms) | 25.1 | 25.8 | 20.5 | +18.4% |
| Server Failure | ||||
| P95 (ms) | 45.9 | 41.9 | 29.7 | +35.3% |
| Avg (ms) | 25.9 | 25.6 | 20.8 | +19.4% |
Note: admin endpoint injection was not available in this Docker run (upstream servers on internal network only). Results reflect HuddleCluster's thermal rotation advantage without injected failures.
cd benchmarks/
docker compose up -d --build
python benchmark_industry.py
docker compose down
Overhead
| Measurement | Value |
|---|---|
| RR get_server() | 0.277 us |
| HC get_server() | 0.295 us (1.07x over RR) |
| HC get_server() + record_latency() | 10.7 us |
| Peak memory (20 servers) | 28.3 KB |
| Slow-server detection speed | 36 requests avg (range 35-40) |
Quick Start
pip install huddle-cluster
# with FastAPI integration:
pip install "huddle-cluster[fastapi]"
# with Redis backend:
pip install "huddle-cluster[redis]"
# with gRPC support:
pip install "huddle-cluster[grpc]"
# with Kubernetes discovery:
pip install "huddle-cluster[kubernetes]"
# with benchmark dependencies:
pip install "huddle-cluster[benchmark]"
# everything:
pip install "huddle-cluster[fastapi,redis,grpc,kubernetes,simulation,benchmark]"
from huddle_cluster import create_cluster
import time, requests
cluster = create_cluster([
("s1", "10.0.0.1", 8080),
("s2", "10.0.0.2", 8080),
("s3", "10.0.0.3", 8080),
])
cluster.start()
# Route a request with latency feedback
server = cluster.get_server()
t0 = time.perf_counter()
response = requests.get(f"http://{server.host}:{server.port}/api")
cluster.record_latency(server, (time.perf_counter() - t0) * 1000)
# Or use the context manager (auto-records latency)
with cluster.get_server_context() as server:
response = requests.get(f"http://{server.host}:{server.port}/api")
print(cluster.health_report())
cluster.stop()
v1.3.0 Features
Weighted Server Capacity
Servers with higher weight tolerate more load before eviction. Useful for heterogeneous clusters where some instances are larger than others.
cluster = create_cluster([
("s1", "10.0.0.1", 8080), # weight=1.0 (default)
("s2", "10.0.0.2", 8080, 2.0), # weight=2.0 -- needs 2x heat to evict
("s3", "10.0.0.3", 8080, 0.5), # weight=0.5 -- evicts sooner
])
Cold Start Protection
New servers warm up in the outer ring before handling traffic. Prevents request spikes on fresh instances that have not yet warmed their caches or JIT compilers.
cluster = HuddleCluster(cold_start_sec=30.0)
# Any server added will stay in outer ring for 30 seconds
# regardless of force_inner=True
Absolute Latency Floor
Guards against majority degradation where the relative anomaly score breaks down (when the cluster median itself rises above acceptable levels).
cluster = HuddleCluster(absolute_latency_floor_ms=500.0)
# Any server with avg latency > 500ms is evicted regardless of relative score
Adaptive Thresholds
Heat and cool thresholds auto-adjust based on cluster P95 latency history. Thresholds loosen under sustained load (to avoid over-eviction) and tighten when the cluster is healthy (for faster anomaly detection).
cluster = HuddleCluster(adaptive_thresholds=True)
# heat_threshold and cool_threshold update automatically
# Check current values via cluster.health_report()["heat_threshold"]
Prometheus Metrics Exporter
Expose cluster state as Prometheus metrics for Grafana dashboards.
# FastAPI example
from fastapi import FastAPI
from fastapi.responses import PlainTextResponse
app = FastAPI()
@app.get("/metrics", response_class=PlainTextResponse)
def metrics():
return cluster.prometheus_metrics()
Metrics exposed: huddle_server_temperature, huddle_server_avg_latency_ms,
huddle_server_anomaly_score, huddle_server_rotations_total,
huddle_cluster_inner_count, huddle_cluster_fairness_gini,
huddle_cluster_heat_threshold, huddle_cluster_p95_latency_ms.
Gossip Protocol (Distributed Deployments)
Share temperature state between multiple HuddleCluster instances via UDP multicast. Each node broadcasts its inner-ring server states; peers receive them as advisory signals.
from huddle_cluster import GossipAgent, create_cluster
agent = GossipAgent(node_id="node-1", gossip_port=9999)
cluster = create_cluster([...], gossip_agent=agent)
cluster.start()
# See peer states
peers = agent.peer_states()
# {"node-2": [{"id": "s0", "temp": 0.12, "avg_ms": 15.3, "pos": "inner"}]}
Note: gossip is best-effort UDP multicast. The cluster remains fully functional without gossip -- it is purely additive.
v1.4.0 Features
Persistent State
Save and restore cluster temperature state across restarts. Prevents cold-start degradation after rolling deploys.
cluster = HuddleCluster(
state_file="huddle_state.json",
checkpoint_interval_sec=30.0, # auto-save every 30 seconds
)
cluster.start()
# State is saved on stop() and restored on the next start()
Webhook Alerting
Receive HTTP POST notifications on eviction, promotion, or health events.
cluster = HuddleCluster(
alert_webhooks=["https://hooks.example.com/cluster"],
alert_on={"eviction", "promotion", "health_fail"},
alert_headers={"Authorization": "Bearer my-token"},
)
Built-in HTTP Health Checker
Probe upstream servers directly without an external health check loop. Failed servers are evicted automatically.
cluster = HuddleCluster(
health_check_path="/health",
health_check_interval_sec=10.0,
health_check_timeout_sec=3.0,
health_check_failures=2, # evict after 2 consecutive failures
)
Redis Backend (huddle_cluster_pkg)
Share temperature state between HuddleCluster instances on different hosts so all nodes start with the same baseline after a rolling restart.
pip install "huddle-cluster[redis]"
from huddle_cluster import create_cluster
from huddle_cluster_pkg.backends_redis import RedisBackend
backend = RedisBackend(url="redis://localhost:6379", key="huddle:state")
cluster = create_cluster([...])
cluster.start()
backend.start_auto_sync(cluster, interval_sec=30.0)
# ...
backend.stop_auto_sync()
gRPC Support (huddle_cluster_pkg)
Thermal-aware gRPC channel routing using the same dual-ring algorithm.
pip install "huddle-cluster[grpc]"
from huddle_cluster_pkg.grpc_cluster import create_grpc_cluster
cluster = create_grpc_cluster([
("s1", "10.0.0.1", 50051),
("s2", "10.0.0.2", 50051),
])
cluster.start()
with cluster.get_channel() as channel:
stub = MyService.Stub(channel)
response = stub.MyMethod(request)
cluster.stop()
Kubernetes Service Discovery (huddle_cluster_pkg)
Auto-add and remove servers as Kubernetes pods come and go.
pip install "huddle-cluster[kubernetes]"
from huddle_cluster import create_cluster
from huddle_cluster_pkg.discovery_k8s import K8sDiscovery
discovery = K8sDiscovery(
namespace="production",
label_selector="app=api-server",
port=8080,
)
cluster = create_cluster([], min_inner_size=1)
cluster.start()
discovery.start(cluster)
# ...
discovery.stop()
cluster.stop()
v2.0.0 — Cluster System
Level 1: Basic Cluster System — adds a true master/agent distributed layer on top of the existing single-process HuddleCluster.
Starting a Master
# CLI (installed with pip install huddle-cluster)
huddle-cluster master start --port 7070 --timeout 30
Or in Python:
from huddle_cluster_pkg import MasterNode
master = MasterNode(
host="0.0.0.0",
port=7070,
heartbeat_timeout_sec=30,
on_node_join=lambda n: print(f"joined: {n.node_id}"),
on_node_leave=lambda n: print(f"left: {n.node_id}"),
on_node_dead=lambda n: print(f"dead: {n.node_id}"),
)
master.start() # non-blocking
Starting an Agent
# CLI
huddle-cluster agent start \
--id web-01 \
--master http://192.168.1.10:7070 \
--port 8080 \
--interval 10 \
--meta region=us-east role=lb
Or in Python (optionally paired with a HuddleCluster):
from huddle_cluster import create_cluster
from huddle_cluster_pkg import AgentNode
cluster = create_cluster(["s1:8001", "s2:8002", "s3:8003"])
cluster.start()
agent = AgentNode(
node_id="web-01",
master_url="http://192.168.1.10:7070",
port=8080,
cluster=cluster, # forwards live metrics to master
heartbeat_interval_sec=10,
metadata={"region": "us-east"},
on_master_unreachable=lambda: print("master is down"),
on_recovered=lambda: print("master is back"),
)
agent.start()
CLI Reference
| Command | Description |
|---|---|
huddle-cluster master start [--host] [--port] [--timeout] |
Start master node |
huddle-cluster agent start --id --master --port [options] |
Start agent node |
huddle-cluster nodes list [--master] |
List all registered nodes |
huddle-cluster nodes status NODE_ID [--master] |
Inspect one node |
huddle-cluster cluster status [--master] |
Cluster summary |
huddle-cluster cluster health [--master] |
Quick health check (exit 1 if down) |
Master REST API
| Method | Path | Description |
|---|---|---|
GET |
/v1/health |
{"status": "ok"} |
GET |
/v1/status |
Cluster summary (node counts, uptime) |
GET |
/v1/nodes |
List all nodes |
GET |
/v1/nodes/{id} |
Single node record |
POST |
/v1/nodes/join |
Agent enrollment |
POST |
/v1/nodes/{id}/heartbeat |
Heartbeat + metrics |
DELETE |
/v1/nodes/{id} |
Graceful departure |
Behaviour Highlights
- Dead detection — a node is marked
deadif no heartbeat arrives withinheartbeat_timeout_sec; it auto-recovers toalivewhen heartbeats resume - Auto-rejoin — if the master restarts and loses registrations, each agent re-registers itself within 3 × heartbeat_interval automatically
- Fast shutdown —
master.stop()andagent.stop()complete in < 100 ms
File Structure
HuddleCluster/
|
|-- huddle_cluster.py # Core library v1.4.0 (zero runtime dependencies)
|-- huddle_cluster.pyi # Type stubs for IDE autocomplete (PEP 561)
|-- __init__.py # Package exports
|-- pyproject.toml # pip install support
|-- requirements.txt # Optional dependencies by feature
|-- LICENSE
|-- USAGE.md # Documentation
|
|-- huddle_cluster_pkg/ # Optional extension modules (v1.4.0)
| |-- __init__.py
| |-- backends_redis.py # Redis shared-state backend
| |-- grpc_cluster.py # Thermal-aware gRPC channel routing
| |-- discovery_k8s.py # Kubernetes pod auto-discovery
| |-- core.py # Shared internals
|
├── assets/
│ └── logo.svg # LOGO
|
|-- benchmarks/
| |-- benchmark.py # Simulated 4-scenario benchmark
| |-- benchmark_statistical.py # 10-trial statistical benchmark with CI
| |-- benchmark_http.py # Real HTTP benchmark (6 FastAPI servers)
| |-- benchmark_industry.py # NGINX vs HuddleCluster (Docker)
| |-- upstream_server.py # FastAPI upstream server
| |-- docker-compose.yml # 6 upstream servers + 2 NGINX instances
| |-- nginx/
| | |-- nginx_rr.conf # NGINX round-robin config
| | |-- nginx_lc.conf # NGINX least-connections config
| |-- run_http_benchmark.bat # Windows one-click runner
|
|-- tests/ # 485 tests across 19 modules
| |-- test_rotation.py # Rotation, eviction, feedback loop
| |-- test_fairness.py # Fairness and Gini tests
| |-- test_stress.py # Concurrent load tests
| |-- test_histogram.py # Latency histogram and percentile tests
| |-- test_integration.py # FastAPI end-to-end tests
| |-- test_admin_api.py # Admin HTTP endpoint tests
| |-- test_dashboard.py # Dashboard and SSE tests
| |-- test_alerting.py # Webhook alerting tests
| |-- test_canary.py # Canary / traffic ramp tests
| |-- test_draining.py # Connection draining tests
| |-- test_health_checker.py # Built-in HTTP health checker tests
| |-- test_persistent_state.py # State save/load/checkpoint tests
| |-- test_retry.py # request_with_retry tests
| |-- test_sticky_sessions.py # Affinity / sticky session tests
| |-- test_redis_backend.py # Redis backend tests (uses fakeredis mock)
| |-- test_grpc_cluster.py # gRPC cluster tests (uses grpc mock)
| |-- test_k8s_discovery.py # K8s discovery tests (uses k8s mock)
| |-- test_cluster_master.py # MasterNode tests — 32 tests (v2.0.0)
| |-- test_cluster_agent.py # AgentNode tests — 26 tests (v2.0.0)
| |-- conftest.py # Shared fixtures
|
|-- examples/
| |-- fastapi_example.py # FastAPI reverse proxy integration
| |-- simulation.py # Terminal simulation (requires rich)
| |-- dashboard_demo.py # Live dashboard demo (open in browser)
| |-- HuddleSimulation.jsx # React visual simulation
|
|-- docs/
|-- HuddleCluster.pdf # Paper PDF
|-- HuddleCluster_arxiv.pdf # Arxiv paper PDF
|-- HuddleCluster_arxiv.tex # Arxiv tex file
|-- diagrams/
|-- architecture_diagram.png # Dual-ring architecture
|-- temperature_lifecycle.png # State machine + weight composition
|-- rotation_flowchart.png # Rotation algorithm flowchart
|-- generate_diagrams.py # Regenerate diagrams
How It Works
Temperature Formula
raw(s) = 0.70 x anomaly(s) # relative latency vs cluster median
+ 0.10 x cpu(s) # CPU usage [0,1]
+ 0.10 x conn(s) # active connections / 1000, clamped [0,1]
+ 0.05 x mem(s) # memory usage [0,1]
+ 0.05 x err(s) # error rate [0,1]
T(s) = alpha x raw(s) + (1 - alpha) x T(s) [EMA, default alpha=0.60]
Relative Latency Anomaly
anomaly(s) = clamp( (avg_ms(s) / median_ms(inner_ring) - 1) / 2, 0, 1 )
| Server / Cluster Median | Ratio | Anomaly Score | Cycles to eviction |
|---|---|---|---|
| 12 ms / 12 ms | 1.0x (normal) | 0.00 | Never |
| 24 ms / 12 ms | 2.0x (warm) | 0.50 | ~8 cycles |
| 36 ms / 12 ms | 3.0x (hot) | 1.00 | ~3 cycles |
| 60 ms / 12 ms | 5.0x (degraded) | 1.00 (clamped) | ~3 cycles |
Rotation Rules
- Eviction — inner server with T >= 0.55 moves to outer ring. Capped at max(1, |inner|/3) per cycle (thundering-herd prevention).
- Promotion — coolest outer server with T <= 0.30 and sufficient dwell time moves to inner ring (flapping prevention).
- Health eviction — server with is_healthy=False is evicted immediately regardless of temperature.
- Emergency fallback — if inner ring drops below min_inner, the globally coolest server is promoted unconditionally.
Failure-Mode Bounds
Median robustness: up to floor((n-1)/2) simultaneous server degradations can be detected correctly. If k >= n/2 servers degrade simultaneously, the median baseline rises and anomaly detection weakens — a documented boundary condition.
Oscillation bound: a server cannot oscillate faster than
rotation_cooldown_sec + min_outer_dwell_sec per cycle (default: 15 seconds minimum).
EMA smoothing requires at least 20 consecutive anomalous readings before a healthy server
(raw < 0.10) is evicted.
Worst-case eviction rate: at most max(1, floor(|inner|/3)) evictions per rotation cycle. With default settings, the inner ring never drops below min_inner=2 active servers.
Configuration
cluster = HuddleCluster(
heat_threshold = 0.55, # Evict above this temperature
cool_threshold = 0.30, # Promote below this temperature
min_inner_size = 2, # Minimum active servers
max_inner_size = 5, # Maximum active servers
rotation_cooldown_sec = 5.0, # Minimum seconds between evictions per server
min_outer_dwell_sec = 10.0, # Minimum rest time before re-entry
ema_alpha = 0.60, # Temperature smoothing (higher = faster reaction)
# v1.3.0 parameters
absolute_latency_floor_ms = None, # Evict any server above this absolute latency
cold_start_sec = 0.0, # New servers warm up in outer ring for this long
adaptive_thresholds = False, # Auto-adjust thresholds from cluster P95 history
gossip_agent = None, # GossipAgent for distributed deployments
metrics_updater = None, # Optional: fn(server) -> updates server.metrics
on_rotation = None, # Optional: fn(RotationEvent) -> called on rotation
# v1.3.3 parameters
circuit_breaker_threshold = 0.5, # Fraction of failures to open circuit breaker
on_eviction = None, # Optional: fn(server, reason) -> called on eviction
request_timeout_ms = None, # Timeout threshold for dead-server detection
# v1.4.0 parameters
state_file = None, # Path to JSON state file for persistence
checkpoint_interval_sec = 0.0, # Auto-save interval (0 = disabled)
alert_webhooks = None, # List of webhook URLs for event notifications
alert_on = None, # Set of event types: "eviction", "promotion", "health_fail"
alert_headers = None, # Extra HTTP headers for webhook requests
alert_timeout_sec = 5.0, # Webhook request timeout
ws_drain_timeout_sec = 0.0, # Wait for WebSocket connections to close before eviction
health_check_path = None, # HTTP path to probe (e.g. "/health")
health_check_interval_sec = 10.0, # How often to probe each server
health_check_timeout_sec = 3.0, # Per-probe timeout
health_check_failures = 2, # Consecutive failures before eviction
)
Parameter Sensitivity (P95 ms, slow-server scenario)
| heat_threshold \ alpha | alpha=0.3 | alpha=0.6 (default) | alpha=0.9 |
|---|---|---|---|
| 0.45 (aggressive) | 38.2 | 31.4 | 29.1 |
| 0.55 (default) | 52.3 | 32.0 | 30.8 |
| 0.65 (conservative) | 74.1 | 58.6 | 41.2 |
Default (heat=0.55, alpha=0.60) balances detection speed and eviction stability.
Running Tests
# Install test dependencies
pip install -e ".[dev,fastapi]"
# Run all 427 tests
pytest tests/ -v
# Core tests only (no extra deps needed)
pytest tests/test_rotation.py tests/test_fairness.py tests/test_stress.py tests/test_histogram.py -v
# Extension tests (redis backend, grpc, k8s — all use mocks, no real services needed)
pip install fakeredis
pytest tests/test_redis_backend.py tests/test_grpc_cluster.py tests/test_k8s_discovery.py -v
Running Benchmarks
cd benchmarks/
# Simulated (4 scenarios, ~2 min)
python benchmark.py
# Statistical (10 trials, p-values, CI, ~6 min)
pip install scipy matplotlib numpy
python benchmark_statistical.py
# Real HTTP (6 FastAPI servers, ~3 min)
pip install fastapi uvicorn httpx matplotlib numpy
python benchmark_http.py # Linux/Mac
run_http_benchmark.bat # Windows
# Industry baseline: NGINX vs HuddleCluster (requires Docker)
docker compose up -d
python benchmark_industry.py
docker compose down
GitHub Actions
Three workflows are included:
CI (ci.yml) — runs on every push and pull request:
- Unit tests on Python 3.10, 3.11, 3.12
- Integration tests (FastAPI upstream servers)
- Type stub syntax check
- Package build verification
Publish (publish.yml) — triggers on version tags (v*.*.*):
- Runs full test suite
- Builds wheel and sdist
- Publishes to PyPI via Trusted Publishing (no API token needed)
- Creates GitHub Release with changelog entry
Benchmark (benchmark.yml) — manual trigger only:
- Runs statistical benchmark with configurable trials
- Uploads chart artifacts
Setup PyPI Trusted Publishing:
- PyPI -> Your project -> Publishing -> Add publisher
- GitHub owner:
rahadbhuiya, repo:HuddleCluster, workflow:publish.yml
Known Limitations
- Uniform burst load: when all servers are equally stressed, relative anomaly scores are near zero and no eviction fires. Use
absolute_latency_floor_msas a secondary guard. - Majority degradation: if more than half the inner-ring servers degrade simultaneously, the median baseline rises. Use
absolute_latency_floor_msin this scenario. - Single-process by default: temperature state is not shared across hosts without the Redis backend (
huddle_cluster_pkg.backends_redis) or the gossip protocol (GossipAgent). - Loopback benchmarks: all HTTP benchmarks use localhost. Wide-area production validation is future work.
Roadmap
- Latency feedback loop (record_latency, get_server_context) — v1.1.0
- Relative latency anomaly scoring (median baseline) — v1.2.0
- Inner-ring fairness metric (Gini) — v1.2.0
- Tunable EMA alpha — v1.2.0
- Statistical benchmark (10 trials, Welch's t-test, 95% CI) — v1.2.0
- Real HTTP benchmark (FastAPI upstream servers) — v1.2.0
- Industry baseline benchmark (NGINX, Docker) — v1.2.0
- Failure-mode bounds (median robustness, oscillation, eviction rate) — v1.2.0
- Adaptive thresholds (auto-adjust heat/cool from cluster P95 history) — v1.3.0
- Weighted server capacity (weight= param on Server/create_cluster) — v1.3.0
- Cold start protection (cold_start_sec= param) — v1.3.0
- Prometheus metrics exporter (cluster.prometheus_metrics()) — v1.3.0
- Distributed temperature sharing (GossipAgent, UDP multicast) — v1.3.0
- Absolute latency floor (absolute_latency_floor_ms= param) — v1.3.0
- Server tags/labels, on_eviction callback, throughput metrics — v1.3.3
- Circuit breaker, graceful shutdown, request_with_retry — v1.3.3
- Persistent state (state_file, checkpoint_interval_sec) — v1.4.0
- Webhook alerting (alert_webhooks, alert_on) — v1.4.0
- Built-in HTTP health checker (health_check_path) — v1.4.0
- WebSocket connection draining (ws_connection, ws_drain_timeout_sec) — v1.4.0
- Redis shared-state backend (huddle_cluster_pkg.backends_redis) — v1.4.0
- gRPC channel routing (huddle_cluster_pkg.grpc_cluster) — v1.4.0
- Kubernetes service discovery (huddle_cluster_pkg.discovery_k8s) — v1.4.0
Level 1 — Basic Cluster System (v2.0.0)
- Dedicated MasterNode — HTTP REST coordinator, node registry — v2.0.0
- AgentNode — enrollment, heartbeat loop, graceful leave — v2.0.0
- Node join/leave protocol with re-join on master restart — v2.0.0
- Heartbeat monitoring with auto dead-detection and recovery — v2.0.0
- Node list with status, metrics, last-seen-ago — v2.0.0
-
huddle-clusterCLI (master start, agent start, nodes list, cluster status) — v2.0.0
Level 2 — Production Ready (planned)
- Auto recovery — respawn dead agents, health-gate promotions
- Web dashboard — real-time cluster topology view
- RBAC / authentication — API key and role-based access
- Monitoring — Prometheus metrics from master
- Structured metrics aggregation — per-node and cluster-wide stats
- REST API — full OpenAPI spec with versioning
Level 3 — Kubernetes / Swarm-grade (planned)
- Scheduler — place workloads on nodes based on thermal fitness
- Auto scaling — scale node count based on load signals
- Rolling updates — zero-downtime cluster upgrades
- Service discovery — DNS + health-aware record publishing
- High-availability master — Raft-based consensus, no SPOF
- Multi-region support — cross-datacenter topology awareness
Citation
Bhuiya, R. (2025). HuddleCluster: A Penguin-Inspired Self-Organizing Load Balancer
with Adaptive Thermal Eviction. https://github.com/rahadbhuiya/HuddleCluster
Bhuiya, Rahad (2026). HuddleCluster. figshare. Journal contribution.
https://doi.org/10.6084/m9.figshare.32397180
Bhuiya. (2026). HuddleCluster. Zenodo. https://doi.org/10.5281/zenodo.20348019
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file huddle_cluster-2.0.0.tar.gz.
File metadata
- Download URL: huddle_cluster-2.0.0.tar.gz
- Upload date:
- Size: 130.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a676fad3d89280e515ff3cf586f539427822311b436392f1863dbbc5224b8f2b
|
|
| MD5 |
cc19fb4152d4ebd9825cf1779b064054
|
|
| BLAKE2b-256 |
d7ddab15c72314ef38aea0f6ce50398be7a4f29889a2191b75d860783d5622cf
|
Provenance
The following attestation bundles were made for huddle_cluster-2.0.0.tar.gz:
Publisher:
publish.yml on rahadbhuiya/HuddleCluster
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
huddle_cluster-2.0.0.tar.gz -
Subject digest:
a676fad3d89280e515ff3cf586f539427822311b436392f1863dbbc5224b8f2b - Sigstore transparency entry: 1837378716
- Sigstore integration time:
-
Permalink:
rahadbhuiya/HuddleCluster@5bcd642d05724abb485e0003d2263b5c5bc93b8a -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/rahadbhuiya
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5bcd642d05724abb485e0003d2263b5c5bc93b8a -
Trigger Event:
push
-
Statement type:
File details
Details for the file huddle_cluster-2.0.0-py3-none-any.whl.
File metadata
- Download URL: huddle_cluster-2.0.0-py3-none-any.whl
- Upload date:
- Size: 83.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b6304718666d2dfe0ad5a75abaefc91af2b71ff398eeaba4b5a8aaa8ccefb8f
|
|
| MD5 |
100b80978ed2dab06039614ac3d3b9e6
|
|
| BLAKE2b-256 |
dfd1ecf3261342251430879682a84fa78746172e9bc0b2d5570cbde4d765c0f2
|
Provenance
The following attestation bundles were made for huddle_cluster-2.0.0-py3-none-any.whl:
Publisher:
publish.yml on rahadbhuiya/HuddleCluster
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
huddle_cluster-2.0.0-py3-none-any.whl -
Subject digest:
2b6304718666d2dfe0ad5a75abaefc91af2b71ff398eeaba4b5a8aaa8ccefb8f - Sigstore transparency entry: 1837378823
- Sigstore integration time:
-
Permalink:
rahadbhuiya/HuddleCluster@5bcd642d05724abb485e0003d2263b5c5bc93b8a -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/rahadbhuiya
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5bcd642d05724abb485e0003d2263b5c5bc93b8a -
Trigger Event:
push
-
Statement type: