File size: 16,013 Bytes
e890160 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | """
openenv_loop.py β Environment interaction via OpenEnv HTTP API.
Handles:
- env_reset / env_step HTTP calls to the AntiAtropos HF Space
- Model-guided rollouts (generate action, step env, collect reward)
- Heuristic baseline rollouts (for comparison)
- Observation formatting for the LLM
Everything goes through the HTTP API β no local simulator imports needed.
"""
from __future__ import annotations
import json
import re
import time
from dataclasses import dataclass, field
from enum import Enum
from typing import Any, Dict, List, Optional, Tuple
import requests
import torch
# ββββββββββββββββββββββββββββββββββββββββββββββββ
# Constants
# ββββββββββββββββββββββββββββββββββββββββββββββββ
class ActionType(str, Enum):
NO_OP = "NO_OP"
SCALE_UP = "SCALE_UP"
SCALE_DOWN = "SCALE_DOWN"
REROUTE_TRAFFIC = "REROUTE_TRAFFIC"
SHED_LOAD = "SHED_LOAD"
VALID_ACTIONS = [a.value for a in ActionType]
VALID_NODES = ["node-0", "node-1", "node-2", "node-3", "node-4"]
SYSTEM_PROMPT = """You are an autonomous SRE controller managing a five-node microservice cluster.
CLUSTER TOPOLOGY (traffic flows parent -> children):
node-0 (VIP payment gateway) -> node-1, node-2
node-2 (catalog) -> node-3 (inventory)
node-4 (auth, independent ingress)
FAILED nodes have outflow=0 β their children are starved.
Backpressure: overloaded children reduce parent capacity.
ACTIONS (new capacity takes 5 ticks to boot):
SCALE_UP <node> <amount> β add capacity (0.3-0.5 normal, 0.6-0.8 heavy surge)
SCALE_DOWN <node> <amount> β remove capacity (0.2-0.4 safe, 0.5-0.7 aggressive)
REROUTE_TRAFFIC <node> <fraction> β move traffic AWAY from this node to healthy peers (0.3-0.7)
SHED_LOAD <node> <fraction> β drop incoming traffic (0.3-0.5), NEVER on node-0 (VIP)
NO_OP β do nothing when cluster is healthy
CRITICAL RULES:
- node-0 is the VIP payment gateway β NEVER shed its traffic
- REROUTE_TRAFFIC moves traffic AWAY FROM the target node
- SCALE_UP clears DEGRADED status on the target node
- Boot delay is 5 ticks β plan ahead for scaling
- Use English for reasoning, JSON for the action
REWARD PRIORITIES (in order):
1. Avoid SLA violations (latency > 200ms or error rate > 5%)
2. Keep queues low (growing queues = destabilizing system)
3. Don't over-provision (excess capacity costs money)
You MUST respond with one sentence of English reasoning, then a JSON action.
The JSON must use EXACTLY these keys: action_type, target_node_id, parameter.
action_type must be one of: SCALE_UP, SCALE_DOWN, REROUTE_TRAFFIC, SHED_LOAD, NO_OP.
target_node_id must be one of: node-0, node-1, node-2, node-3, node-4.
parameter must be a float between 0.0 and 10.0."""
# ββββββββββββββββββββββββββββββββββββββββββββββββ
# HTTP Client
# ββββββββββββββββββββββββββββββββββββββββββββββββ
class OpenEnvClient:
"""HTTP client for the AntiAtropos OpenEnv environment."""
def __init__(self, env_url: str):
self.env_url = env_url.rstrip("/")
self._session = requests.Session()
self._session.mount("https://", requests.adapters.HTTPAdapter(
pool_maxsize=1, max_retries=3
))
def reset(self, task_id: str = "task-1",
seed: Optional[int] = None) -> Dict[str, Any]:
payload: Dict[str, Any] = {"task_id": task_id}
if seed is not None:
payload["seed"] = seed
resp = self._session.post(
f"{self.env_url}/reset", json=payload, timeout=30
)
resp.raise_for_status()
return resp.json()
def step(self, action_type: str, target_node_id: str,
parameter: float) -> Dict[str, Any]:
payload = {
"action": {
"action_type": action_type,
"target_node_id": target_node_id,
"parameter": parameter,
}
}
resp = self._session.post(
f"{self.env_url}/step", json=payload, timeout=30
)
resp.raise_for_status()
return resp.json()
def verify(self) -> bool:
"""Smoke-test connectivity. Returns True if OK."""
try:
r = self.reset("task-1", seed=0)
obs = r.get("observation", r)
step_r = self.step("NO_OP", "node-0", 0.0)
print(f"[openenv] Connectivity OK β "
f"task_id={obs.get('task_id')}, reward={step_r.get('reward')}")
return True
except Exception as e:
print(f"[openenv] Connectivity FAILED: {e}")
return False
# ββββββββββββββββββββββββββββββββββββββββββββββββ
# Observation Formatting
# ββββββββββββββββββββββββββββββββββββββββββββββββ
def format_observation(obs_dict: Dict, task_id: str, step: int,
max_steps: int, reward: float = 0.0,
sla_violations: int = 0) -> str:
"""Convert API observation dict to natural-language string for LLM."""
lines = [f"Task: {task_id} Step: {step}/{max_steps} "
f"Reward: {reward:.3f} SLA violations: {sla_violations}"]
lines.append("")
lines.append("Node states:")
for n in obs_dict.get("nodes", []):
vip = " (VIP)" if n.get("is_vip") else ""
status = n.get("status", "HEALTHY")
q = n.get("queue_depth", 0) * 200
cap = n.get("capacity", 0) * 5
pending = n.get("pending_capacity", 0) * 5
inc = n.get("incoming_request_rate", 0) * 100
lat = n.get("latency_ms", 0) * 1000
outflow = n.get("outflow_rate", 0) * 100
failed = " [FAILED, outflow=0]" if status == "FAILED" else ""
degraded = " [DEGRADED]" if status == "DEGRADED" else ""
pending_str = f" (+{pending:.0f} booting)" if pending > 0 else ""
lines.append(
f" {n['node_id']}{vip}: queue={int(q)}, capacity={cap:.0f}{pending_str}, "
f"incoming={inc:.0f}, latency={lat:.0f}ms, outflow={outflow:.0f}{failed}{degraded}"
)
return "\n".join(lines)
# ββββββββββββββββββββββββββββββββββββββββββββββββ
# Action Parsing
# ββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class ParsedAction:
action_type: str
target_node_id: str
parameter: float
raw_text: str = ""
is_valid: bool = True
parse_error: str = ""
def parse_action(text: str) -> ParsedAction:
"""Extract action from model output text."""
try:
start = text.find("{")
end = text.rfind("}")
if start == -1 or end == -1 or end < start:
return ParsedAction("NO_OP", "node-0", 0.0, text,
False, "no JSON found")
obj = json.loads(text[start:end + 1])
at = str(obj.get("action_type", "")).upper()
nid = str(obj.get("target_node_id", "") or "node-0")
param = float(obj.get("parameter") or 0.0)
if at not in VALID_ACTIONS:
return ParsedAction("NO_OP", "node-0", 0.0, text,
False, f"invalid action_type: {at}")
if nid not in VALID_NODES:
return ParsedAction("NO_OP", "node-0", 0.0, text,
False, f"invalid target_node_id: {nid}")
return ParsedAction(at, nid, param, text, True, "")
except Exception as e:
return ParsedAction("NO_OP", "node-0", 0.0, text, False, str(e))
# ββββββββββββββββββββββββββββββββββββββββββββββββ
# Rollout Data
# ββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class Transition:
"""Single step in an episode rollout."""
obs_text: str # Formatted observation (LLM input)
input_ids: Any # Tokenized input IDs (tensor)
attention_mask: Any # Tokenized attention mask (tensor)
action: ParsedAction # The action taken
reward: float # Reward from environment
log_prob: float = 0.0 # Log probability of action under policy
@dataclass
class Episode:
"""Complete episode rollout."""
task_id: str
transitions: List[Transition] = field(default_factory=list)
total_reward: float = 0.0
avg_reward: float = 0.0
num_invalid: int = 0
done: bool = False
def finalize(self) -> None:
if self.transitions:
self.total_reward = sum(t.reward for t in self.transitions)
self.avg_reward = self.total_reward / len(self.transitions)
# ββββββββββββββββββββββββββββββββββββββββββββββββ
# Model-Guided Rollout
# ββββββββββββββββββββββββββββββββββββββββββββββββ
def rollout_episode(
client: OpenEnvClient,
model,
tokenizer,
task_id: str,
max_steps: int,
cfg: Dict[str, Any],
seed: Optional[int] = None,
) -> Episode:
"""Run one episode using the model to generate actions.
The model generates text β we parse the JSON action β step the env β
collect the reward. We also compute log_probs for REINFORCE.
"""
episode = Episode(task_id=task_id)
# Reset environment
reset_resp = client.reset(task_id=task_id, seed=seed)
obs_dict = reset_resp.get("observation", reset_resp)
episode_reward = 0.0
sla_violations = obs_dict.get("sla_violations", 0)
# Generation config
max_new_tokens = cfg.get("generation_max_new_tokens", 80)
temperature = cfg.get("generation_temperature", 0.7)
top_p = cfg.get("generation_top_p", 0.9)
do_sample = cfg.get("generation_do_sample", True)
for step in range(1, max_steps + 1):
# Format observation for the LLM
obs_text = format_observation(
obs_dict, task_id, step, max_steps,
episode_reward, sla_violations
)
# Build chat messages
messages = [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": obs_text},
]
# Tokenize
input_text = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
inputs = tokenizer(input_text, return_tensors="pt").to(model.device)
input_len = inputs["input_ids"].shape[1]
# Generate
with torch.no_grad():
outputs = model.generate(
**inputs,
max_new_tokens=max_new_tokens,
do_sample=do_sample,
temperature=temperature,
top_p=top_p,
pad_token_id=tokenizer.eos_token_id,
)
generated_text = tokenizer.decode(
outputs[0][input_len:], skip_special_tokens=True
)
# Parse action
action = parse_action(generated_text)
# Compute log_prob for the generated tokens (for REINFORCE)
# We'll compute this properly in the training loop using the
# full sequence. For now, store the generated token IDs.
# The train.py will compute log_probs during the loss step.
generated_ids = outputs[0][input_len:]
# Step environment (even if parse failed β NO_OP fallback)
step_resp = client.step(
action.action_type, action.target_node_id, action.parameter
)
obs_dict = step_resp.get("observation", step_resp)
step_reward = step_resp.get("reward", 0.0)
episode_reward = step_reward
done = step_resp.get("done", False)
sla_violations = obs_dict.get("sla_violations", sla_violations)
# Record transition
transition = Transition(
obs_text=obs_text,
input_ids=inputs["input_ids"].squeeze(0),
attention_mask=inputs["attention_mask"].squeeze(0),
action=action,
reward=step_reward,
)
episode.transitions.append(transition)
if not action.is_valid:
episode.num_invalid += 1
if done:
episode.done = True
break
episode.finalize()
return episode
# ββββββββββββββββββββββββββββββββββββββββββββββββ
# Heuristic Baseline
# ββββββββββββββββββββββββββββββββββββββββββββββββ
def heuristic_action(obs_dict: Dict, task_id: str) -> Tuple[str, str, float]:
"""Rule-based heuristic for baseline comparison."""
nodes = obs_dict.get("nodes", [])
total_queue = sum(n["queue_depth"] * 200 for n in nodes)
avg_latency = sum(n["latency_ms"] for n in nodes) / len(nodes) if nodes else 0
failed_nodes = [n for n in nodes if n.get("status") == "FAILED"]
if failed_nodes:
return "REROUTE_TRAFFIC", failed_nodes[0]["node_id"], 0.7
non_critical_overloaded = [
n for n in nodes
if n["queue_depth"] > 0.6 and n["node_id"] != "node-0"
and n.get("status") != "FAILED"
]
if non_critical_overloaded and avg_latency > 0.05:
shed = [n for n in non_critical_overloaded
if n["node_id"] in ["node-3", "node-4"]]
target = shed[0] if shed else non_critical_overloaded[0]
return "SHED_LOAD", target["node_id"], 0.4
if avg_latency > 0.03 or total_queue > 200:
target = max(nodes, key=lambda n: n["queue_depth"])
param = 0.6 if target["queue_depth"] > 0.75 else 0.4
return "SCALE_UP", target["node_id"], param
non_vips = [n for n in nodes if not n.get("is_vip", False)
and n.get("status") != "FAILED"]
if non_vips and avg_latency < 0.025 and total_queue < 50:
overprov = [n for n in non_vips if n.get("capacity", 0) > 0.6]
if overprov:
target = max(overprov, key=lambda n: n.get("capacity", 0))
return "SCALE_DOWN", target["node_id"], 0.3
return "NO_OP", "node-0", 0.0
def rollout_heuristic_episode(
client: OpenEnvClient,
task_id: str,
max_steps: int,
seed: Optional[int] = None,
) -> Episode:
"""Run one episode using the heuristic baseline."""
episode = Episode(task_id=task_id)
reset_resp = client.reset(task_id=task_id, seed=seed)
obs_dict = reset_resp.get("observation", reset_resp)
episode_reward = 0.0
for step in range(1, max_steps + 1):
action_type, target_node_id, parameter = heuristic_action(obs_dict, task_id)
step_resp = client.step(action_type, target_node_id, parameter)
obs_dict = step_resp.get("observation", step_resp)
step_reward = step_resp.get("reward", 0.0)
episode_reward = step_reward
done = step_resp.get("done", False)
action = ParsedAction(action_type, target_node_id, parameter)
episode.transitions.append(Transition(
obs_text="", input_ids=None, attention_mask=None,
action=action, reward=step_reward,
))
if done:
episode.done = True
break
episode.finalize()
return episode
|