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
//! Type definitions for the graph durable observability layer.
//!
//! These types add **durability** to the live [`crate::graph::stream`] event
//! vocabulary: an envelope ([`GraphObservation`]) that carries a run's lineage,
//! checkpoint coordinates, namespace, and a timestamp so a single
//! [`GraphEvent`] can be journaled, replayed, and correlated across a recursive
//! graph run tree; pluggable journal and status traits; and a
//! [`JournalGraphSink`] that wraps emitted events into observations.
//!
//! All public items here are re-exported through [`super`]. Trait
//! implementations, sink logic, and tests live in the sibling `mod.rs` and
//! `test.rs` files.
use HashMap;
use AtomicU64;
use ;
use async_trait;
use ;
use crateResult;
use crateGraphRunStatus;
use crate;
use crate;
use crateAppendStore;
// ---------------------------------------------------------------------------
// GraphObservation
// ---------------------------------------------------------------------------
/// A durable observability envelope around a [`GraphEvent`].
///
/// Where a raw [`GraphEvent`] is the transient, in-process signal the executor
/// emits at each boundary, a `GraphObservation` adds everything a durable
/// journal or external trace needs to correlate the event without an in-memory
/// broadcast: the run's `run_id`, its `parent_run_id` / `root_run_id` lineage,
/// the owning `graph_id`, the latest `checkpoint_id`, the subgraph `namespace`,
/// the superstep `step`, the stream `offset`, and a wall-clock `ts_ms`.
// ---------------------------------------------------------------------------
// GraphEventJournal
// ---------------------------------------------------------------------------
/// A durable, append-only journal of [`GraphObservation`]s keyed by run id.
///
/// Journals decouple durable replay from live broadcast: a UI or supervisor can
/// attach after a graph run has started and reconstruct history by reading from
/// a known offset rather than relying on having subscribed to an in-memory
/// [`GraphEventSink`].
/// In-memory [`GraphEventJournal`] backed by a per-run `Vec`.
///
/// Cheaply clonable through an inner [`Arc`]; clones share the same streams.
/// There is no durability — entries are lost when the last clone drops.
/// [`GraphEventJournal`] backed by any [`AppendStore`].
///
/// Each run's observations are appended to the store under a stream named by
/// the run id, so `read_from` resumes from a durable offset. Pair with
/// [`crate::harness::store::JsonlAppendStore`] for a local durable journal or
/// [`crate::harness::store::InMemoryAppendStore`] for deterministic tests.
// ---------------------------------------------------------------------------
// GraphStatusStore
// ---------------------------------------------------------------------------
/// A readable status surface for graph runs.
///
/// Status records are overwritten by `run_id` ("what is running now?") in
/// contrast to the append-only journal ("what happened?"). A
/// [`GraphRunStatus`] is compact: ids, step, active nodes, pending interrupts,
/// and timestamps — never full graph state, which belongs to the checkpointer.
/// In-memory [`GraphStatusStore`] backed by a `run_id → status` map.
///
/// Cheaply clonable through an inner [`Arc`]; clones share the same map.
// ---------------------------------------------------------------------------
// JournalGraphSink
// ---------------------------------------------------------------------------
/// A [`GraphEventSink`] that wraps each emitted [`GraphEvent`] into a durable
/// [`GraphObservation`] and appends it to a [`GraphEventJournal`].
///
/// The sink is configured with the emitting run's lineage and checkpoint
/// coordinates; each received event is stamped with a monotonically increasing
/// `offset`, the latest observed `step`, and the configured `namespace`. The
/// async append is bridged synchronously with `futures::executor::block_on`,
/// and append errors are swallowed so a failing journal never aborts the run.
///
/// An optional `inner` sink lets the journal sink also forward each event to a
/// live transport (for example a [`crate::graph::stream::CollectingSink`]) so a
/// single configured sink can both persist and broadcast.