Files
git.stella-ops.org/src/Signals/StellaOps.Signals/Services/RuntimeFactsRetentionService.cs
StellaOps Bot f1a39c4ce3
Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Notify Smoke Test / Notify Unit Tests (push) Has been cancelled
Notify Smoke Test / Notifier Service Tests (push) Has been cancelled
Notify Smoke Test / Notification Smoke Test (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
Manifest Integrity / Validate Schema Integrity (push) Has been cancelled
Manifest Integrity / Validate Contract Documents (push) Has been cancelled
Manifest Integrity / Validate Pack Fixtures (push) Has been cancelled
Manifest Integrity / Audit SHA256SUMS Files (push) Has been cancelled
Manifest Integrity / Verify Merkle Roots (push) Has been cancelled
devportal-offline / build-offline (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
up
2025-12-13 18:08:55 +02:00

141 lines
5.0 KiB
C#

using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using StellaOps.Signals.Options;
using StellaOps.Signals.Persistence;
namespace StellaOps.Signals.Services;
/// <summary>
/// Background service that periodically cleans up expired runtime facts
/// based on the configured retention policy.
/// </summary>
public sealed class RuntimeFactsRetentionService : BackgroundService
{
private readonly IReachabilityFactRepository _factRepository;
private readonly IOptions<SignalsOptions> _options;
private readonly TimeProvider _timeProvider;
private readonly ILogger<RuntimeFactsRetentionService> _logger;
public RuntimeFactsRetentionService(
IReachabilityFactRepository factRepository,
IOptions<SignalsOptions> options,
TimeProvider timeProvider,
ILogger<RuntimeFactsRetentionService> logger)
{
_factRepository = factRepository ?? throw new ArgumentNullException(nameof(factRepository));
_options = options ?? throw new ArgumentNullException(nameof(options));
_timeProvider = timeProvider ?? throw new ArgumentNullException(nameof(timeProvider));
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
var retention = _options.Value.Retention;
if (!retention.EnableAutoCleanup)
{
_logger.LogInformation("Runtime facts auto-cleanup is disabled.");
return;
}
_logger.LogInformation(
"Runtime facts retention service started. TTL={TtlHours}h, Interval={IntervalMinutes}m, MaxPerSubject={MaxPerSubject}",
retention.RuntimeFactsTtlHours,
retention.CleanupIntervalMinutes,
retention.MaxRuntimeFactsPerSubject);
var interval = TimeSpan.FromMinutes(retention.CleanupIntervalMinutes);
while (!stoppingToken.IsCancellationRequested)
{
try
{
await Task.Delay(interval, _timeProvider, stoppingToken).ConfigureAwait(false);
await CleanupExpiredFactsAsync(retention, stoppingToken).ConfigureAwait(false);
}
catch (OperationCanceledException) when (stoppingToken.IsCancellationRequested)
{
// Normal shutdown
break;
}
catch (Exception ex)
{
_logger.LogError(ex, "Error during runtime facts cleanup cycle.");
// Continue to next cycle
}
}
_logger.LogInformation("Runtime facts retention service stopped.");
}
private async Task CleanupExpiredFactsAsync(SignalsRetentionOptions retention, CancellationToken cancellationToken)
{
if (retention.RuntimeFactsTtlHours <= 0)
{
_logger.LogDebug("RuntimeFactsTtlHours is 0, skipping expiration cleanup.");
return;
}
var cutoff = _timeProvider.GetUtcNow().AddHours(-retention.RuntimeFactsTtlHours);
var expiredDocs = await _factRepository.GetExpiredAsync(cutoff, 100, cancellationToken).ConfigureAwait(false);
if (expiredDocs.Count == 0)
{
_logger.LogDebug("No expired runtime facts documents found.");
return;
}
_logger.LogInformation("Found {Count} expired runtime facts documents to clean up.", expiredDocs.Count);
var deletedCount = 0;
var archivedCount = 0;
foreach (var doc in expiredDocs)
{
try
{
if (retention.ArchiveBeforeDelete)
{
await ArchiveDocumentAsync(doc, retention, cancellationToken).ConfigureAwait(false);
archivedCount++;
}
var deleted = await _factRepository.DeleteAsync(doc.SubjectKey, cancellationToken).ConfigureAwait(false);
if (deleted)
{
deletedCount++;
}
}
catch (Exception ex)
{
_logger.LogWarning(ex, "Failed to cleanup expired document for subject {SubjectKey}.", doc.SubjectKey);
}
}
_logger.LogInformation(
"Cleanup complete: deleted={DeletedCount}, archived={ArchivedCount}",
deletedCount,
archivedCount);
}
private Task ArchiveDocumentAsync(
StellaOps.Signals.Models.ReachabilityFactDocument document,
SignalsRetentionOptions retention,
CancellationToken cancellationToken)
{
// Archive to CAS is a placeholder - actual implementation would write to CAS storage
// using the configured ArchiveCasPath
_logger.LogDebug(
"Archiving document for subject {SubjectKey} to {CasPath}",
document.SubjectKey,
retention.ArchiveCasPath);
// TODO: Implement actual CAS archival via ICasStore when available
return Task.CompletedTask;
}
}