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
//
// Unified Query Algebra
//
// Copyright (c) 2023-2026 Cognica, Inc.
//
//! Cross-session table-data epochs and physical cache refresh.
use super::{Engine, StorageBackendError, StorageBackendResult};
impl Engine {
/// Publish a committed logical table-definition change to sibling
/// sessions. Their physical stores are rebuilt lazily from their own
/// session-bound backend on the next table lookup.
pub(crate) fn note_table_catalog_changed(&self) {
self.clear_regtype_output_cache();
self.clear_bayesian_params_cache();
if !self.session.transactions.lock().is_empty() {
self.epochs
.table_catalog
.dirty
.store(true, std::sync::atomic::Ordering::Release);
return;
}
self.publish_table_catalog_changes();
}
pub(crate) fn publish_table_catalog_changes(&self) {
self.clear_bayesian_params_cache();
self.epochs
.table_catalog
.published
.fetch_add(1, std::sync::atomic::Ordering::AcqRel);
self.epochs
.table_catalog
.dirty
.store(false, std::sync::atomic::Ordering::Release);
// The writer's physical stores are current, but cached optimized and
// prepared plans may retain a removed access path or old schema.
// Leave `seen_table_catalog_epoch` behind so its next statement also
// crosses the same reload/re-optimization boundary as siblings.
self.clear_sql_statement_cache();
}
/// Mark table contents changed in this session. The generation is only
/// published after the outer storage transaction commits, so sibling
/// sessions cannot invalidate and rebuild against uncommitted data.
pub(crate) fn note_table_data_changed(&self) {
self.clear_bayesian_params_cache();
self.clear_sql_statement_cache();
// Rollback restoration replaces snapshots directly and never enters
// this ordinary mutation hook. Therefore contention is not evidence
// of an active transaction: wait for the stack and inspect its state.
// This prevents an unrelated session thread from turning an
// autocommit write into an unpublished dirty generation.
let transaction_active = !self.session.transactions.lock().is_empty();
if transaction_active {
self.epochs
.table_data
.dirty
.store(true, std::sync::atomic::Ordering::Release);
return;
}
self.publish_table_data_changes();
}
pub(crate) fn publish_table_data_changes(&self) {
self.clear_bayesian_params_cache();
self.epochs
.table_data
.published
.fetch_add(1, std::sync::atomic::Ordering::AcqRel);
// Keep this session's observed generation behind too. Its ordinary
// write caches were updated incrementally, but prepared/optimized
// plans and every derived store must cross the same refresh boundary
// as sibling sessions before the next statement.
self.epochs
.table_data
.dirty
.store(false, std::sync::atomic::Ordering::Release);
self.clear_sql_statement_cache();
}
/// Refresh every session-local dependency of committed table contents.
/// Calls made inside an already-pinned storage transaction intentionally
/// defer the refresh: that transaction must keep using its original
/// snapshot and will observe the new generation after it finishes.
pub(crate) fn synchronize_table_data(&self) -> StorageBackendResult<()> {
if self
.storage
.backend
.as_ref()
.is_some_and(|backend| backend.in_transaction())
{
return Ok(());
}
self.synchronize_external_commits()?;
if self
.epochs
.table_data
.seen
.load(std::sync::atomic::Ordering::Acquire)
!= self
.epochs
.table_data
.published
.load(std::sync::atomic::Ordering::Acquire)
&& self.refresh_tracked_storage_snapshot()?
{
return Ok(());
}
self.refresh_table_data_cache(false)
}
/// Detect commits made by independently opened engines or other
/// processes. In-process Arc epochs only coordinate sessions derived via
/// `new_session`; a backend commit generation closes the same visibility
/// gap for every other writer when the backend exposes one.
pub(super) fn synchronize_external_commits(&self) -> StorageBackendResult<()> {
let Some(backend) = self.storage.backend.as_ref() else {
return Ok(());
};
if backend.in_transaction() {
return Ok(());
}
let Some(version) = backend.change_version()? else {
return Ok(());
};
if self
.epochs
.seen_storage_change_version
.load(std::sync::atomic::Ordering::Acquire)
== version
{
return Ok(());
}
let _statement = self.runtime.statement_gate.lock();
let _refresh = self.epochs.external_commit_refresh.lock();
if backend.in_transaction() {
return Ok(());
}
let Some(version) = backend.change_version()? else {
return Ok(());
};
if self
.epochs
.seen_storage_change_version
.load(std::sync::atomic::Ordering::Acquire)
== version
{
return Ok(());
}
// Pin one committed snapshot for the entire restore. Merely marking
// the observed generation is insufficient: another writer can commit
// during restore, and a table lookup from a rule/trigger validator
// would recursively acquire this non-reentrant refresh lock. The
// pinned transaction both defers recursive synchronization and keeps
// table definitions and their dependent registries consistent.
let previous_version = self
.epochs
.seen_storage_change_version
.load(std::sync::atomic::Ordering::Acquire);
backend.begin_read_transaction()?;
let refresh_result = self.refresh_pinned_transaction_snapshot();
let cleanup = backend.rollback_transaction();
let refresh_result = match (refresh_result, cleanup) {
(Ok(()), Ok(())) => Ok(()),
(Err(error), Ok(())) | (Ok(()), Err(error)) => Err(error),
(Err(error), Err(cleanup)) => Err(StorageBackendError::Other(format!(
"external catalog refresh failed: {error}; snapshot cleanup failed: {cleanup}"
))),
};
if refresh_result.is_err() {
self.epochs
.seen_storage_change_version
.store(previous_version, std::sync::atomic::Ordering::Release);
}
refresh_result
}
pub(super) fn refresh_table_data_cache(&self, force: bool) -> StorageBackendResult<()> {
let target_epoch = self
.epochs
.table_data
.published
.load(std::sync::atomic::Ordering::Acquire);
if !force
&& self
.epochs
.table_data
.seen
.load(std::sync::atomic::Ordering::Acquire)
== target_epoch
{
return Ok(());
}
let _refresh = self.epochs.table_data.refresh.lock();
let target_epoch = self
.epochs
.table_data
.published
.load(std::sync::atomic::Ordering::Acquire);
let previous_epoch = self
.epochs
.table_data
.seen
.load(std::sync::atomic::Ordering::Acquire);
if !force && previous_epoch == target_epoch {
return Ok(());
}
self.clear_bayesian_params_cache();
let tables = self
.storage
.tables
.read()
.iter()
.map(|(name, table)| (name.clone(), table.clone()))
.collect::<Vec<_>>();
for (name, table) in tables {
let name = name.qualified_name();
let temporary = table.persistence == uqa_sql::ast::RelationPersistence::Temporary;
if self.storage.backend.is_some() && !temporary {
self.rebind_persistent_table_stores(&name, &table)?;
self.refresh_table_next_id(&name, &table)?;
} else {
Self::value_indexes_clear_column_accelerators(&table);
}
table
.doc_count_dirty
.store(true, std::sync::atomic::Ordering::Release);
// In-memory and temporary tables have no external writers. Their
// mutation hooks already invalidate statistics; an epoch refresh
// must not invalidate freshly collected ANALYZE results again.
if let Some(catalog) = self.storage.catalog.as_ref().filter(|_| !temporary) {
let stats = Self::load_column_stats_from_catalog(catalog.as_ref(), &name)?;
let stats_dirty = (stats.is_empty() && !table.columns.read().is_empty())
|| crate::engine_statistics::MaintenanceState::load_for(
catalog.as_ref(),
&name,
table.object_id(),
)?
.invalidates_existing_statistics();
*table.column_stats.write() = stats;
table
.column_stats_loaded
.store(true, std::sync::atomic::Ordering::Release);
table
.column_stats_dirty
.store(stats_dirty, std::sync::atomic::Ordering::Release);
}
}
self.synchronize_partition_identity_watermarks()?;
self.clear_sql_statement_cache();
// Set the generation before rebinding prepared plans so optimizer
// statistics can resolve tables without recursively refreshing.
self.epochs
.table_data
.seen
.store(target_epoch, std::sync::atomic::Ordering::Release);
if let Err(error) = self.rebind_prepared_plans() {
self.epochs
.table_data
.seen
.store(previous_epoch, std::sync::atomic::Ordering::Release);
return Err(StorageBackendError::Other(format!(
"re-optimize prepared plans after table data refresh: {error}"
)));
}
Ok(())
}
/// Bring every session-local cache onto the outer transaction's pinned
/// database snapshot. A stable backend change version closes the gap
/// between a physical commit and publication of the matching in-process
/// epochs, while allowing unchanged statements to retain their caches.
pub(crate) fn refresh_pinned_transaction_snapshot(&self) -> StorageBackendResult<()> {
let (storage_snapshot_unchanged, stable_storage_version) =
if let Some(backend) = self.storage.backend.as_ref() {
if backend.change_version_monitor_is_nonblocking()? {
let before = backend.change_version()?;
backend.pin_transaction_snapshot()?;
let after = backend.change_version()?;
let stable = before == after;
(
stable
&& after.is_some_and(|version| {
self.epochs
.seen_storage_change_version
.load(std::sync::atomic::Ordering::Acquire)
== version
}),
stable.then_some(after).flatten(),
)
} else {
// A backend may own a whole-file exclusive lock. Pin and
// refresh through the session itself because an independent
// monitor could wait on a lock held by this same session.
backend.pin_transaction_snapshot()?;
(false, None)
}
} else {
(true, None)
};
let table_catalog_epoch = self
.epochs
.table_catalog
.published
.load(std::sync::atomic::Ordering::Acquire);
let table_data_epoch = self
.epochs
.table_data
.published
.load(std::sync::atomic::Ordering::Acquire);
let catalog_registry_epoch = self
.epochs
.catalog_registry
.published
.load(std::sync::atomic::Ordering::Acquire);
if storage_snapshot_unchanged
&& self
.epochs
.table_catalog
.seen
.load(std::sync::atomic::Ordering::Acquire)
== table_catalog_epoch
&& self
.epochs
.table_data
.seen
.load(std::sync::atomic::Ordering::Acquire)
== table_data_epoch
&& self
.epochs
.catalog_registry
.seen
.load(std::sync::atomic::Ordering::Acquire)
== catalog_registry_epoch
{
return Ok(());
}
if self.refresh_tracked_pinned_snapshot(
table_catalog_epoch,
table_data_epoch,
catalog_registry_epoch,
)? {
if let Some(version) = stable_storage_version {
self.epochs
.seen_storage_change_version
.store(version, std::sync::atomic::Ordering::Release);
}
return Ok(());
}
self.clear_persistent_table_bindings_for_catalog_reload();
self.reload_table_catalog(table_catalog_epoch)?;
// Newly restored table handles already include their statistics and
// physical data snapshot. Do not decode the same statistics twice.
self.epochs
.table_data
.seen
.store(table_data_epoch, std::sync::atomic::Ordering::Release);
self.synchronize_partition_identity_watermarks()?;
self.reload_catalog_registries(catalog_registry_epoch)?;
if let Some(version) = stable_storage_version {
self.epochs
.seen_storage_change_version
.store(version, std::sync::atomic::Ordering::Release);
}
Ok(())
}
}