Spaces:
Sleeping
Sleeping
Merge wave1/env-upgrades: schema drift, oversight, curriculum, fine-grained rewards + 4 tests
Browse files- models.py +25 -1
- server/curriculum.py +128 -0
- server/environment.py +123 -29
- server/failures.py +15 -4
- server/grader.py +7 -2
- server/oversight.py +183 -0
- server/scenarios.py +35 -6
- server/schema_drift.py +125 -0
- server/simulator.py +118 -9
- tests/test_curriculum.py +35 -0
- tests/test_oversight.py +75 -0
- tests/test_reward_shaping.py +54 -0
- tests/test_schema_drift.py +87 -0
models.py
CHANGED
|
@@ -121,7 +121,7 @@ class LegalAction(BaseModel):
|
|
| 121 |
description=(
|
| 122 |
"One of: inspect_logs | inspect_metrics | inspect_traces | "
|
| 123 |
"restart_service | rollback_service | scale_service | tune_config | "
|
| 124 |
-
"clear_cache | rebalance_traffic | pause_job | noop"
|
| 125 |
)
|
| 126 |
)
|
| 127 |
valid_targets: List[str] = Field(
|
|
@@ -150,6 +150,7 @@ class SevZeroAction(Action):
|
|
| 150 |
clear_cache(cache_name) -> flushes cache; 1 tick delay
|
| 151 |
rebalance_traffic(from_region, to_region, pct) -> shifts traffic; 2-3 tick delay
|
| 152 |
pause_job(job_name) -> pauses background job; 1 tick delay
|
|
|
|
| 153 |
noop() -> wait and observe; 0 ticks
|
| 154 |
"""
|
| 155 |
|
|
@@ -221,6 +222,21 @@ class SevZeroObservation(Observation):
|
|
| 221 |
"See ServiceInfoModel for field definitions."
|
| 222 |
),
|
| 223 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 224 |
|
| 225 |
# --- Active alerts ---
|
| 226 |
alerts: List[Dict[str, Any]] = Field(
|
|
@@ -260,6 +276,14 @@ class SevZeroObservation(Observation):
|
|
| 260 |
default=None,
|
| 261 |
description="Distributed trace from the most recent inspect_traces action.",
|
| 262 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 263 |
|
| 264 |
|
| 265 |
class SevZeroState(State):
|
|
|
|
| 121 |
description=(
|
| 122 |
"One of: inspect_logs | inspect_metrics | inspect_traces | "
|
| 123 |
"restart_service | rollback_service | scale_service | tune_config | "
|
| 124 |
+
"clear_cache | rebalance_traffic | pause_job | request_approval | noop"
|
| 125 |
)
|
| 126 |
)
|
| 127 |
valid_targets: List[str] = Field(
|
|
|
|
| 150 |
clear_cache(cache_name) -> flushes cache; 1 tick delay
|
| 151 |
rebalance_traffic(from_region, to_region, pct) -> shifts traffic; 2-3 tick delay
|
| 152 |
pause_job(job_name) -> pauses background job; 1 tick delay
|
| 153 |
+
request_approval(action_type, target, reason) -> asks manager for gating (oversight)
|
| 154 |
noop() -> wait and observe; 0 ticks
|
| 155 |
"""
|
| 156 |
|
|
|
|
| 222 |
"See ServiceInfoModel for field definitions."
|
| 223 |
),
|
| 224 |
)
|
| 225 |
+
cluster: Optional[Dict[str, Any]] = Field(
|
| 226 |
+
default=None,
|
| 227 |
+
description=(
|
| 228 |
+
"When schema drift renames the envelope, the service list may appear "
|
| 229 |
+
"under cluster.services; otherwise null."
|
| 230 |
+
),
|
| 231 |
+
)
|
| 232 |
+
schema_version: str = Field(
|
| 233 |
+
default="v1",
|
| 234 |
+
description="Observation schema tag; drift episodes use v1.2-drift when enabled.",
|
| 235 |
+
)
|
| 236 |
+
schema_changelog: List[str] = Field(
|
| 237 |
+
default_factory=list,
|
| 238 |
+
description="Plain-English list of active schema drift mutations, if any.",
|
| 239 |
+
)
|
| 240 |
|
| 241 |
# --- Active alerts ---
|
| 242 |
alerts: List[Dict[str, Any]] = Field(
|
|
|
|
| 276 |
default=None,
|
| 277 |
description="Distributed trace from the most recent inspect_traces action.",
|
| 278 |
)
|
| 279 |
+
oversight_policy: List[Dict[str, Any]] = Field(
|
| 280 |
+
default_factory=list,
|
| 281 |
+
description="High-impact rules when oversight is enabled (read-only for the agent).",
|
| 282 |
+
)
|
| 283 |
+
pending_approvals: List[Dict[str, Any]] = Field(
|
| 284 |
+
default_factory=list,
|
| 285 |
+
description="In-flight or recent approval requests when oversight is enabled.",
|
| 286 |
+
)
|
| 287 |
|
| 288 |
|
| 289 |
class SevZeroState(State):
|
server/curriculum.py
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
server/curriculum.py — Heuristic (Tier1) and optional LLM (Tier2) scenario overrides.
|
| 3 |
+
"""
|
| 4 |
+
|
| 5 |
+
from __future__ import annotations
|
| 6 |
+
|
| 7 |
+
import json
|
| 8 |
+
import logging
|
| 9 |
+
import os
|
| 10 |
+
import random
|
| 11 |
+
from collections import Counter, deque
|
| 12 |
+
from typing import Any, Deque, Dict, List, Optional
|
| 13 |
+
|
| 14 |
+
from server.failures import FailureType
|
| 15 |
+
|
| 16 |
+
LOG = logging.getLogger(__name__)
|
| 17 |
+
_tier2_once: bool = False
|
| 18 |
+
|
| 19 |
+
try:
|
| 20 |
+
from dotenv import load_dotenv
|
| 21 |
+
|
| 22 |
+
for _path in ("api.env", "hg.env"):
|
| 23 |
+
load_dotenv(_path, override=False)
|
| 24 |
+
except ImportError:
|
| 25 |
+
pass
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def _llm_tier2_once(summary: Dict[str, Any]) -> Optional[Dict[str, Any]]:
|
| 29 |
+
"""Optional Gemini call. Returns None on any failure; logs once if missing key."""
|
| 30 |
+
global _tier2_once
|
| 31 |
+
key = os.environ.get("GEMINI_API_KEY", "").strip()
|
| 32 |
+
if not key:
|
| 33 |
+
if not _tier2_once:
|
| 34 |
+
LOG.info("curriculum Tier2: GEMINI_API_KEY not set, using Tier1")
|
| 35 |
+
_tier2_once = True
|
| 36 |
+
return None
|
| 37 |
+
try:
|
| 38 |
+
from google import genai # type: ignore[import-not-found]
|
| 39 |
+
except ImportError:
|
| 40 |
+
if not _tier2_once:
|
| 41 |
+
LOG.info("curriculum Tier2: google.genai not available, using Tier1")
|
| 42 |
+
_tier2_once = True
|
| 43 |
+
return None
|
| 44 |
+
model_id = os.environ.get("GEMINI_MODEL_FLASH", "gemini-3-flash-preview")
|
| 45 |
+
try:
|
| 46 |
+
client = genai.Client(api_key=key)
|
| 47 |
+
r = client.models.generate_content(
|
| 48 |
+
model=model_id,
|
| 49 |
+
contents=(
|
| 50 |
+
"Return only JSON: failure_type_weights (map of failure type id string to "
|
| 51 |
+
f"weight), min_failures (int), max_steps (int), rationale. Input: {json.dumps(summary)[:6000]}"
|
| 52 |
+
),
|
| 53 |
+
)
|
| 54 |
+
if not (r and getattr(r, "text", None)):
|
| 55 |
+
return None
|
| 56 |
+
data = json.loads(r.text) # type: ignore[union-attr]
|
| 57 |
+
w = data.get("failure_type_weights", {})
|
| 58 |
+
if not isinstance(w, dict):
|
| 59 |
+
return None
|
| 60 |
+
return {
|
| 61 |
+
"failure_type_weights": {str(a): float(b) for a, b in w.items()},
|
| 62 |
+
"num_failures": int(data.get("min_failures", 1)),
|
| 63 |
+
"max_steps": int(data.get("max_steps", 20)),
|
| 64 |
+
}
|
| 65 |
+
except Exception as e: # noqa: BLE001
|
| 66 |
+
if not _tier2_once:
|
| 67 |
+
LOG.info("curriculum Tier2: API error, Tier1: %s", e)
|
| 68 |
+
_tier2_once = True
|
| 69 |
+
return None
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
class Curriculum:
|
| 73 |
+
def __init__(self) -> None:
|
| 74 |
+
# Last 10 episodes: failure type ids, whether resolved, grader / proxy score
|
| 75 |
+
self._episodes: Deque[Dict[str, Any]] = deque(
|
| 76 |
+
maxlen=10,
|
| 77 |
+
)
|
| 78 |
+
self._episode_idx: int = 0
|
| 79 |
+
|
| 80 |
+
def on_episode_end(
|
| 81 |
+
self,
|
| 82 |
+
mean_score: float,
|
| 83 |
+
resolved: bool,
|
| 84 |
+
failure_types: List[str],
|
| 85 |
+
) -> None:
|
| 86 |
+
self._episodes.append(
|
| 87 |
+
{
|
| 88 |
+
"failure_types": list(failure_types) or [FailureType.CRASH.value],
|
| 89 |
+
"resolved": bool(resolved),
|
| 90 |
+
"mean_score": float(mean_score),
|
| 91 |
+
},
|
| 92 |
+
)
|
| 93 |
+
self._episode_idx += 1
|
| 94 |
+
|
| 95 |
+
def next_scenario_overrides(self) -> Dict[str, Any]:
|
| 96 |
+
n = self._episode_idx
|
| 97 |
+
out: Dict[str, Any] = {}
|
| 98 |
+
if self._episodes:
|
| 99 |
+
by_type: Dict[str, int] = {}
|
| 100 |
+
success_by: Dict[str, int] = {}
|
| 101 |
+
for ep in self._episodes:
|
| 102 |
+
for ft in ep["failure_types"]:
|
| 103 |
+
by_type[ft] = by_type.get(ft, 0) + 1
|
| 104 |
+
if ep["resolved"]:
|
| 105 |
+
success_by[ft] = success_by.get(ft, 0) + 1
|
| 106 |
+
success_rate: Dict[str, float] = {}
|
| 107 |
+
for t, c in by_type.items():
|
| 108 |
+
success_rate[t] = success_by.get(t, 0) / max(1, c)
|
| 109 |
+
if success_rate:
|
| 110 |
+
worst = sorted(
|
| 111 |
+
success_rate.items(), key=lambda x: (x[1], -by_type[x[0]]),
|
| 112 |
+
)
|
| 113 |
+
w1, w2 = worst[0][0], (
|
| 114 |
+
worst[1][0] if len(worst) > 1 else worst[0][0]
|
| 115 |
+
)
|
| 116 |
+
wmap: Dict[str, float] = {f.value: 1.0 for f in FailureType}
|
| 117 |
+
wmap[w1] = wmap.get(w1, 1.0) * 3.0
|
| 118 |
+
wmap[w2] = wmap.get(w2, 1.0) * 2.0
|
| 119 |
+
out["failure_type_weights"] = wmap
|
| 120 |
+
means = [float(ep["mean_score"]) for ep in self._episodes]
|
| 121 |
+
if means and (sum(means) / len(means)) > 0.85:
|
| 122 |
+
out["bump_num_failures"] = 1
|
| 123 |
+
out["max_steps_offset"] = -2
|
| 124 |
+
if n > 0 and n % 10 == 0:
|
| 125 |
+
t2 = _llm_tier2_once({"episodes": list(self._episodes)})
|
| 126 |
+
if t2:
|
| 127 |
+
return {**out, **t2}
|
| 128 |
+
return out
|
server/environment.py
CHANGED
|
@@ -7,12 +7,14 @@ Bridges the OpenEnv SDK contract (reset/step/state) with the Simulator engine.
|
|
| 7 |
from __future__ import annotations
|
| 8 |
|
| 9 |
import uuid
|
| 10 |
-
from typing import Any, Optional
|
| 11 |
|
| 12 |
from openenv.core.env_server import Environment
|
| 13 |
from openenv.core.env_server.types import EnvironmentMetadata
|
| 14 |
|
| 15 |
from models import SevZeroAction, SevZeroObservation, SevZeroState
|
|
|
|
|
|
|
| 16 |
from server.scenarios import generate_scenario
|
| 17 |
from server.simulator import Simulator
|
| 18 |
|
|
@@ -25,13 +27,23 @@ class SevZeroEnvironment(Environment[SevZeroAction, SevZeroObservation, SevZeroS
|
|
| 25 |
remediation commands to restore SLO compliance across a microservice cluster.
|
| 26 |
"""
|
| 27 |
|
| 28 |
-
def __init__(self) -> None:
|
| 29 |
super().__init__()
|
| 30 |
self._sim = Simulator()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
self._episode_id: Optional[str] = None
|
| 32 |
self._task_id: str = "easy"
|
| 33 |
self._seed: Optional[int] = None
|
| 34 |
self._step_count: int = 0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
def close(self) -> None:
|
| 37 |
# No-op: the SDK calls close() after every HTTP request, but we need
|
|
@@ -55,18 +67,45 @@ class SevZeroEnvironment(Environment[SevZeroAction, SevZeroObservation, SevZeroS
|
|
| 55 |
episode_id: Optional[str] = None,
|
| 56 |
**kwargs: Any,
|
| 57 |
) -> SevZeroObservation:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
self._episode_id = episode_id or str(uuid.uuid4())
|
| 59 |
self._task_id = kwargs.get("task_id", "easy")
|
| 60 |
self._seed = seed if seed is not None else 42
|
| 61 |
self._step_count = 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
|
| 63 |
-
|
| 64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
self._sim.reset(
|
| 66 |
seed=self._seed,
|
| 67 |
difficulty=scenario.difficulty,
|
| 68 |
failure_specs=scenario.failure_specs,
|
|
|
|
| 69 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
|
| 71 |
return self._build_observation(reward=None, done=False)
|
| 72 |
|
|
@@ -77,9 +116,51 @@ class SevZeroEnvironment(Environment[SevZeroAction, SevZeroObservation, SevZeroS
|
|
| 77 |
**kwargs: Any,
|
| 78 |
) -> SevZeroObservation:
|
| 79 |
self._step_count += 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
|
| 81 |
-
reward = self._sim.step(action.action_type, action.params)
|
| 82 |
done = self._sim.terminated
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
|
| 84 |
return self._build_observation(reward=reward, done=done)
|
| 85 |
|
|
@@ -99,29 +180,42 @@ class SevZeroEnvironment(Environment[SevZeroAction, SevZeroObservation, SevZeroS
|
|
| 99 |
self, reward: Optional[float], done: bool,
|
| 100 |
) -> SevZeroObservation:
|
| 101 |
sim = self._sim
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
episode_id=self._episode_id,
|
| 108 |
-
|
| 109 |
-
status=sim.termination_reason or "playing",
|
| 110 |
-
max_steps=sim.max_steps,
|
| 111 |
-
# Health summary
|
| 112 |
-
global_slo_score=round(sim.get_slo_score(), 4),
|
| 113 |
-
observation_summary=sim.get_observation_summary(),
|
| 114 |
-
# Per-service state
|
| 115 |
-
services=sim.get_service_observations(),
|
| 116 |
-
# Alerts
|
| 117 |
-
alerts=sim.get_alerts(),
|
| 118 |
-
# Context
|
| 119 |
-
recent_deploys=[d for d in sim.deploys if d["ticks_ago"] <= 10],
|
| 120 |
-
actions_taken=sim.actions_taken[-10:],
|
| 121 |
-
# Action space
|
| 122 |
-
legal_actions=sim.get_legal_actions(),
|
| 123 |
-
# Diagnostics
|
| 124 |
-
logs=sim.last_logs,
|
| 125 |
-
metric_history=sim.last_metric_history,
|
| 126 |
-
traces=sim.last_traces,
|
| 127 |
)
|
|
|
|
|
|
| 7 |
from __future__ import annotations
|
| 8 |
|
| 9 |
import uuid
|
| 10 |
+
from typing import Any, List, Optional
|
| 11 |
|
| 12 |
from openenv.core.env_server import Environment
|
| 13 |
from openenv.core.env_server.types import EnvironmentMetadata
|
| 14 |
|
| 15 |
from models import SevZeroAction, SevZeroObservation, SevZeroState
|
| 16 |
+
from server import schema_drift
|
| 17 |
+
from server.grader import grade_episode
|
| 18 |
from server.scenarios import generate_scenario
|
| 19 |
from server.simulator import Simulator
|
| 20 |
|
|
|
|
| 27 |
remediation commands to restore SLO compliance across a microservice cluster.
|
| 28 |
"""
|
| 29 |
|
| 30 |
+
def __init__(self, enable_curriculum: bool = False) -> None:
|
| 31 |
super().__init__()
|
| 32 |
self._sim = Simulator()
|
| 33 |
+
self._curriculum: Any = None
|
| 34 |
+
self._enable_curriculum = enable_curriculum
|
| 35 |
+
if enable_curriculum:
|
| 36 |
+
from server.curriculum import Curriculum
|
| 37 |
+
|
| 38 |
+
self._curriculum = Curriculum()
|
| 39 |
self._episode_id: Optional[str] = None
|
| 40 |
self._task_id: str = "easy"
|
| 41 |
self._seed: Optional[int] = None
|
| 42 |
self._step_count: int = 0
|
| 43 |
+
self._enable_schema_drift: bool = False
|
| 44 |
+
self._enable_oversight: bool = False
|
| 45 |
+
self._oversight: Any = None
|
| 46 |
+
self._curriculum_stash: Optional[dict] = None
|
| 47 |
|
| 48 |
def close(self) -> None:
|
| 49 |
# No-op: the SDK calls close() after every HTTP request, but we need
|
|
|
|
| 67 |
episode_id: Optional[str] = None,
|
| 68 |
**kwargs: Any,
|
| 69 |
) -> SevZeroObservation:
|
| 70 |
+
if self._curriculum is not None and self._curriculum_stash is not None:
|
| 71 |
+
s = self._curriculum_stash
|
| 72 |
+
self._curriculum.on_episode_end(
|
| 73 |
+
float(s.get("mean_score", 0.0)),
|
| 74 |
+
bool(s.get("resolved", False)),
|
| 75 |
+
list(s.get("failure_types", [])),
|
| 76 |
+
)
|
| 77 |
+
self._curriculum_stash = None
|
| 78 |
+
|
| 79 |
self._episode_id = episode_id or str(uuid.uuid4())
|
| 80 |
self._task_id = kwargs.get("task_id", "easy")
|
| 81 |
self._seed = seed if seed is not None else 42
|
| 82 |
self._step_count = 0
|
| 83 |
+
self._enable_schema_drift = bool(kwargs.get("enable_schema_drift", False))
|
| 84 |
+
self._enable_oversight = bool(kwargs.get("enable_oversight", False))
|
| 85 |
+
if self._enable_oversight and self._oversight is None:
|
| 86 |
+
from server.oversight import OversightManager
|
| 87 |
+
|
| 88 |
+
self._oversight = OversightManager()
|
| 89 |
+
elif not self._enable_oversight:
|
| 90 |
+
self._oversight = None
|
| 91 |
|
| 92 |
+
overrides: dict = {}
|
| 93 |
+
if self._curriculum is not None:
|
| 94 |
+
overrides = self._curriculum.next_scenario_overrides() or {}
|
| 95 |
+
|
| 96 |
+
scenario = generate_scenario(
|
| 97 |
+
self._seed, self._task_id, **overrides,
|
| 98 |
+
)
|
| 99 |
self._sim.reset(
|
| 100 |
seed=self._seed,
|
| 101 |
difficulty=scenario.difficulty,
|
| 102 |
failure_specs=scenario.failure_specs,
|
| 103 |
+
max_steps_override=scenario.max_steps,
|
| 104 |
)
|
| 105 |
+
if self._oversight is not None:
|
| 106 |
+
self._oversight.on_reset(
|
| 107 |
+
self._sim, enable=True, max_steps_override=scenario.max_steps,
|
| 108 |
+
)
|
| 109 |
|
| 110 |
return self._build_observation(reward=None, done=False)
|
| 111 |
|
|
|
|
| 116 |
**kwargs: Any,
|
| 117 |
) -> SevZeroObservation:
|
| 118 |
self._step_count += 1
|
| 119 |
+
t0 = int(self._sim.tick)
|
| 120 |
+
|
| 121 |
+
if self._oversight is not None:
|
| 122 |
+
self._oversight.on_tick_start(self._sim)
|
| 123 |
+
o = self._oversight
|
| 124 |
+
if o.should_block(self._sim, action.action_type, action.params):
|
| 125 |
+
reward = self._sim.step(
|
| 126 |
+
action.action_type,
|
| 127 |
+
action.params,
|
| 128 |
+
prebuilt_record={
|
| 129 |
+
"action": action.action_type,
|
| 130 |
+
"target": self._sim.action_fingerprint(
|
| 131 |
+
action.action_type, action.params,
|
| 132 |
+
),
|
| 133 |
+
"success": False,
|
| 134 |
+
"note": "oversight_required",
|
| 135 |
+
},
|
| 136 |
+
fixed_reward=-0.15,
|
| 137 |
+
)
|
| 138 |
+
else:
|
| 139 |
+
reward = self._sim.step(action.action_type, action.params)
|
| 140 |
+
else:
|
| 141 |
+
reward = self._sim.step(action.action_type, action.params)
|
| 142 |
+
|
| 143 |
+
if self._oversight is not None and action.action_type == "request_approval":
|
| 144 |
+
self._oversight.on_request_approval(action.params, t0)
|
| 145 |
|
|
|
|
| 146 |
done = self._sim.terminated
|
| 147 |
+
if done and self._curriculum is not None:
|
| 148 |
+
fts: List[str] = [
|
| 149 |
+
f.failure_type.value for f in self._sim.failures
|
| 150 |
+
]
|
| 151 |
+
g = grade_episode(
|
| 152 |
+
final_slo_score=self._sim.get_slo_score(),
|
| 153 |
+
steps_taken=self._step_count,
|
| 154 |
+
max_steps=self._sim.max_steps,
|
| 155 |
+
actions_taken=list(self._sim.actions_taken),
|
| 156 |
+
terminated=done,
|
| 157 |
+
termination_reason=self._sim.termination_reason,
|
| 158 |
+
)
|
| 159 |
+
self._curriculum_stash = {
|
| 160 |
+
"mean_score": g.score,
|
| 161 |
+
"resolved": (self._sim.termination_reason == "resolved"),
|
| 162 |
+
"failure_types": fts,
|
| 163 |
+
}
|
| 164 |
|
| 165 |
return self._build_observation(reward=reward, done=done)
|
| 166 |
|
|
|
|
| 180 |
self, reward: Optional[float], done: bool,
|
| 181 |
) -> SevZeroObservation:
|
| 182 |
sim = self._sim
|
| 183 |
+
legal = sim.get_legal_actions(
|
| 184 |
+
include_request_approval=bool(self._enable_oversight),
|
| 185 |
+
)
|
| 186 |
+
pol: list = list(self._oversight.policy) if self._oversight else []
|
| 187 |
+
pend: list = (
|
| 188 |
+
self._oversight.pending_approvals
|
| 189 |
+
if self._oversight
|
| 190 |
+
else []
|
| 191 |
+
)
|
| 192 |
+
ob: dict = {
|
| 193 |
+
"done": done,
|
| 194 |
+
"reward": reward,
|
| 195 |
+
"tick": sim.tick,
|
| 196 |
+
"episode_id": self._episode_id,
|
| 197 |
+
"task_id": self._task_id,
|
| 198 |
+
"status": sim.termination_reason or "playing",
|
| 199 |
+
"max_steps": sim.max_steps,
|
| 200 |
+
"global_slo_score": round(sim.get_slo_score(), 4),
|
| 201 |
+
"observation_summary": sim.get_observation_summary(),
|
| 202 |
+
"services": sim.get_service_observations(),
|
| 203 |
+
"alerts": sim.get_alerts(),
|
| 204 |
+
"recent_deploys": [d for d in sim.deploys if d["ticks_ago"] <= 10],
|
| 205 |
+
"actions_taken": sim.actions_taken[-10:],
|
| 206 |
+
"legal_actions": legal,
|
| 207 |
+
"logs": sim.last_logs,
|
| 208 |
+
"metric_history": sim.last_metric_history,
|
| 209 |
+
"traces": sim.last_traces,
|
| 210 |
+
"oversight_policy": pol,
|
| 211 |
+
"pending_approvals": pend,
|
| 212 |
+
}
|
| 213 |
+
if self._seed is None or self._episode_id is None:
|
| 214 |
+
raise RuntimeError("Episode context missing (seed, episode_id)")
|
| 215 |
+
ob = schema_drift.apply(
|
| 216 |
+
ob,
|
| 217 |
+
seed=self._seed,
|
| 218 |
episode_id=self._episode_id,
|
| 219 |
+
enabled=self._enable_schema_drift,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 220 |
)
|
| 221 |
+
return SevZeroObservation(**ob)
|
server/failures.py
CHANGED
|
@@ -96,10 +96,18 @@ class FailureSpec:
|
|
| 96 |
def select_failure_type(
|
| 97 |
rng: random.Random,
|
| 98 |
exclude: Optional[List[FailureType]] = None,
|
|
|
|
| 99 |
) -> FailureType:
|
| 100 |
"""Sample a failure type from the empirically-weighted distribution."""
|
| 101 |
-
|
| 102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
|
| 104 |
# Remove excluded types
|
| 105 |
if exclude:
|
|
@@ -112,7 +120,8 @@ def select_failure_type(
|
|
| 112 |
|
| 113 |
|
| 114 |
def select_multi_root_failures(
|
| 115 |
-
rng: random.Random, count: int = 2
|
|
|
|
| 116 |
) -> List[FailureType]:
|
| 117 |
"""Select multiple failure types with incompatibility constraints."""
|
| 118 |
selected: List[FailureType] = []
|
|
@@ -125,7 +134,9 @@ def select_multi_root_failures(
|
|
| 125 |
exclude.append(b)
|
| 126 |
elif s == b:
|
| 127 |
exclude.append(a)
|
| 128 |
-
ft = select_failure_type(
|
|
|
|
|
|
|
| 129 |
selected.append(ft)
|
| 130 |
return selected
|
| 131 |
|
|
|
|
| 96 |
def select_failure_type(
|
| 97 |
rng: random.Random,
|
| 98 |
exclude: Optional[List[FailureType]] = None,
|
| 99 |
+
weight_override: Optional[Dict[FailureType, float]] = None,
|
| 100 |
) -> FailureType:
|
| 101 |
"""Sample a failure type from the empirically-weighted distribution."""
|
| 102 |
+
if weight_override:
|
| 103 |
+
base: Dict[FailureType, float] = {
|
| 104 |
+
f: weight_override.get(f, _FAILURE_WEIGHTS.get(f, 0.0))
|
| 105 |
+
for f in _FAILURE_WEIGHTS
|
| 106 |
+
}
|
| 107 |
+
else:
|
| 108 |
+
base = dict(_FAILURE_WEIGHTS)
|
| 109 |
+
population = list(base.keys())
|
| 110 |
+
weights = [max(1e-9, base[f]) for f in population]
|
| 111 |
|
| 112 |
# Remove excluded types
|
| 113 |
if exclude:
|
|
|
|
| 120 |
|
| 121 |
|
| 122 |
def select_multi_root_failures(
|
| 123 |
+
rng: random.Random, count: int = 2,
|
| 124 |
+
weight_override: Optional[Dict[FailureType, float]] = None,
|
| 125 |
) -> List[FailureType]:
|
| 126 |
"""Select multiple failure types with incompatibility constraints."""
|
| 127 |
selected: List[FailureType] = []
|
|
|
|
| 134 |
exclude.append(b)
|
| 135 |
elif s == b:
|
| 136 |
exclude.append(a)
|
| 137 |
+
ft = select_failure_type(
|
| 138 |
+
rng, exclude=exclude, weight_override=weight_override,
|
| 139 |
+
)
|
| 140 |
selected.append(ft)
|
| 141 |
return selected
|
| 142 |
|
server/grader.py
CHANGED
|
@@ -60,12 +60,17 @@ def grade_episode(
|
|
| 60 |
successful = sum(1 for a in actions_taken if a.get("success", False))
|
| 61 |
remediation_actions = sum(
|
| 62 |
1 for a in actions_taken
|
| 63 |
-
if a.get("action") not in (
|
|
|
|
|
|
|
|
|
|
| 64 |
and a.get("success", False)
|
| 65 |
)
|
| 66 |
inspect_actions = sum(
|
| 67 |
1 for a in actions_taken
|
| 68 |
-
if a.get("action") in (
|
|
|
|
|
|
|
| 69 |
)
|
| 70 |
|
| 71 |
# Good ratio: some inspection + targeted remediation
|
|
|
|
| 60 |
successful = sum(1 for a in actions_taken if a.get("success", False))
|
| 61 |
remediation_actions = sum(
|
| 62 |
1 for a in actions_taken
|
| 63 |
+
if a.get("action") not in (
|
| 64 |
+
"inspect_logs", "inspect_metrics", "inspect_traces",
|
| 65 |
+
"request_approval", "noop",
|
| 66 |
+
)
|
| 67 |
and a.get("success", False)
|
| 68 |
)
|
| 69 |
inspect_actions = sum(
|
| 70 |
1 for a in actions_taken
|
| 71 |
+
if a.get("action") in (
|
| 72 |
+
"inspect_logs", "inspect_metrics", "inspect_traces", "request_approval",
|
| 73 |
+
)
|
| 74 |
)
|
| 75 |
|
| 76 |
# Good ratio: some inspection + targeted remediation
|
server/oversight.py
ADDED
|
@@ -0,0 +1,183 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
server/oversight.py — Virtual SRE manager gating for high-impact actions.
|
| 3 |
+
"""
|
| 4 |
+
|
| 5 |
+
from __future__ import annotations
|
| 6 |
+
|
| 7 |
+
from dataclasses import dataclass, field
|
| 8 |
+
from typing import Any, Dict, List, Optional, Tuple
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
@dataclass
|
| 12 |
+
class _Grant:
|
| 13 |
+
key: str
|
| 14 |
+
for_action: str
|
| 15 |
+
for_target: str
|
| 16 |
+
granted_at_tick: int
|
| 17 |
+
expires_after_tick: int # grant valid: granted_at <= tick < expires_after
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def _is_identity_rollback(simulation: Any, service_id: str) -> bool:
|
| 21 |
+
g = simulation.graph
|
| 22 |
+
if not g or not service_id:
|
| 23 |
+
return False
|
| 24 |
+
node = g.node_map.get(service_id)
|
| 25 |
+
return bool(node and node.layer == "identity")
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def _needs_postgres_or_primary_restart(target: str) -> bool:
|
| 29 |
+
t = (target or "").lower()
|
| 30 |
+
return "postgres" in t or "primary" in t
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
def _approval_key(action_type: str, target: str) -> str:
|
| 34 |
+
return f"{action_type}::{target}"
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
@dataclass
|
| 38 |
+
class OversightManager:
|
| 39 |
+
"""
|
| 40 |
+
Policy + approval storage. Ticks are simulation ticks after each env step
|
| 41 |
+
(matches Simulator.tick at the start of a step, before inner increment).
|
| 42 |
+
"""
|
| 43 |
+
|
| 44 |
+
_grants: Dict[str, _Grant] = field(default_factory=dict)
|
| 45 |
+
_policy: List[Dict[str, Any]] = field(default_factory=list)
|
| 46 |
+
_pending: List[Dict[str, Any]] = field(default_factory=list)
|
| 47 |
+
_request_tick: Dict[str, int] = field(default_factory=dict)
|
| 48 |
+
_enabled: bool = False
|
| 49 |
+
|
| 50 |
+
def on_reset(self, simulation: Any, enable: bool, max_steps_override: int) -> None: # noqa: ARG002
|
| 51 |
+
self._enabled = enable
|
| 52 |
+
self._grants.clear()
|
| 53 |
+
self._pending.clear()
|
| 54 |
+
self._request_tick.clear()
|
| 55 |
+
if not enable:
|
| 56 |
+
self._policy = []
|
| 57 |
+
return
|
| 58 |
+
self._policy = [
|
| 59 |
+
{
|
| 60 |
+
"action_type": "restart_service",
|
| 61 |
+
"target_pattern": "*postgres* or *primary*",
|
| 62 |
+
"reason": "Restarts on database primaries are high-blast-radius",
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"action_type": "rebalance_traffic",
|
| 66 |
+
"target_pattern": "pct >= 40",
|
| 67 |
+
"reason": "Large traffic shifts are high-risk",
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"action_type": "rollback_service",
|
| 71 |
+
"target_pattern": "identity layer services",
|
| 72 |
+
"reason": "Auth/session rollbacks are customer-impacting",
|
| 73 |
+
},
|
| 74 |
+
]
|
| 75 |
+
|
| 76 |
+
@property
|
| 77 |
+
def policy(self) -> List[Dict[str, Any]]:
|
| 78 |
+
return self._policy
|
| 79 |
+
|
| 80 |
+
@property
|
| 81 |
+
def pending_approvals(self) -> List[Dict[str, Any]]:
|
| 82 |
+
return list(self._pending)
|
| 83 |
+
|
| 84 |
+
def is_high_impact(
|
| 85 |
+
self, simulation: Any, action_type: str, params: Dict[str, Any],
|
| 86 |
+
) -> bool:
|
| 87 |
+
if action_type == "restart_service":
|
| 88 |
+
sid = str(params.get("service_id", ""))
|
| 89 |
+
return _needs_postgres_or_primary_restart(sid)
|
| 90 |
+
if action_type == "rebalance_traffic":
|
| 91 |
+
try:
|
| 92 |
+
p = int(params.get("pct", 50))
|
| 93 |
+
except (TypeError, ValueError):
|
| 94 |
+
p = 50
|
| 95 |
+
return p >= 40
|
| 96 |
+
if action_type == "rollback_service":
|
| 97 |
+
sid = str(params.get("service_id", ""))
|
| 98 |
+
return _is_identity_rollback(simulation, sid)
|
| 99 |
+
return False
|
| 100 |
+
|
| 101 |
+
def _prune(self, current_tick: int) -> None:
|
| 102 |
+
dead: List[str] = []
|
| 103 |
+
for k, g in self._grants.items():
|
| 104 |
+
if current_tick >= g.expires_after_tick:
|
| 105 |
+
dead.append(k)
|
| 106 |
+
for k in dead:
|
| 107 |
+
self._grants.pop(k, None)
|
| 108 |
+
for p in self._pending:
|
| 109 |
+
st = p.get("state", "")
|
| 110 |
+
if st != "requested":
|
| 111 |
+
continue
|
| 112 |
+
t0 = int(p.get("submitted_at", 0))
|
| 113 |
+
if current_tick - t0 > 3:
|
| 114 |
+
p["state"] = "expired"
|
| 115 |
+
|
| 116 |
+
def on_tick_start(self, simulation: Any) -> None:
|
| 117 |
+
if not self._enabled:
|
| 118 |
+
return
|
| 119 |
+
t = int(simulation.tick)
|
| 120 |
+
self._prune(t)
|
| 121 |
+
new_pending: List[Dict[str, Any]] = []
|
| 122 |
+
for p in self._pending:
|
| 123 |
+
st = p.get("state", "")
|
| 124 |
+
if st != "requested":
|
| 125 |
+
new_pending.append(p)
|
| 126 |
+
continue
|
| 127 |
+
sub = int(p.get("submitted_at", t))
|
| 128 |
+
if t < sub + 1:
|
| 129 |
+
new_pending.append(p)
|
| 130 |
+
continue
|
| 131 |
+
a = str(p.get("action_type", ""))
|
| 132 |
+
tgt = str(p.get("target", ""))
|
| 133 |
+
k = _approval_key(a, tgt)
|
| 134 |
+
self._grants[k] = _Grant(
|
| 135 |
+
key=k, for_action=a, for_target=tgt,
|
| 136 |
+
granted_at_tick=t, expires_after_tick=t + 3,
|
| 137 |
+
)
|
| 138 |
+
p2 = dict(p)
|
| 139 |
+
p2["state"] = "granted"
|
| 140 |
+
p2["granted_at"] = t
|
| 141 |
+
new_pending.append(p2)
|
| 142 |
+
self._pending = new_pending
|
| 143 |
+
|
| 144 |
+
def has_valid_approval(
|
| 145 |
+
self, action_type: str, target: str, current_tick: int,
|
| 146 |
+
) -> bool:
|
| 147 |
+
k = _approval_key(action_type, target)
|
| 148 |
+
g = self._grants.get(k)
|
| 149 |
+
if not g:
|
| 150 |
+
return False
|
| 151 |
+
return g.granted_at_tick <= current_tick < g.expires_after_tick
|
| 152 |
+
|
| 153 |
+
def should_block(
|
| 154 |
+
self, simulation: Any, action_type: str, params: Dict[str, Any],
|
| 155 |
+
) -> bool:
|
| 156 |
+
if not self._enabled or not self.is_high_impact(simulation, action_type, params):
|
| 157 |
+
return False
|
| 158 |
+
t = int(simulation.tick)
|
| 159 |
+
target = self._target_for_approval(action_type, params)
|
| 160 |
+
return not self.has_valid_approval(action_type, target, t)
|
| 161 |
+
|
| 162 |
+
@staticmethod
|
| 163 |
+
def _target_for_approval(action_type: str, params: Dict[str, Any]) -> str:
|
| 164 |
+
if action_type == "rebalance_traffic":
|
| 165 |
+
fr = str(params.get("from_region", "") or params.get("region", "") or "")
|
| 166 |
+
to = str(params.get("to_region", "") or params.get("target", "") or "")
|
| 167 |
+
return f"{fr}->{to}"
|
| 168 |
+
return str(params.get("service_id", ""))
|
| 169 |
+
|
| 170 |
+
def on_request_approval(
|
| 171 |
+
self, params: Dict[str, Any], current_tick: int,
|
| 172 |
+
) -> None:
|
| 173 |
+
a = str(params.get("action_type", ""))
|
| 174 |
+
tgt = str(params.get("target", ""))
|
| 175 |
+
k = _approval_key(a, tgt)
|
| 176 |
+
self._pending.append({
|
| 177 |
+
"action_type": a,
|
| 178 |
+
"target": tgt,
|
| 179 |
+
"reason": str(params.get("reason", "")),
|
| 180 |
+
"state": "requested",
|
| 181 |
+
"submitted_at": current_tick,
|
| 182 |
+
})
|
| 183 |
+
self._request_tick[k] = current_tick
|
server/scenarios.py
CHANGED
|
@@ -9,7 +9,7 @@ from __future__ import annotations
|
|
| 9 |
|
| 10 |
import random
|
| 11 |
from dataclasses import dataclass, field
|
| 12 |
-
from typing import List, Optional
|
| 13 |
|
| 14 |
from server.failures import (
|
| 15 |
FailureSpec,
|
|
@@ -164,7 +164,9 @@ def _pick_failure_target(
|
|
| 164 |
# ---------------------------------------------------------------------------
|
| 165 |
|
| 166 |
|
| 167 |
-
def generate_scenario(
|
|
|
|
|
|
|
| 168 |
"""
|
| 169 |
Generate a complete scenario for the given task and seed.
|
| 170 |
Deterministic: same seed + same task_id = identical scenario.
|
|
@@ -172,24 +174,51 @@ def generate_scenario(seed: int, task_id: str) -> ScenarioConfig:
|
|
| 172 |
task = get_task_definition(task_id)
|
| 173 |
rng = random.Random(seed)
|
| 174 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 175 |
# Generate graph
|
| 176 |
difficulty = task["difficulty"]
|
| 177 |
graph = generate_graph(difficulty, rng)
|
| 178 |
|
| 179 |
# Select and place failures
|
| 180 |
-
num_failures = task["num_failures"]
|
| 181 |
used_services: set = set()
|
| 182 |
failure_specs: List[FailureSpec] = []
|
| 183 |
|
| 184 |
if num_failures == 1:
|
| 185 |
-
ft = select_failure_type(
|
|
|
|
|
|
|
| 186 |
target = _pick_failure_target(graph, ft, rng, used_services)
|
| 187 |
if target:
|
| 188 |
spec = make_failure_spec(target, ft, rng)
|
| 189 |
failure_specs.append(spec)
|
| 190 |
used_services.add(target)
|
| 191 |
else:
|
| 192 |
-
failure_types = select_multi_root_failures(
|
|
|
|
|
|
|
| 193 |
for ft in failure_types:
|
| 194 |
target = _pick_failure_target(graph, ft, rng, used_services)
|
| 195 |
if target:
|
|
@@ -202,6 +231,6 @@ def generate_scenario(seed: int, task_id: str) -> ScenarioConfig:
|
|
| 202 |
seed=seed,
|
| 203 |
graph=graph,
|
| 204 |
failure_specs=failure_specs,
|
| 205 |
-
max_steps=
|
| 206 |
description=task["description"],
|
| 207 |
)
|
|
|
|
| 9 |
|
| 10 |
import random
|
| 11 |
from dataclasses import dataclass, field
|
| 12 |
+
from typing import Any, Dict, List, Optional
|
| 13 |
|
| 14 |
from server.failures import (
|
| 15 |
FailureSpec,
|
|
|
|
| 164 |
# ---------------------------------------------------------------------------
|
| 165 |
|
| 166 |
|
| 167 |
+
def generate_scenario(
|
| 168 |
+
seed: int, task_id: str, **kwargs: Any,
|
| 169 |
+
) -> ScenarioConfig:
|
| 170 |
"""
|
| 171 |
Generate a complete scenario for the given task and seed.
|
| 172 |
Deterministic: same seed + same task_id = identical scenario.
|
|
|
|
| 174 |
task = get_task_definition(task_id)
|
| 175 |
rng = random.Random(seed)
|
| 176 |
|
| 177 |
+
weight_map: Optional[Dict[FailureType, float]] = None
|
| 178 |
+
raw_w = kwargs.get("failure_type_weights")
|
| 179 |
+
if isinstance(raw_w, dict) and raw_w:
|
| 180 |
+
weight_map = {}
|
| 181 |
+
for k, v in raw_w.items():
|
| 182 |
+
try:
|
| 183 |
+
key = k if isinstance(k, FailureType) else FailureType(str(k))
|
| 184 |
+
except (ValueError, TypeError):
|
| 185 |
+
continue
|
| 186 |
+
weight_map[key] = float(v)
|
| 187 |
+
|
| 188 |
+
num_failures = int(task["num_failures"])
|
| 189 |
+
if kwargs.get("num_failures") is not None:
|
| 190 |
+
num_failures = int(kwargs["num_failures"])
|
| 191 |
+
bump = kwargs.get("bump_num_failures", 0) or 0
|
| 192 |
+
if bump:
|
| 193 |
+
num_failures = max(1, num_failures + int(bump))
|
| 194 |
+
|
| 195 |
+
max_steps = int(task["max_steps"])
|
| 196 |
+
if kwargs.get("max_steps") is not None:
|
| 197 |
+
max_steps = int(kwargs["max_steps"])
|
| 198 |
+
if kwargs.get("max_steps_offset"):
|
| 199 |
+
max_steps = max(3, max_steps + int(kwargs["max_steps_offset"]))
|
| 200 |
+
|
| 201 |
# Generate graph
|
| 202 |
difficulty = task["difficulty"]
|
| 203 |
graph = generate_graph(difficulty, rng)
|
| 204 |
|
| 205 |
# Select and place failures
|
|
|
|
| 206 |
used_services: set = set()
|
| 207 |
failure_specs: List[FailureSpec] = []
|
| 208 |
|
| 209 |
if num_failures == 1:
|
| 210 |
+
ft = select_failure_type(
|
| 211 |
+
rng, weight_override=weight_map,
|
| 212 |
+
)
|
| 213 |
target = _pick_failure_target(graph, ft, rng, used_services)
|
| 214 |
if target:
|
| 215 |
spec = make_failure_spec(target, ft, rng)
|
| 216 |
failure_specs.append(spec)
|
| 217 |
used_services.add(target)
|
| 218 |
else:
|
| 219 |
+
failure_types = select_multi_root_failures(
|
| 220 |
+
rng, count=num_failures, weight_override=weight_map,
|
| 221 |
+
)
|
| 222 |
for ft in failure_types:
|
| 223 |
target = _pick_failure_target(graph, ft, rng, used_services)
|
| 224 |
if target:
|
|
|
|
| 231 |
seed=seed,
|
| 232 |
graph=graph,
|
| 233 |
failure_specs=failure_specs,
|
| 234 |
+
max_steps=max_steps,
|
| 235 |
description=task["description"],
|
| 236 |
)
|
server/schema_drift.py
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
server/schema_drift.py — Per-episode observation schema drift (hard but fair).
|
| 3 |
+
|
| 4 |
+
Applies 0–2 mutations from a fixed catalog, chosen deterministically from seed
|
| 5 |
+
and episode_id. New randomness only via random.Random derived from the seed
|
| 6 |
+
pipeline (not module-level random).
|
| 7 |
+
"""
|
| 8 |
+
|
| 9 |
+
from __future__ import annotations
|
| 10 |
+
|
| 11 |
+
import copy
|
| 12 |
+
import hashlib
|
| 13 |
+
import random
|
| 14 |
+
from typing import Any, Dict, List, Optional
|
| 15 |
+
|
| 16 |
+
# Fixed catalog indices (order is the application pipeline: renames -> nest -> envelope)
|
| 17 |
+
CATALOG = (
|
| 18 |
+
"rename_latency_p99",
|
| 19 |
+
"rename_cpu",
|
| 20 |
+
"nest_service_metrics",
|
| 21 |
+
"cluster_services",
|
| 22 |
+
)
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
def _episode_rng(seed: int, episode_id: str) -> random.Random:
|
| 26 |
+
h = hashlib.sha256(
|
| 27 |
+
f"schema_drift|{seed}|{episode_id or ''}".encode("utf-8")
|
| 28 |
+
).hexdigest()
|
| 29 |
+
return random.Random(int(h[:16], 16))
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
def _rename_latency(services: List[Dict[str, Any]], changelog: List[str]) -> None:
|
| 33 |
+
for s in services:
|
| 34 |
+
if "latency_p99_ms" in s and "latency_ms_p99" not in s:
|
| 35 |
+
s["latency_ms_p99"] = s.pop("latency_p99_ms")
|
| 36 |
+
changelog.append("renamed: latency_p99_ms -> latency_ms_p99")
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
def _rename_cpu(services: List[Dict[str, Any]], changelog: List[str]) -> None:
|
| 40 |
+
for s in services:
|
| 41 |
+
if "cpu_pct" in s and "cpu_utilization" not in s:
|
| 42 |
+
s["cpu_utilization"] = s.pop("cpu_pct")
|
| 43 |
+
changelog.append("renamed: cpu_pct -> cpu_utilization")
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
def _nest_service_metrics(
|
| 47 |
+
services: List[Dict[str, Any]], changelog: List[str],
|
| 48 |
+
) -> None:
|
| 49 |
+
for s in services:
|
| 50 |
+
metrics: Dict[str, Any] = {}
|
| 51 |
+
for k in (
|
| 52 |
+
"error_rate",
|
| 53 |
+
"latency_p50_ms",
|
| 54 |
+
"latency_p95_ms",
|
| 55 |
+
"latency_p99_ms",
|
| 56 |
+
"latency_ms_p99",
|
| 57 |
+
):
|
| 58 |
+
if k in s:
|
| 59 |
+
metrics[k] = s.pop(k)
|
| 60 |
+
if metrics:
|
| 61 |
+
s["metrics"] = metrics
|
| 62 |
+
changelog.append("nested: services[].metrics (error rate + latency fields)")
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
def _cluster_envelope(
|
| 66 |
+
obs: Dict[str, Any], services: List[Dict[str, Any]], changelog: List[str],
|
| 67 |
+
) -> None:
|
| 68 |
+
obs["cluster"] = {"services": services}
|
| 69 |
+
obs["services"] = []
|
| 70 |
+
changelog.append("envelope: services are under cluster.services")
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
def _choose_mutation_ids(rng: random.Random) -> List[int]:
|
| 74 |
+
k = rng.randint(0, 2)
|
| 75 |
+
if k == 0:
|
| 76 |
+
return []
|
| 77 |
+
ids = sorted(rng.sample(range(len(CATALOG)), k=k))
|
| 78 |
+
return ids
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
def apply(
|
| 82 |
+
obs: Dict[str, Any],
|
| 83 |
+
*,
|
| 84 |
+
seed: int,
|
| 85 |
+
episode_id: Optional[str],
|
| 86 |
+
enabled: bool = False,
|
| 87 |
+
) -> Dict[str, Any]:
|
| 88 |
+
"""
|
| 89 |
+
Mutate a copy of the raw observation dict to simulate schema drift.
|
| 90 |
+
|
| 91 |
+
When `enabled` is False, only sets `schema_changelog` (empty) and
|
| 92 |
+
`schema_version` to the baseline.
|
| 93 |
+
"""
|
| 94 |
+
out = copy.deepcopy(obs)
|
| 95 |
+
if not enabled:
|
| 96 |
+
out["schema_changelog"] = []
|
| 97 |
+
out["schema_version"] = "v1"
|
| 98 |
+
return out
|
| 99 |
+
|
| 100 |
+
rng = _episode_rng(seed, episode_id or "")
|
| 101 |
+
selected = set(_choose_mutation_ids(rng))
|
| 102 |
+
changelog: List[str] = []
|
| 103 |
+
|
| 104 |
+
services: List[Dict[str, Any]] = copy.deepcopy(out.get("services") or [])
|
| 105 |
+
|
| 106 |
+
for mid in range(len(CATALOG)):
|
| 107 |
+
if mid not in selected:
|
| 108 |
+
continue
|
| 109 |
+
name = CATALOG[mid]
|
| 110 |
+
if name == "rename_latency_p99":
|
| 111 |
+
_rename_latency(services, changelog)
|
| 112 |
+
elif name == "rename_cpu":
|
| 113 |
+
_rename_cpu(services, changelog)
|
| 114 |
+
elif name == "nest_service_metrics":
|
| 115 |
+
_nest_service_metrics(services, changelog)
|
| 116 |
+
elif name == "cluster_services":
|
| 117 |
+
_cluster_envelope(out, services, changelog)
|
| 118 |
+
|
| 119 |
+
cluster_idx = CATALOG.index("cluster_services")
|
| 120 |
+
if cluster_idx not in selected:
|
| 121 |
+
out["services"] = services
|
| 122 |
+
out["cluster"] = None
|
| 123 |
+
out["schema_changelog"] = changelog
|
| 124 |
+
out["schema_version"] = "v1.2-drift"
|
| 125 |
+
return out
|
server/simulator.py
CHANGED
|
@@ -79,6 +79,7 @@ class Simulator:
|
|
| 79 |
obs_data = sim.reset(seed=42, difficulty="easy")
|
| 80 |
obs_data = sim.step(action_type="inspect_logs", params={"service_id": "order-service"})
|
| 81 |
"""
|
|
|
|
| 82 |
|
| 83 |
# --- Graph and topology ---
|
| 84 |
graph: Optional[ServiceGraph] = None
|
|
@@ -120,11 +121,17 @@ class Simulator:
|
|
| 120 |
# --- Remediation tracking ---
|
| 121 |
remediated_services: Dict[str, int] = field(default_factory=dict) # service_id → tick remediated
|
| 122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
def reset(
|
| 124 |
self,
|
| 125 |
seed: int,
|
| 126 |
difficulty: str,
|
| 127 |
failure_specs: Optional[List[FailureSpec]] = None,
|
|
|
|
| 128 |
) -> None:
|
| 129 |
"""Initialize a new episode. Call get_observation() after this."""
|
| 130 |
self.rng = random.Random(seed)
|
|
@@ -140,10 +147,14 @@ class Simulator:
|
|
| 140 |
self.last_traces = None
|
| 141 |
self.metric_history = {}
|
| 142 |
self.remediated_services = {}
|
|
|
|
|
|
|
| 143 |
|
| 144 |
# Step budgets
|
| 145 |
budgets = {"easy": 10, "medium": 20, "hard": 50}
|
| 146 |
self.max_steps = budgets.get(difficulty, 10)
|
|
|
|
|
|
|
| 147 |
|
| 148 |
# Generate graph
|
| 149 |
self.graph = generate_graph(difficulty, self.rng)
|
|
@@ -193,8 +204,16 @@ class Simulator:
|
|
| 193 |
self._evolve_failures()
|
| 194 |
self._run_propagation()
|
| 195 |
self._record_metrics()
|
|
|
|
| 196 |
|
| 197 |
-
def step(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 198 |
"""
|
| 199 |
Execute one agent action and advance the simulation by one tick.
|
| 200 |
Returns the step reward (dense Δ-SLO shaping).
|
|
@@ -202,7 +221,12 @@ class Simulator:
|
|
| 202 |
if self.terminated:
|
| 203 |
return 0.0
|
| 204 |
|
|
|
|
| 205 |
prev_slo = self.get_slo_score()
|
|
|
|
|
|
|
|
|
|
|
|
|
| 206 |
|
| 207 |
# Clear diagnostic output from previous step
|
| 208 |
self.last_logs = None
|
|
@@ -210,7 +234,10 @@ class Simulator:
|
|
| 210 |
self.last_traces = None
|
| 211 |
|
| 212 |
# Process the action
|
| 213 |
-
|
|
|
|
|
|
|
|
|
|
| 214 |
self.actions_taken.append(action_record)
|
| 215 |
|
| 216 |
# Advance tick
|
|
@@ -234,7 +261,19 @@ class Simulator:
|
|
| 234 |
|
| 235 |
# Compute reward
|
| 236 |
new_slo = self.get_slo_score()
|
| 237 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 238 |
|
| 239 |
# Check termination
|
| 240 |
self._check_termination()
|
|
@@ -245,13 +284,40 @@ class Simulator:
|
|
| 245 |
# Action processing
|
| 246 |
# -------------------------------------------------------------------
|
| 247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 248 |
def _process_action(self, action_type: str, params: Dict[str, Any]) -> Dict[str, Any]:
|
| 249 |
"""Process an agent action. Returns an action record dict."""
|
| 250 |
-
service_id = params.get("service_id")
|
| 251 |
record = {
|
| 252 |
"tick": self.tick,
|
| 253 |
"action": action_type,
|
| 254 |
-
"target":
|
| 255 |
"success": False,
|
| 256 |
"note": None,
|
| 257 |
}
|
|
@@ -261,6 +327,11 @@ class Simulator:
|
|
| 261 |
record["note"] = "Waited and observed"
|
| 262 |
return record
|
| 263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 264 |
if action_type == "inspect_logs":
|
| 265 |
return self._do_inspect_logs(service_id, record)
|
| 266 |
elif action_type == "inspect_metrics":
|
|
@@ -761,8 +832,16 @@ class Simulator:
|
|
| 761 |
# -------------------------------------------------------------------
|
| 762 |
|
| 763 |
def _compute_reward(
|
| 764 |
-
self,
|
| 765 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 766 |
) -> float:
|
| 767 |
"""Dense Δ-SLO reward with action-type penalties."""
|
| 768 |
# Base: delta SLO (positive = improvement)
|
|
@@ -778,13 +857,35 @@ class Simulator:
|
|
| 778 |
reward -= 0.5
|
| 779 |
|
| 780 |
# Small penalty for non-diagnostic actions (encourage efficiency)
|
| 781 |
-
if action_type not in (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 782 |
reward -= 0.1 # Small cost for remediation actions
|
| 783 |
|
| 784 |
# Penalty for redundant noops when system is degraded
|
| 785 |
if action_type == "noop" and new_slo < 0.9:
|
| 786 |
reward -= 0.2
|
| 787 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 788 |
return round(reward, 4)
|
| 789 |
|
| 790 |
# -------------------------------------------------------------------
|
|
@@ -931,7 +1032,9 @@ class Simulator:
|
|
| 931 |
alerts.sort(key=lambda a: severity_order.get(a["severity"], 9))
|
| 932 |
return alerts
|
| 933 |
|
| 934 |
-
def get_legal_actions(
|
|
|
|
|
|
|
| 935 |
"""Return the set of currently legal actions with valid targets."""
|
| 936 |
service_ids = list(self.services.keys())
|
| 937 |
actions = [
|
|
@@ -968,6 +1071,12 @@ class Simulator:
|
|
| 968 |
if self.graph and self.graph.background_jobs:
|
| 969 |
actions.append({"action_type": "pause_job", "valid_targets": self.graph.background_jobs})
|
| 970 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 971 |
return actions
|
| 972 |
|
| 973 |
def get_service_observations(self) -> List[Dict[str, Any]]:
|
|
|
|
| 79 |
obs_data = sim.reset(seed=42, difficulty="easy")
|
| 80 |
obs_data = sim.step(action_type="inspect_logs", params={"service_id": "order-service"})
|
| 81 |
"""
|
| 82 |
+
reward_shaping: str = "dense_v1"
|
| 83 |
|
| 84 |
# --- Graph and topology ---
|
| 85 |
graph: Optional[ServiceGraph] = None
|
|
|
|
| 121 |
# --- Remediation tracking ---
|
| 122 |
remediated_services: Dict[str, int] = field(default_factory=dict) # service_id → tick remediated
|
| 123 |
|
| 124 |
+
# --- Reward shaping (dense_v2) ---
|
| 125 |
+
_diagnosis_inspect_once: set = field(default_factory=set) # service_ids already given bonus
|
| 126 |
+
_alerts_count_prev_end: int = 0
|
| 127 |
+
_last_action_fingerprint: Optional[Tuple[str, Optional[str]]] = None
|
| 128 |
+
|
| 129 |
def reset(
|
| 130 |
self,
|
| 131 |
seed: int,
|
| 132 |
difficulty: str,
|
| 133 |
failure_specs: Optional[List[FailureSpec]] = None,
|
| 134 |
+
max_steps_override: Optional[int] = None,
|
| 135 |
) -> None:
|
| 136 |
"""Initialize a new episode. Call get_observation() after this."""
|
| 137 |
self.rng = random.Random(seed)
|
|
|
|
| 147 |
self.last_traces = None
|
| 148 |
self.metric_history = {}
|
| 149 |
self.remediated_services = {}
|
| 150 |
+
self._diagnosis_inspect_once = set()
|
| 151 |
+
self._last_action_fingerprint = None
|
| 152 |
|
| 153 |
# Step budgets
|
| 154 |
budgets = {"easy": 10, "medium": 20, "hard": 50}
|
| 155 |
self.max_steps = budgets.get(difficulty, 10)
|
| 156 |
+
if max_steps_override is not None and max_steps_override > 0:
|
| 157 |
+
self.max_steps = int(max_steps_override)
|
| 158 |
|
| 159 |
# Generate graph
|
| 160 |
self.graph = generate_graph(difficulty, self.rng)
|
|
|
|
| 204 |
self._evolve_failures()
|
| 205 |
self._run_propagation()
|
| 206 |
self._record_metrics()
|
| 207 |
+
self._alerts_count_prev_end = len(self.get_alerts())
|
| 208 |
|
| 209 |
+
def step(
|
| 210 |
+
self,
|
| 211 |
+
action_type: str,
|
| 212 |
+
params: Dict[str, Any],
|
| 213 |
+
*,
|
| 214 |
+
prebuilt_record: Optional[Dict[str, Any]] = None,
|
| 215 |
+
fixed_reward: Optional[float] = None,
|
| 216 |
+
) -> float:
|
| 217 |
"""
|
| 218 |
Execute one agent action and advance the simulation by one tick.
|
| 219 |
Returns the step reward (dense Δ-SLO shaping).
|
|
|
|
| 221 |
if self.terminated:
|
| 222 |
return 0.0
|
| 223 |
|
| 224 |
+
a_start = len(self.get_alerts())
|
| 225 |
prev_slo = self.get_slo_score()
|
| 226 |
+
pre_action = (action_type, self._fingerprint_target(action_type, params))
|
| 227 |
+
critical_before = any(
|
| 228 |
+
a.get("severity") == "critical" for a in self.get_alerts()
|
| 229 |
+
)
|
| 230 |
|
| 231 |
# Clear diagnostic output from previous step
|
| 232 |
self.last_logs = None
|
|
|
|
| 234 |
self.last_traces = None
|
| 235 |
|
| 236 |
# Process the action
|
| 237 |
+
if prebuilt_record is not None:
|
| 238 |
+
action_record = {**prebuilt_record, "tick": self.tick}
|
| 239 |
+
else:
|
| 240 |
+
action_record = self._process_action(action_type, params)
|
| 241 |
self.actions_taken.append(action_record)
|
| 242 |
|
| 243 |
# Advance tick
|
|
|
|
| 261 |
|
| 262 |
# Compute reward
|
| 263 |
new_slo = self.get_slo_score()
|
| 264 |
+
n_alerts_end = len(self.get_alerts())
|
| 265 |
+
if fixed_reward is not None:
|
| 266 |
+
reward = float(fixed_reward)
|
| 267 |
+
else:
|
| 268 |
+
reward = self._compute_reward(
|
| 269 |
+
prev_slo, new_slo, action_type, action_record,
|
| 270 |
+
pre_action_fingerprint=pre_action,
|
| 271 |
+
critical_at_noop_start=critical_before,
|
| 272 |
+
alerts_at_start=a_start,
|
| 273 |
+
alerts_at_end=n_alerts_end,
|
| 274 |
+
)
|
| 275 |
+
self._alerts_count_prev_end = n_alerts_end
|
| 276 |
+
self._last_action_fingerprint = pre_action
|
| 277 |
|
| 278 |
# Check termination
|
| 279 |
self._check_termination()
|
|
|
|
| 284 |
# Action processing
|
| 285 |
# -------------------------------------------------------------------
|
| 286 |
|
| 287 |
+
def action_fingerprint(
|
| 288 |
+
self, action_type: str, params: Dict[str, Any],
|
| 289 |
+
) -> Optional[str]:
|
| 290 |
+
"""Public alias for action (type, target) identity for repetition / logging."""
|
| 291 |
+
return self._fingerprint_target(action_type, params)
|
| 292 |
+
|
| 293 |
+
def _fingerprint_target(
|
| 294 |
+
self, action_type: str, params: Dict[str, Any],
|
| 295 |
+
) -> Optional[str]:
|
| 296 |
+
if action_type in ("noop",):
|
| 297 |
+
return None
|
| 298 |
+
if action_type == "rebalance_traffic":
|
| 299 |
+
fr = str(
|
| 300 |
+
params.get("from_region")
|
| 301 |
+
or params.get("region")
|
| 302 |
+
or params.get("service_id", "")
|
| 303 |
+
)
|
| 304 |
+
to = str(params.get("to_region", "") or params.get("target", ""))
|
| 305 |
+
return f"{fr}->{to}"
|
| 306 |
+
if action_type == "request_approval":
|
| 307 |
+
return (
|
| 308 |
+
f"{params.get('action_type', '')!s}|{params.get('target', '')!s}"
|
| 309 |
+
)
|
| 310 |
+
for k in ("service_id", "cache_name", "job_name"):
|
| 311 |
+
if k in params and params[k] is not None and params[k] != "":
|
| 312 |
+
return str(params[k])
|
| 313 |
+
return None
|
| 314 |
+
|
| 315 |
def _process_action(self, action_type: str, params: Dict[str, Any]) -> Dict[str, Any]:
|
| 316 |
"""Process an agent action. Returns an action record dict."""
|
|
|
|
| 317 |
record = {
|
| 318 |
"tick": self.tick,
|
| 319 |
"action": action_type,
|
| 320 |
+
"target": self._fingerprint_target(action_type, params),
|
| 321 |
"success": False,
|
| 322 |
"note": None,
|
| 323 |
}
|
|
|
|
| 327 |
record["note"] = "Waited and observed"
|
| 328 |
return record
|
| 329 |
|
| 330 |
+
if action_type == "request_approval":
|
| 331 |
+
record["success"] = True
|
| 332 |
+
record["note"] = "Approval request recorded (manager will respond next tick)"
|
| 333 |
+
return record
|
| 334 |
+
|
| 335 |
if action_type == "inspect_logs":
|
| 336 |
return self._do_inspect_logs(service_id, record)
|
| 337 |
elif action_type == "inspect_metrics":
|
|
|
|
| 832 |
# -------------------------------------------------------------------
|
| 833 |
|
| 834 |
def _compute_reward(
|
| 835 |
+
self,
|
| 836 |
+
prev_slo: float,
|
| 837 |
+
new_slo: float,
|
| 838 |
+
action_type: str,
|
| 839 |
+
record: Dict,
|
| 840 |
+
*,
|
| 841 |
+
pre_action_fingerprint: Tuple[Optional[str], Optional[str]],
|
| 842 |
+
critical_at_noop_start: bool,
|
| 843 |
+
alerts_at_start: int,
|
| 844 |
+
alerts_at_end: int,
|
| 845 |
) -> float:
|
| 846 |
"""Dense Δ-SLO reward with action-type penalties."""
|
| 847 |
# Base: delta SLO (positive = improvement)
|
|
|
|
| 857 |
reward -= 0.5
|
| 858 |
|
| 859 |
# Small penalty for non-diagnostic actions (encourage efficiency)
|
| 860 |
+
if action_type not in (
|
| 861 |
+
"inspect_logs",
|
| 862 |
+
"inspect_metrics",
|
| 863 |
+
"inspect_traces",
|
| 864 |
+
"noop",
|
| 865 |
+
"request_approval",
|
| 866 |
+
):
|
| 867 |
reward -= 0.1 # Small cost for remediation actions
|
| 868 |
|
| 869 |
# Penalty for redundant noops when system is degraded
|
| 870 |
if action_type == "noop" and new_slo < 0.9:
|
| 871 |
reward -= 0.2
|
| 872 |
|
| 873 |
+
if self.reward_shaping == "dense_v2":
|
| 874 |
+
if (
|
| 875 |
+
action_type == "inspect_logs"
|
| 876 |
+
and record.get("success")
|
| 877 |
+
):
|
| 878 |
+
sid = record.get("target")
|
| 879 |
+
if sid and self._get_failure_for_service(sid) and sid not in self._diagnosis_inspect_once:
|
| 880 |
+
self._diagnosis_inspect_once.add(sid)
|
| 881 |
+
reward += 0.05
|
| 882 |
+
if alerts_at_end < alerts_at_start:
|
| 883 |
+
reward += 0.05
|
| 884 |
+
if self._last_action_fingerprint is not None and self._last_action_fingerprint == pre_action_fingerprint:
|
| 885 |
+
reward -= 0.02
|
| 886 |
+
if action_type == "noop" and critical_at_noop_start:
|
| 887 |
+
reward -= 0.02
|
| 888 |
+
|
| 889 |
return round(reward, 4)
|
| 890 |
|
| 891 |
# -------------------------------------------------------------------
|
|
|
|
| 1032 |
alerts.sort(key=lambda a: severity_order.get(a["severity"], 9))
|
| 1033 |
return alerts
|
| 1034 |
|
| 1035 |
+
def get_legal_actions(
|
| 1036 |
+
self, include_request_approval: bool = False,
|
| 1037 |
+
) -> List[Dict[str, Any]]:
|
| 1038 |
"""Return the set of currently legal actions with valid targets."""
|
| 1039 |
service_ids = list(self.services.keys())
|
| 1040 |
actions = [
|
|
|
|
| 1071 |
if self.graph and self.graph.background_jobs:
|
| 1072 |
actions.append({"action_type": "pause_job", "valid_targets": self.graph.background_jobs})
|
| 1073 |
|
| 1074 |
+
if include_request_approval:
|
| 1075 |
+
actions.append({
|
| 1076 |
+
"action_type": "request_approval",
|
| 1077 |
+
"valid_targets": service_ids,
|
| 1078 |
+
})
|
| 1079 |
+
|
| 1080 |
return actions
|
| 1081 |
|
| 1082 |
def get_service_observations(self) -> List[Dict[str, Any]]:
|
tests/test_curriculum.py
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Curriculum (Tier1) scenario overrides."""
|
| 2 |
+
|
| 3 |
+
import os
|
| 4 |
+
import sys
|
| 5 |
+
|
| 6 |
+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
|
| 7 |
+
|
| 8 |
+
from server.curriculum import Curriculum
|
| 9 |
+
from server.failures import FailureType
|
| 10 |
+
from server.scenarios import generate_scenario
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
def test_tier1_weights_bias_worst():
|
| 14 |
+
c = Curriculum()
|
| 15 |
+
c.on_episode_end(0.5, False, [FailureType.CRASH.value, FailureType.BAD_DEPLOY.value])
|
| 16 |
+
c.on_episode_end(0.5, True, [FailureType.CRASH.value])
|
| 17 |
+
o = c.next_scenario_overrides()
|
| 18 |
+
assert "failure_type_weights" in o
|
| 19 |
+
w = o["failure_type_weights"]
|
| 20 |
+
assert w.get(FailureType.CRASH.value, 0) > w.get(FailureType.NETWORK_ERROR.value, 0)
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
def test_tier1_fallback_no_api():
|
| 24 |
+
c = Curriculum()
|
| 25 |
+
o = c.next_scenario_overrides()
|
| 26 |
+
assert isinstance(o, dict)
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
def test_scenario_merges_overrides():
|
| 30 |
+
sc = generate_scenario(
|
| 31 |
+
1, "easy", bump_num_failures=1, max_steps_offset=-1,
|
| 32 |
+
)
|
| 33 |
+
assert sc.max_steps >= 3
|
| 34 |
+
# bump adds at least 1 to num_failures in easy=1
|
| 35 |
+
assert len(sc.failure_specs) >= 1
|
tests/test_oversight.py
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Oversight / governance (OversightManager)."""
|
| 2 |
+
|
| 3 |
+
import os
|
| 4 |
+
import sys
|
| 5 |
+
|
| 6 |
+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
|
| 7 |
+
|
| 8 |
+
from server.oversight import OversightManager
|
| 9 |
+
from server.scenarios import generate_scenario
|
| 10 |
+
from server.simulator import Simulator
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
def _sim_hard():
|
| 14 |
+
sc = generate_scenario(9, "hard")
|
| 15 |
+
sim = Simulator()
|
| 16 |
+
sim.reset(9, sc.difficulty, sc.failure_specs)
|
| 17 |
+
return sim
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def test_restart_postgres_requires_governance():
|
| 21 |
+
sim = _sim_hard()
|
| 22 |
+
om = OversightManager()
|
| 23 |
+
om.on_reset(sim, True, 50)
|
| 24 |
+
sid = "postgres-primary"
|
| 25 |
+
if sid not in sim.services:
|
| 26 |
+
sid = next((s for s in sim.services if "postgres" in s), None)
|
| 27 |
+
if sid is None:
|
| 28 |
+
return
|
| 29 |
+
assert om.is_high_impact(sim, "restart_service", {"service_id": sid})
|
| 30 |
+
sim.tick = 0
|
| 31 |
+
assert om.should_block(sim, "restart_service", {"service_id": sid})
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def test_request_then_grant_allows():
|
| 35 |
+
sim = _sim_hard()
|
| 36 |
+
om = OversightManager()
|
| 37 |
+
om.on_reset(sim, True, 50)
|
| 38 |
+
sid = "postgres-primary"
|
| 39 |
+
if sid not in sim.services:
|
| 40 |
+
sid = next((s for s in sim.services if "postgres" in s), None)
|
| 41 |
+
if sid is None:
|
| 42 |
+
return
|
| 43 |
+
# Start tick 0: submit approval request for this restart
|
| 44 |
+
sim.tick = 0
|
| 45 |
+
om.on_request_approval(
|
| 46 |
+
{
|
| 47 |
+
"action_type": "restart_service",
|
| 48 |
+
"target": sid,
|
| 49 |
+
"reason": "need restart",
|
| 50 |
+
},
|
| 51 |
+
0,
|
| 52 |
+
)
|
| 53 |
+
# tick 1: manager grants
|
| 54 |
+
sim.tick = 1
|
| 55 |
+
om.on_tick_start(sim)
|
| 56 |
+
assert not om.should_block(sim, "restart_service", {"service_id": sid})
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
def test_policy_surface():
|
| 60 |
+
sim = _sim_hard()
|
| 61 |
+
om = OversightManager()
|
| 62 |
+
om.on_reset(sim, True, 50)
|
| 63 |
+
assert any("postgres" in str(x).lower() for x in om.policy[0].values())
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
def test_rebalance_high_pct_is_high_impact():
|
| 67 |
+
sim = _sim_hard()
|
| 68 |
+
if not (sim.graph and sim.graph.has_multiple_regions):
|
| 69 |
+
return
|
| 70 |
+
om = OversightManager()
|
| 71 |
+
om.on_reset(sim, True, 50)
|
| 72 |
+
a, b = sim.graph.regions[0], sim.graph.regions[1]
|
| 73 |
+
assert om.is_high_impact(
|
| 74 |
+
sim, "rebalance_traffic", {"from_region": a, "to_region": b, "pct": 45},
|
| 75 |
+
)
|
tests/test_reward_shaping.py
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Tests for reward_shaping (dense_v1 / dense_v2) in the simulator."""
|
| 2 |
+
|
| 3 |
+
import os
|
| 4 |
+
import sys
|
| 5 |
+
|
| 6 |
+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
|
| 7 |
+
|
| 8 |
+
from server.scenarios import generate_scenario
|
| 9 |
+
from server.simulator import Simulator
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
def _make(rshaping: str) -> Simulator:
|
| 13 |
+
scenario = generate_scenario(100, "easy")
|
| 14 |
+
sim = Simulator(reward_shaping=rshaping)
|
| 15 |
+
sim.reset(
|
| 16 |
+
seed=100,
|
| 17 |
+
difficulty=scenario.difficulty,
|
| 18 |
+
failure_specs=scenario.failure_specs,
|
| 19 |
+
)
|
| 20 |
+
return sim
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
def test_dense_v1_default_matches_explicit_dense_v1():
|
| 24 |
+
sc = generate_scenario(5, "easy")
|
| 25 |
+
a = Simulator()
|
| 26 |
+
a.reset(5, sc.difficulty, sc.failure_specs)
|
| 27 |
+
b = Simulator(reward_shaping="dense_v1")
|
| 28 |
+
b.reset(5, sc.difficulty, sc.failure_specs)
|
| 29 |
+
assert a.step("noop", {}) == b.step("noop", {})
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
def test_dense_v2_double_noop_has_repetition_penalty():
|
| 33 |
+
v2 = _make("dense_v2")
|
| 34 |
+
n0 = v2.step("noop", {})
|
| 35 |
+
n1 = v2.step("noop", {})
|
| 36 |
+
assert n1 <= n0 + 0.5
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
def test_inspect_logs_dense_v2_returns_float():
|
| 40 |
+
s = _make("dense_v2")
|
| 41 |
+
if s.failures:
|
| 42 |
+
sid = s.failures[0].service_id
|
| 43 |
+
r = s.step("inspect_logs", {"service_id": sid})
|
| 44 |
+
assert isinstance(r, float)
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
def test_request_approval_succeeds():
|
| 48 |
+
s = _make("dense_v1")
|
| 49 |
+
s.step("request_approval", {
|
| 50 |
+
"action_type": "restart_service",
|
| 51 |
+
"target": "x",
|
| 52 |
+
"reason": "t",
|
| 53 |
+
})
|
| 54 |
+
assert s.actions_taken[-1]["success"]
|
tests/test_schema_drift.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Tests for server/schema_drift.py observation mutations."""
|
| 2 |
+
|
| 3 |
+
import os
|
| 4 |
+
import sys
|
| 5 |
+
|
| 6 |
+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
|
| 7 |
+
|
| 8 |
+
import copy
|
| 9 |
+
|
| 10 |
+
from server import schema_drift
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
def _base():
|
| 14 |
+
return {
|
| 15 |
+
"services": [
|
| 16 |
+
{
|
| 17 |
+
"id": "a",
|
| 18 |
+
"error_rate": 0.1,
|
| 19 |
+
"latency_p99_ms": 400.0,
|
| 20 |
+
"cpu_pct": 20.0,
|
| 21 |
+
},
|
| 22 |
+
],
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
def test_deterministic_per_seed():
|
| 27 |
+
a = copy.deepcopy(_base())
|
| 28 |
+
b = copy.deepcopy(_base())
|
| 29 |
+
s1 = schema_drift.apply(
|
| 30 |
+
a, seed=7, episode_id="e1", enabled=True,
|
| 31 |
+
)
|
| 32 |
+
s2 = schema_drift.apply(
|
| 33 |
+
b, seed=7, episode_id="e1", enabled=True,
|
| 34 |
+
)
|
| 35 |
+
assert s1 == s2
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
def test_different_episode_id_changes_mutation_set():
|
| 39 |
+
a = copy.deepcopy(_base())
|
| 40 |
+
b = copy.deepcopy(_base())
|
| 41 |
+
s1 = schema_drift.apply(a, seed=7, episode_id="e1", enabled=True)
|
| 42 |
+
s2 = schema_drift.apply(b, seed=7, episode_id="e2", enabled=True)
|
| 43 |
+
# Different episode id should (with high probability) differ; if equal, re-run
|
| 44 |
+
# assert inequality or check changelog is valid for both
|
| 45 |
+
assert "schema_changelog" in s1 and "schema_changelog" in s2
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
def test_default_off_no_structural_change():
|
| 49 |
+
raw = {
|
| 50 |
+
"services": [
|
| 51 |
+
{
|
| 52 |
+
"id": "a",
|
| 53 |
+
"error_rate": 0.1,
|
| 54 |
+
"latency_p99_ms": 400.0,
|
| 55 |
+
},
|
| 56 |
+
],
|
| 57 |
+
"alerts": [],
|
| 58 |
+
}
|
| 59 |
+
out = schema_drift.apply(
|
| 60 |
+
copy.deepcopy(raw), seed=1, episode_id="x", enabled=False,
|
| 61 |
+
)
|
| 62 |
+
assert out["services"] == raw["services"]
|
| 63 |
+
assert out.get("schema_changelog") == []
|
| 64 |
+
assert out.get("schema_version") == "v1"
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
def test_changelog_entries_match_mutations():
|
| 68 |
+
for _ in range(20):
|
| 69 |
+
out = schema_drift.apply(
|
| 70 |
+
_base(), seed=99, episode_id="chg", enabled=True,
|
| 71 |
+
)
|
| 72 |
+
n = len(out["schema_changelog"])
|
| 73 |
+
assert 0 <= n <= 2
|
| 74 |
+
# At least one run should have cluster if catalog allows — smoke only
|
| 75 |
+
assert True
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
def test_unrelated_alerts_unchanged():
|
| 79 |
+
raw = {
|
| 80 |
+
"services": _base()["services"],
|
| 81 |
+
"alerts": [{"severity": "warning", "service": "a"}],
|
| 82 |
+
}
|
| 83 |
+
out = schema_drift.apply(
|
| 84 |
+
copy.deepcopy(raw), seed=3, episode_id="z", enabled=True,
|
| 85 |
+
)
|
| 86 |
+
if out.get("alerts") is not None:
|
| 87 |
+
assert out["alerts"] == raw["alerts"]
|