1use super::*;
2
3#[derive(Debug, Clone)]
4struct MetricsRetentionRollupPolicy {
5 target: String,
6 aggregation: String,
7 bucket_ns: u64,
8}
9
10#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
11struct MetricsRollupKey {
12 metric: String,
13 bucket_ns: u64,
14 tags: Vec<(String, String)>,
15}
16
17#[derive(Debug, Clone)]
18struct MetricsRollupAccumulator {
19 count: u64,
20 sum: f64,
21 min: f64,
22 max: f64,
23}
24
25impl MetricsRollupAccumulator {
26 fn new(value: f64) -> Self {
27 Self {
28 count: 1,
29 sum: value,
30 min: value,
31 max: value,
32 }
33 }
34
35 fn push(&mut self, value: f64) {
36 self.count = self.count.saturating_add(1);
37 self.sum += value;
38 self.min = self.min.min(value);
39 self.max = self.max.max(value);
40 }
41
42 fn value(&self, aggregation: &str) -> f64 {
43 match aggregation {
44 "sum" => self.sum,
45 "min" => self.min,
46 "max" => self.max,
47 "count" => self.count as f64,
48 _ => self.sum / self.count.max(1) as f64,
49 }
50 }
51}
52
53fn metrics_rollup_policies_for_retention(
54 contract: &crate::physical::CollectionContract,
55) -> Vec<MetricsRetentionRollupPolicy> {
56 contract
57 .metrics_rollup_policies
58 .iter()
59 .filter_map(|spec| {
60 let parsed = crate::storage::timeseries::retention::DownsamplePolicy::parse(spec)?;
61 if parsed.source != "raw"
62 || !matches!(
63 parsed.aggregation.as_str(),
64 "avg" | "sum" | "min" | "max" | "count"
65 )
66 {
67 return None;
68 }
69 Some(MetricsRetentionRollupPolicy {
70 target: parsed.target,
71 aggregation: parsed.aggregation,
72 bucket_ns: parsed.bucket_ns,
73 })
74 })
75 .collect()
76}
77
78fn metrics_rollup_collection_for_retention(raw_collection: &str, target: &str) -> String {
79 let sanitized = target
80 .chars()
81 .map(|ch| {
82 if ch.is_ascii_alphanumeric() || ch == '_' {
83 ch
84 } else {
85 '_'
86 }
87 })
88 .collect::<String>();
89 format!("red_metrics_rollup_{raw_collection}_{sanitized}")
90}
91
92impl RedDBRuntime {
93 pub fn create_export(&self, name: impl Into<String>) -> RedDBResult<ExportDescriptor> {
94 self.inner
95 .db
96 .create_named_export(name)
97 .map_err(|err| RedDBError::Internal(err.to_string()))
98 }
99
100 pub fn graph_projections(&self) -> RedDBResult<Vec<PhysicalGraphProjection>> {
101 Ok(self.inner.db.declared_graph_projections())
102 }
103
104 pub fn operational_graph_projections(&self) -> Vec<PhysicalGraphProjection> {
105 self.inner.db.operational_graph_projections()
106 }
107
108 pub fn graph_projection_named(&self, name: &str) -> RedDBResult<RuntimeGraphProjection> {
109 let status = self
110 .graph_projection_statuses()
111 .into_iter()
112 .find(|status| status.name == name)
113 .ok_or_else(|| RedDBError::NotFound(name.to_string()))?;
114 if !status.declared {
115 return Err(RedDBError::Catalog(format!(
116 "graph projection '{name}' is not declared"
117 )));
118 }
119 if !status.operational {
120 return Err(RedDBError::Catalog(format!(
121 "graph projection '{name}' is declared but not operationally materialized"
122 )));
123 }
124 if status.lifecycle_state == "stale" {
125 return Err(RedDBError::Catalog(format!(
126 "graph projection '{name}' is stale and must be rematerialized before use"
127 )));
128 }
129 let projection = self
130 .operational_graph_projections()
131 .into_iter()
132 .find(|projection| projection.name == name)
133 .ok_or_else(|| RedDBError::NotFound(name.to_string()))?;
134 Ok(RuntimeGraphProjection {
135 node_labels: (!projection.node_labels.is_empty()).then_some(projection.node_labels),
136 node_types: (!projection.node_types.is_empty()).then_some(projection.node_types),
137 edge_labels: (!projection.edge_labels.is_empty()).then_some(projection.edge_labels),
138 })
139 }
140
141 pub fn save_graph_projection(
142 &self,
143 name: impl Into<String>,
144 projection: RuntimeGraphProjection,
145 source: Option<String>,
146 ) -> RedDBResult<PhysicalGraphProjection> {
147 self.inner
148 .db
149 .save_graph_projection(
150 name,
151 projection.node_labels.unwrap_or_default(),
152 projection.node_types.unwrap_or_default(),
153 projection.edge_labels.unwrap_or_default(),
154 source.unwrap_or_else(|| "runtime".to_string()),
155 )
156 .map_err(|err| RedDBError::Internal(err.to_string()))
157 }
158
159 pub fn materialize_graph_projection(&self, name: &str) -> RedDBResult<PhysicalGraphProjection> {
160 self.inner
161 .db
162 .materialize_graph_projection(name)
163 .map_err(|err| RedDBError::Internal(err.to_string()))?
164 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
165 }
166
167 pub fn mark_graph_projection_materializing(
168 &self,
169 name: &str,
170 ) -> RedDBResult<PhysicalGraphProjection> {
171 self.inner
172 .db
173 .mark_graph_projection_materializing(name)
174 .map_err(|err| RedDBError::Internal(err.to_string()))?
175 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
176 }
177
178 pub fn fail_graph_projection(&self, name: &str) -> RedDBResult<PhysicalGraphProjection> {
179 self.inner
180 .db
181 .fail_graph_projection(name)
182 .map_err(|err| RedDBError::Internal(err.to_string()))?
183 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
184 }
185
186 pub fn mark_graph_projection_stale(&self, name: &str) -> RedDBResult<PhysicalGraphProjection> {
187 self.inner
188 .db
189 .mark_graph_projection_stale(name)
190 .map_err(|err| RedDBError::Internal(err.to_string()))?
191 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
192 }
193
194 pub fn analytics_jobs(&self) -> RedDBResult<Vec<PhysicalAnalyticsJob>> {
195 Ok(self.inner.db.declared_analytics_jobs())
196 }
197
198 pub fn operational_analytics_jobs(&self) -> Vec<PhysicalAnalyticsJob> {
199 self.inner.db.operational_analytics_jobs()
200 }
201
202 pub fn save_analytics_job(
203 &self,
204 kind: impl Into<String>,
205 projection_name: Option<String>,
206 metadata: std::collections::BTreeMap<String, String>,
207 ) -> RedDBResult<PhysicalAnalyticsJob> {
208 self.inner
209 .db
210 .save_analytics_job(kind, projection_name, metadata)
211 .map_err(|err| RedDBError::Internal(err.to_string()))
212 }
213
214 pub fn start_analytics_job(
215 &self,
216 kind: impl Into<String>,
217 projection_name: Option<String>,
218 metadata: std::collections::BTreeMap<String, String>,
219 ) -> RedDBResult<PhysicalAnalyticsJob> {
220 if let Some(projection_name) = projection_name.as_deref() {
221 let status = self
222 .graph_projection_statuses()
223 .into_iter()
224 .find(|status| status.name == projection_name)
225 .ok_or_else(|| RedDBError::NotFound(projection_name.to_string()))?;
226 if !status.declared {
227 return Err(RedDBError::Catalog(format!(
228 "graph projection '{projection_name}' is not declared"
229 )));
230 }
231 if !status.operational {
232 return Err(RedDBError::Catalog(format!(
233 "graph projection '{projection_name}' is declared but not operationally materialized"
234 )));
235 }
236 if status.lifecycle_state == "stale" {
237 return Err(RedDBError::Catalog(format!(
238 "graph projection '{projection_name}' is stale and must be rematerialized before analytics jobs can start against it"
239 )));
240 }
241 }
242 self.inner
243 .db
244 .start_analytics_job(kind, projection_name, metadata)
245 .map_err(|err| RedDBError::Internal(err.to_string()))
246 }
247
248 pub fn queue_analytics_job(
249 &self,
250 kind: impl Into<String>,
251 projection_name: Option<String>,
252 metadata: std::collections::BTreeMap<String, String>,
253 ) -> RedDBResult<PhysicalAnalyticsJob> {
254 if let Some(projection_name) = projection_name.as_deref() {
255 let status = self
256 .graph_projection_statuses()
257 .into_iter()
258 .find(|status| status.name == projection_name)
259 .ok_or_else(|| RedDBError::NotFound(projection_name.to_string()))?;
260 if !status.declared {
261 return Err(RedDBError::Catalog(format!(
262 "graph projection '{projection_name}' is not declared"
263 )));
264 }
265 if !status.operational {
266 return Err(RedDBError::Catalog(format!(
267 "graph projection '{projection_name}' is declared but not operationally materialized"
268 )));
269 }
270 if status.lifecycle_state == "stale" {
271 return Err(RedDBError::Catalog(format!(
272 "graph projection '{projection_name}' is stale and must be rematerialized before analytics jobs can be queued against it"
273 )));
274 }
275 }
276 self.inner
277 .db
278 .queue_analytics_job(kind, projection_name, metadata)
279 .map_err(|err| RedDBError::Internal(err.to_string()))
280 }
281
282 pub fn fail_analytics_job(
283 &self,
284 kind: impl Into<String>,
285 projection_name: Option<String>,
286 metadata: std::collections::BTreeMap<String, String>,
287 ) -> RedDBResult<PhysicalAnalyticsJob> {
288 self.inner
289 .db
290 .fail_analytics_job(kind, projection_name, metadata)
291 .map_err(|err| RedDBError::Internal(err.to_string()))
292 }
293
294 pub fn mark_analytics_job_stale(
295 &self,
296 kind: impl Into<String>,
297 projection_name: Option<String>,
298 metadata: std::collections::BTreeMap<String, String>,
299 ) -> RedDBResult<PhysicalAnalyticsJob> {
300 self.inner
301 .db
302 .mark_analytics_job_stale(kind, projection_name, metadata)
303 .map_err(|err| RedDBError::Internal(err.to_string()))
304 }
305
306 pub fn complete_analytics_job(
307 &self,
308 kind: impl Into<String>,
309 projection_name: Option<String>,
310 metadata: std::collections::BTreeMap<String, String>,
311 ) -> RedDBResult<PhysicalAnalyticsJob> {
312 self.inner
313 .db
314 .record_analytics_job(kind, projection_name, metadata)
315 .map_err(|err| RedDBError::Internal(err.to_string()))
316 }
317
318 pub fn record_analytics_job(
319 &self,
320 kind: impl Into<String>,
321 projection_name: Option<String>,
322 metadata: std::collections::BTreeMap<String, String>,
323 ) -> RedDBResult<PhysicalAnalyticsJob> {
324 if let Some(projection_name) = projection_name.as_deref() {
325 let status = self
326 .graph_projection_statuses()
327 .into_iter()
328 .find(|status| status.name == projection_name)
329 .ok_or_else(|| RedDBError::NotFound(projection_name.to_string()))?;
330 if !status.declared {
331 return Err(RedDBError::Catalog(format!(
332 "graph projection '{projection_name}' is not declared"
333 )));
334 }
335 if !status.operational {
336 return Err(RedDBError::Catalog(format!(
337 "graph projection '{projection_name}' is declared but not operationally materialized"
338 )));
339 }
340 if status.lifecycle_state == "stale" {
341 return Err(RedDBError::Catalog(format!(
342 "graph projection '{projection_name}' is stale and must be rematerialized before analytics jobs can complete against it"
343 )));
344 }
345 }
346 self.inner
347 .db
348 .record_analytics_job(kind, projection_name, metadata)
349 .map_err(|err| RedDBError::Internal(err.to_string()))
350 }
351
352 pub fn resolve_graph_projection(
353 &self,
354 projection_name: Option<&str>,
355 inline: Option<RuntimeGraphProjection>,
356 ) -> RedDBResult<Option<RuntimeGraphProjection>> {
357 let named = match projection_name {
358 Some(name) => Some(self.graph_projection_named(name)?),
359 None => None,
360 };
361 Ok(merge_runtime_projection(named, inline))
362 }
363
364 pub fn apply_retention_policy(&self) -> RedDBResult<()> {
365 self.check_write(crate::runtime::write_gate::WriteKind::Maintenance)?;
366 let now_ms = current_unix_ms_u64();
367 self.retire_expired_append_only_segments(now_ms)?;
368 let expired = self
369 .inner
370 .db
371 .ttl_expired_entities_now()
372 .map_err(|err| RedDBError::Internal(err.to_string()))?;
373 let store = self.inner.db.store();
374 for (collection, id) in expired {
375 let deleted = store
376 .delete(&collection, id)
377 .map_err(|err| RedDBError::Internal(err.to_string()))?;
378 if deleted {
379 store.context_index().remove_entity(id);
380 self.cdc_emit(
381 crate::replication::cdc::ChangeOperation::Delete,
382 &collection,
383 id.raw(),
384 "entity",
385 );
386 }
387 }
388 self.inner
389 .db
390 .enforce_retention_policy()
391 .map_err(|err| RedDBError::Internal(err.to_string()))?;
392 self.enforce_metrics_raw_retention()?;
393 self.invalidate_result_cache();
394 Ok(())
395 }
396
397 pub(crate) fn retire_expired_append_only_segments(&self, now_ms: u64) -> RedDBResult<u64> {
398 let Some(path) = self.inner.db.path() else {
399 return Ok(0);
400 };
401 let manifest = reddb_file::OperationalManifest::for_db_path(path);
402 let segments = manifest
403 .append_only_segments()
404 .map_err(|err| RedDBError::Internal(err.to_string()))?;
405 if segments.is_empty() {
406 return Ok(0);
407 }
408
409 let mut total_retired = 0u64;
410 for contract in self
411 .inner
412 .db
413 .collection_contracts()
414 .into_iter()
415 .filter(|contract| contract.append_only)
416 {
417 let Some(retention_ms) = contract.retention_duration_ms else {
418 continue;
419 };
420 let cutoff = (now_ms as i64).saturating_sub(retention_ms as i64);
421 let mut retired_for_collection = 0u64;
422 for segment in segments
423 .iter()
424 .filter(|segment| segment.collection == contract.name)
425 .filter(|segment| segment.retention_max_ms.is_some_and(|max| max < cutoff))
426 {
427 manifest
428 .begin_retire_append_only_segment(&segment.collection, segment.segment_id)
429 .map_err(|err| RedDBError::Internal(err.to_string()))?;
430 if manifest
431 .finish_retire_append_only_segment(&segment.collection, segment.segment_id)
432 .map_err(|err| RedDBError::Internal(err.to_string()))?
433 {
434 retired_for_collection = retired_for_collection.saturating_add(1);
435 }
436 }
437 if retired_for_collection > 0 {
438 self.inner
439 .retention_sweeper
440 .write()
441 .record_segments_retired(&contract.name, retired_for_collection, now_ms);
442 total_retired = total_retired.saturating_add(retired_for_collection);
443 }
444 }
445 Ok(total_retired)
446 }
447
448 fn enforce_metrics_raw_retention(&self) -> RedDBResult<()> {
449 let now_ns = std::time::SystemTime::now()
450 .duration_since(std::time::UNIX_EPOCH)
451 .unwrap_or_default()
452 .as_nanos()
453 .min(u128::from(u64::MAX)) as u64;
454 let store = self.inner.db.store();
455
456 for contract in self
457 .inner
458 .db
459 .collection_contracts()
460 .into_iter()
461 .filter(|contract| contract.declared_model == crate::catalog::CollectionModel::Metrics)
462 {
463 let Some(raw_retention_ms) = contract.metrics_raw_retention_ms else {
464 continue;
465 };
466 let cutoff_ns = now_ns.saturating_sub(raw_retention_ms.saturating_mul(1_000_000));
467 let Some(manager) = store.get_collection(&contract.name) else {
468 continue;
469 };
470 let expired = manager.query_all(|entity| match &entity.data {
471 crate::storage::EntityData::TimeSeries(point) => point.timestamp_ns < cutoff_ns,
472 _ => false,
473 });
474 self.materialize_metrics_rollups_for_retention(&contract, &expired)?;
475 for entity in expired {
476 let deleted = store
477 .delete(&contract.name, entity.id)
478 .map_err(|err| RedDBError::Internal(err.to_string()))?;
479 if deleted {
480 store.context_index().remove_entity(entity.id);
481 self.cdc_emit(
482 crate::replication::cdc::ChangeOperation::Delete,
483 &contract.name,
484 entity.id.raw(),
485 "entity",
486 );
487 }
488 }
489 }
490
491 Ok(())
492 }
493
494 fn materialize_metrics_rollups_for_retention(
495 &self,
496 contract: &crate::physical::CollectionContract,
497 raw_points: &[crate::storage::UnifiedEntity],
498 ) -> RedDBResult<()> {
499 if raw_points.is_empty() {
500 return Ok(());
501 }
502 let policies = metrics_rollup_policies_for_retention(contract);
503 if policies.is_empty() {
504 return Ok(());
505 }
506
507 let store = self.inner.db.store();
508 for policy in policies {
509 let rollup_collection =
510 metrics_rollup_collection_for_retention(&contract.name, &policy.target);
511 if store.get_collection(&rollup_collection).is_none() {
512 store
513 .create_collection(&rollup_collection)
514 .map_err(|err| RedDBError::Internal(err.to_string()))?;
515 }
516
517 let mut buckets = BTreeMap::<MetricsRollupKey, MetricsRollupAccumulator>::new();
518 for entity in raw_points {
519 let crate::storage::EntityData::TimeSeries(point) = &entity.data else {
520 continue;
521 };
522 let bucket_ns = (point.timestamp_ns / policy.bucket_ns) * policy.bucket_ns;
523 let mut tags = point
524 .tags
525 .iter()
526 .map(|(name, value)| (name.clone(), value.clone()))
527 .collect::<Vec<_>>();
528 tags.sort();
529 let key = MetricsRollupKey {
530 metric: point.metric.clone(),
531 bucket_ns,
532 tags,
533 };
534 buckets
535 .entry(key)
536 .and_modify(|acc| acc.push(point.value))
537 .or_insert_with(|| MetricsRollupAccumulator::new(point.value));
538 }
539
540 for (key, accumulator) in buckets {
541 let tags = key.tags.into_iter().collect::<HashMap<_, _>>();
542 if let Some(manager) = store.get_collection(&rollup_collection) {
543 for entity in manager.query_all(|entity| match &entity.data {
544 crate::storage::EntityData::TimeSeries(point) => {
545 point.metric == key.metric
546 && point.timestamp_ns == key.bucket_ns
547 && point.tags == tags
548 }
549 _ => false,
550 }) {
551 store
552 .delete(&rollup_collection, entity.id)
553 .map_err(|err| RedDBError::Internal(err.to_string()))?;
554 }
555 }
556
557 let entity = crate::storage::UnifiedEntity::new(
558 crate::storage::EntityId::new(0),
559 crate::storage::EntityKind::TimeSeriesPoint(Box::new(
560 crate::storage::TimeSeriesPointKind {
561 series: rollup_collection.clone(),
562 metric: key.metric.clone(),
563 },
564 )),
565 crate::storage::EntityData::TimeSeries(crate::storage::TimeSeriesData {
566 metric: key.metric,
567 timestamp_ns: key.bucket_ns,
568 value: accumulator.value(&policy.aggregation),
569 tags,
570 series_id: None,
573 }),
574 );
575 store
576 .insert_auto(&rollup_collection, entity)
577 .map_err(|err| RedDBError::Internal(err.to_string()))?;
578 }
579 }
580
581 Ok(())
582 }
583
584 pub fn indexes(&self) -> Vec<crate::PhysicalIndexState> {
585 self.inner.db.operational_indexes()
586 }
587
588 pub fn declared_indexes(&self) -> Vec<crate::PhysicalIndexState> {
589 self.inner.db.declared_indexes()
590 }
591
592 pub fn declared_indexes_for_collection(
593 &self,
594 collection: &str,
595 ) -> Vec<crate::PhysicalIndexState> {
596 self.inner
597 .db
598 .declared_indexes()
599 .into_iter()
600 .filter(|index| index.collection.as_deref() == Some(collection))
601 .collect()
602 }
603
604 pub fn index_statuses(&self) -> Vec<crate::catalog::CatalogIndexStatus> {
605 self.inner.db.index_statuses()
606 }
607
608 pub fn graph_projection_statuses(&self) -> Vec<crate::catalog::CatalogGraphProjectionStatus> {
609 self.inner
610 .db
611 .catalog_model_snapshot()
612 .graph_projection_statuses
613 }
614
615 pub fn analytics_job_statuses(&self) -> Vec<crate::catalog::CatalogAnalyticsJobStatus> {
616 self.inner
617 .db
618 .catalog_model_snapshot()
619 .analytics_job_statuses
620 }
621
622 pub fn indexes_for_collection(&self, collection: &str) -> Vec<crate::PhysicalIndexState> {
623 self.inner
624 .db
625 .operational_indexes()
626 .into_iter()
627 .filter(|index| index.collection.as_deref() == Some(collection))
628 .collect()
629 }
630
631 pub fn set_index_enabled(
632 &self,
633 name: &str,
634 enabled: bool,
635 ) -> RedDBResult<crate::PhysicalIndexState> {
636 self.check_write(crate::runtime::write_gate::WriteKind::Maintenance)?;
637 self.inner
638 .db
639 .set_index_enabled(name, enabled)
640 .map_err(|err| RedDBError::Internal(err.to_string()))?
641 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
642 }
643
644 pub fn mark_index_building(&self, name: &str) -> RedDBResult<crate::PhysicalIndexState> {
645 self.inner
646 .db
647 .mark_index_building(name)
648 .map_err(|err| RedDBError::Internal(err.to_string()))?
649 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
650 }
651
652 pub fn fail_index(&self, name: &str) -> RedDBResult<crate::PhysicalIndexState> {
653 self.inner
654 .db
655 .fail_index(name)
656 .map_err(|err| RedDBError::Internal(err.to_string()))?
657 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
658 }
659
660 pub fn mark_index_stale(&self, name: &str) -> RedDBResult<crate::PhysicalIndexState> {
661 self.inner
662 .db
663 .mark_index_stale(name)
664 .map_err(|err| RedDBError::Internal(err.to_string()))?
665 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
666 }
667
668 pub fn mark_index_ready(&self, name: &str) -> RedDBResult<crate::PhysicalIndexState> {
669 self.inner
670 .db
671 .mark_index_ready(name)
672 .map_err(|err| RedDBError::Internal(err.to_string()))?
673 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
674 }
675
676 pub fn warmup_index_with_lifecycle(
677 &self,
678 name: &str,
679 ) -> RedDBResult<crate::PhysicalIndexState> {
680 self.mark_index_building(name)?;
681 match self.warmup_index(name) {
682 Ok(index) => Ok(index),
683 Err(err) => {
684 let _ = self.fail_index(name);
685 Err(err)
686 }
687 }
688 }
689
690 pub fn warmup_index(&self, name: &str) -> RedDBResult<crate::PhysicalIndexState> {
691 self.inner
692 .db
693 .warmup_index(name)
694 .map_err(|err| RedDBError::Internal(err.to_string()))?
695 .ok_or_else(|| RedDBError::NotFound(name.to_string()))
696 }
697
698 pub fn rebuild_indexes(
699 &self,
700 collection: Option<&str>,
701 ) -> RedDBResult<Vec<crate::PhysicalIndexState>> {
702 self.inner
703 .db
704 .rebuild_index_registry(collection)
705 .map_err(|err| RedDBError::Internal(err.to_string()))
706 }
707
708 pub fn rebuild_indexes_with_lifecycle(
709 &self,
710 collection: Option<&str>,
711 ) -> RedDBResult<Vec<crate::PhysicalIndexState>> {
712 let target_names: Vec<String> = match collection {
713 Some(collection) => self
714 .declared_indexes_for_collection(collection)
715 .into_iter()
716 .map(|index| index.name)
717 .collect(),
718 None => self
719 .declared_indexes()
720 .into_iter()
721 .map(|index| index.name)
722 .collect(),
723 };
724
725 let mut marked_building = Vec::new();
726 for name in target_names {
727 if self.mark_index_building(&name).is_ok() {
728 marked_building.push(name);
729 }
730 }
731
732 match self.rebuild_indexes(collection) {
733 Ok(indexes) => Ok(indexes),
734 Err(err) => {
735 for name in marked_building {
736 let _ = self.fail_index(&name);
737 }
738 Err(err)
739 }
740 }
741 }
742}
743
744fn current_unix_ms_u64() -> u64 {
745 std::time::SystemTime::now()
746 .duration_since(std::time::UNIX_EPOCH)
747 .map(|d| d.as_millis() as u64)
748 .unwrap_or(0)
749}