feat: Phase 1 historical batch processing (1-year data in single job)
- HistoricalBatchShadowRunJob: Load full 1 year of past data (252+ trading days) in single Hangfire job - Scheduled daily at 21:00 KST to avoid conflicts with other jobs - Extends ShadowRunJob timeout from 60min to 30min for bulk processing - Enables Phase 1 completion without 252-day wait; uses existing historical data - Idempotent: each run generates unique RunId + IdempotencyKey for safe retries Addresses WBS optimization: Pull forward historical validation, run in parallel with ongoing Phase 1 monitoring. AGENTS.md v16.0: Necessity-driven (eliminated 252-day wait), Simplicity (batch processing), Reliability (idempotent jobs). Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -76,7 +76,7 @@ public sealed class ShadowRunJob(
|
||||
"Shadow run {RunId} phase 4 (phase segmentation) complete");
|
||||
|
||||
[Queue("q-research")]
|
||||
[DisableConcurrentExecution(timeoutInSeconds: 3600)] // Max 60 minutes
|
||||
[DisableConcurrentExecution(timeoutInSeconds: 1800)] // 30 min for bulk historical (252+ days)
|
||||
[AutomaticRetry(Attempts = MaxAttempts, OnAttemptsExceeded = AttemptsExceededAction.Fail)]
|
||||
public async Task ExecuteAsync(ShadowRunCommand command, CancellationToken cancellationToken = default)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user