quelch 0.5.0

Ingest data from Jira, Confluence, and more directly into Azure AI Search
Documentation
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
pub mod embedder;
pub mod phases;
pub mod state;

use anyhow::{Context, Result};
use chrono::Timelike;
use std::io::Write;
use std::path::Path;
use std::time::Instant;
use tokio::sync::mpsc;
use tracing::{error, info, warn};

use crate::azure::SearchClient;
use crate::azure::schema::{EmbeddingConfig, confluence_index_schema, jira_index_schema};
use crate::config::{Config, SourceConfig};
use crate::sources::confluence::ConfluenceConnector;
use crate::sources::jira::JiraConnector;
use crate::sources::{SourceConnector, SyncCursor};

use self::state::SyncState;

/// Commands the TUI sends back to the engine. Plain-log runs get a
/// never-firing receiver so the same code path serves both modes.
#[derive(Debug, Clone)]
pub enum UiCommand {
    Pause,
    Resume,
    SyncNow,
    ResetCursor {
        source: String,
        subsource: Option<String>,
    },
    PurgeNow {
        source: String,
    },
    Shutdown,
}

/// Build a never-firing command channel for plain-log runs where no TUI
/// layer will push commands. The sender is dropped immediately by the
/// caller (or held but unused); the receiver is consumed by the engine.
pub fn never_command_channel() -> (mpsc::Sender<UiCommand>, mpsc::Receiver<UiCommand>) {
    mpsc::channel(1)
}

/// Outcome of a command-poll tick or one iteration of the engine loop.
#[derive(Debug)]
pub enum EngineOutcome {
    Continue,
    Shutdown,
    ResetCursor {
        source: String,
        subsource: Option<String>,
    },
}

fn format_error_chain(error: &anyhow::Error) -> String {
    error
        .chain()
        .map(|cause| cause.to_string())
        .collect::<Vec<_>>()
        .join(": ")
}

/// Controls how missing indexes are handled.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum IndexMode {
    /// Prompt the user interactively before creating.
    Interactive,
    /// Auto-create missing indexes without prompting.
    AutoCreate,
    /// Fail if any index is missing (for CI/scripts).
    RequireExisting,
}

/// Load embedding configuration from ailloy.
/// Returns error if no embedding model is configured.
pub fn load_embedding_config() -> Result<EmbeddingConfig> {
    let config = ailloy::config::Config::load()
        .context("failed to load ailloy config — run 'quelch ai config' to set up AI")?;

    let (_id, node) = config
        .default_node_for("embedding")
        .context("no embedding model configured — run 'quelch ai config' to set one up")?;

    let metadata = node.embedding_metadata();

    let dimensions = metadata.dimensions.context(
        "embedding model has no dimensions configured — reconfigure with 'quelch ai config'",
    )?;

    let vectorizer_json = metadata
        .to_azure_search_vectorizer("quelch-vectorizer")
        .context("failed to generate vectorizer config — ensure you're using an Azure OpenAI embedding model")?;

    Ok(EmbeddingConfig {
        dimensions,
        vectorizer_json,
    })
}

/// Get the appropriate schema for a source config.
fn schema_for_source(
    source_config: &SourceConfig,
    embedding: &EmbeddingConfig,
) -> crate::azure::schema::IndexSchema {
    match source_config {
        SourceConfig::Jira(j) => jira_index_schema(&j.index, embedding),
        SourceConfig::Confluence(c) => confluence_index_schema(&c.index, embedding),
    }
}

/// Build the `(source_name, subsources)` mapping for all configured sources.
/// Used to hydrate state-file migration and for loading per-subsource state.
fn subsources_by_source(config: &Config) -> Vec<(String, Vec<String>)> {
    config
        .sources
        .iter()
        .map(|s| match s {
            SourceConfig::Jira(j) => (j.name.clone(), j.projects.clone()),
            SourceConfig::Confluence(c) => (c.name.clone(), c.spaces.clone()),
        })
        .collect()
}

/// Delete all indexes configured in the config, then clear sync state.
pub async fn reset_indexes(config: &Config, state_path: &Path) -> Result<Vec<String>> {
    let azure = SearchClient::new(&config.azure.endpoint, &config.azure.api_key);
    let mut deleted = Vec::new();

    // Collect unique index names
    let mut seen = std::collections::HashSet::new();
    for source in &config.sources {
        let index = source.index().to_string();
        if seen.insert(index.clone()) {
            let exists = azure
                .index_exists(&index)
                .await
                .with_context(|| format!("failed to check index '{}'", index))?;

            if exists {
                azure
                    .delete_index(&index)
                    .await
                    .with_context(|| format!("failed to delete index '{}'", index))?;
                println!("  [deleted] {}", index);
                deleted.push(index);
            } else {
                println!("  [absent]  {}", index);
            }
        }
    }

    // Clear sync state
    let mut state = SyncState::load(state_path, &subsources_by_source(config))?;
    state.reset_all();
    state.save(state_path)?;
    println!("  [cleared] sync state");

    Ok(deleted)
}

/// Check and optionally create all indexes required by the config.
/// Returns the list of indexes that were created.
pub async fn setup_indexes(
    config: &Config,
    embedding: &EmbeddingConfig,
    mode: IndexMode,
) -> Result<Vec<String>> {
    let azure = SearchClient::new(&config.azure.endpoint, &config.azure.api_key);
    let mut created = Vec::new();

    // Collect unique indexes with their schemas
    let mut seen = std::collections::HashSet::new();
    let mut schemas = Vec::new();
    for source in &config.sources {
        let schema = schema_for_source(source, embedding);
        if seen.insert(schema.name.clone()) {
            schemas.push(schema);
        }
    }

    for schema in &schemas {
        let exists = azure
            .index_exists(&schema.name)
            .await
            .with_context(|| format!("failed to check index '{}'", schema.name))?;

        if exists {
            println!("  [exists]  {}", schema.name);
            continue;
        }

        let should_create = match mode {
            IndexMode::AutoCreate => true,
            IndexMode::RequireExisting => {
                anyhow::bail!(
                    "Index '{}' does not exist. Run 'quelch setup' to create it.",
                    schema.name
                );
            }
            IndexMode::Interactive => {
                print!("  [missing] {} — Create it? [y/N] ", schema.name);
                std::io::stdout().flush()?;
                let mut input = String::new();
                std::io::stdin().read_line(&mut input)?;
                input.trim().eq_ignore_ascii_case("y")
            }
        };

        if should_create {
            azure
                .create_index(schema)
                .await
                .with_context(|| format!("failed to create index '{}'", schema.name))?;
            println!("  [created] {}", schema.name);
            created.push(schema.name.clone());
        } else {
            println!("  [skipped] {}", schema.name);
        }
    }

    Ok(created)
}

/// Run a one-shot sync of all configured sources.
/// If `embedder` is None, documents are pushed without embeddings (for testing/mock mode).
/// If `max_docs` is Some, stop after syncing that many documents per source.
pub async fn run_sync(
    config: &Config,
    state_path: &Path,
    embedding: &EmbeddingConfig,
    index_mode: IndexMode,
    embedder: Option<&dyn embedder::Embedder>,
    max_docs: Option<u64>,
) -> Result<()> {
    let (_tx, mut rx) = never_command_channel();
    run_sync_with(
        config, state_path, embedding, index_mode, embedder, max_docs, &mut rx, 1,
    )
    .await?;
    Ok(())
}

/// Run a sync cycle while observing `cmd_rx` for TUI commands. The engine
/// polls at source/subsource/batch boundaries and reacts to
/// `Pause`/`Resume`/`Shutdown`/`ResetCursor` appropriately.
#[allow(clippy::too_many_arguments)]
pub async fn run_sync_with(
    config: &Config,
    state_path: &Path,
    embedding: &EmbeddingConfig,
    index_mode: IndexMode,
    embedder: Option<&dyn embedder::Embedder>,
    max_docs: Option<u64>,
    cmd_rx: &mut mpsc::Receiver<UiCommand>,
    cycle: u64,
) -> Result<EngineOutcome> {
    setup_indexes(config, embedding, index_mode).await?;
    let azure = SearchClient::new(&config.azure.endpoint, &config.azure.api_key);
    let subs = subsources_by_source(config);
    let mut state = SyncState::load(state_path, &subs)?;
    let mut paused = false;
    let mut failures = Vec::new();

    let cycle_start = Instant::now();
    info!(
        phase = phases::CYCLE_STARTED,
        cycle = cycle,
        "Cycle starting"
    );

    for source_config in &config.sources {
        if let EngineOutcome::Shutdown = poll_commands(cmd_rx, &mut paused).await {
            tracing::info!(
                phase = phases::CYCLE_FINISHED,
                cycle = cycle,
                duration_ms = cycle_start.elapsed().as_millis() as u64,
                "Cycle shutdown"
            );
            return Ok(EngineOutcome::Shutdown);
        }
        match sync_source(
            &azure,
            embedder,
            source_config,
            config,
            &mut state,
            state_path,
            max_docs,
            cmd_rx,
            &mut paused,
        )
        .await
        {
            Ok(EngineOutcome::Shutdown) => {
                tracing::info!(
                    phase = phases::CYCLE_FINISHED,
                    cycle = cycle,
                    duration_ms = cycle_start.elapsed().as_millis() as u64,
                    "Cycle shutdown"
                );
                return Ok(EngineOutcome::Shutdown);
            }
            Ok(EngineOutcome::Continue) => {}
            Ok(EngineOutcome::ResetCursor { .. }) => {}
            Err(e) => {
                let error_chain = format_error_chain(&e);
                error!(
                    phase = phases::SOURCE_FAILED,
                    source = source_config.name(),
                    error = %error_chain,
                    "Sync failed for source"
                );
                failures.push(format!("{}: {}", source_config.name(), error_chain));
            }
        }
    }

    info!(
        phase = phases::CYCLE_FINISHED,
        cycle = cycle,
        duration_ms = cycle_start.elapsed().as_millis() as u64,
        "Cycle finished"
    );

    if !failures.is_empty() {
        anyhow::bail!(
            "sync failed for {} source(s): {}",
            failures.len(),
            failures.join(" | ")
        );
    }
    Ok(EngineOutcome::Continue)
}

/// Purge orphaned documents from all configured indexes.
/// Compares source IDs with indexed IDs and removes any that no longer exist in the source.
pub async fn run_purge(config: &Config) -> Result<()> {
    let azure = SearchClient::new(&config.azure.endpoint, &config.azure.api_key);

    for source_config in &config.sources {
        if let Err(e) = purge_source(&azure, source_config).await {
            error!(source = source_config.name(), error = %e, "Purge failed for source");
        }
    }

    Ok(())
}

async fn purge_source(azure: &SearchClient, source_config: &SourceConfig) -> Result<()> {
    match source_config {
        SourceConfig::Jira(jira_config) => {
            let connector = JiraConnector::new(jira_config);
            purge_with_connector(azure, &connector).await
        }
        SourceConfig::Confluence(conf_config) => {
            let connector = ConfluenceConnector::new(conf_config);
            purge_with_connector(azure, &connector).await
        }
    }
}

async fn purge_with_connector<C: SourceConnector>(
    azure: &SearchClient,
    connector: &C,
) -> Result<()> {
    let source_name = connector.source_name();
    let index_name = connector.index_name();

    info!(source = source_name, "Starting orphan detection");

    // Fetch all IDs from the source across all subsources
    let mut source_ids = std::collections::HashSet::new();
    for subsource in connector.subsources() {
        let ids = connector
            .fetch_all_ids(subsource)
            .await
            .context("failed to fetch IDs from source")?;
        for id in ids {
            source_ids.insert(id);
        }
    }

    // Fetch all IDs from the Azure index
    let index_ids = azure
        .fetch_all_ids(index_name)
        .await
        .context("failed to fetch IDs from Azure index")?;

    // Find orphans: IDs in index but not in source
    let orphans: Vec<String> = index_ids
        .into_iter()
        .filter(|id| !source_ids.contains(id))
        .collect();

    if orphans.is_empty() {
        info!(source = source_name, "No orphaned documents found");
        return Ok(());
    }

    info!(
        source = source_name,
        orphans = orphans.len(),
        "Removing orphaned documents"
    );

    // Delete in batches of 1000 (Azure limit)
    for chunk in orphans.chunks(1000) {
        azure
            .delete_documents(index_name, chunk)
            .await
            .context("failed to delete orphaned documents")?;
    }

    info!(
        source = source_name,
        removed = orphans.len(),
        "Purge complete"
    );

    Ok(())
}

#[allow(clippy::too_many_arguments)]
async fn sync_source(
    azure: &SearchClient,
    embedder: Option<&dyn embedder::Embedder>,
    source_config: &SourceConfig,
    config: &Config,
    state: &mut SyncState,
    state_path: &Path,
    max_docs: Option<u64>,
    cmd_rx: &mut mpsc::Receiver<UiCommand>,
    paused: &mut bool,
) -> Result<EngineOutcome> {
    match source_config {
        SourceConfig::Jira(jira_config) => {
            let connector = JiraConnector::new(jira_config);
            sync_with_connector(
                azure, embedder, &connector, config, state, state_path, max_docs, cmd_rx, paused,
            )
            .await
        }
        SourceConfig::Confluence(conf_config) => {
            let connector = ConfluenceConnector::new(conf_config);
            sync_with_connector(
                azure, embedder, &connector, config, state, state_path, max_docs, cmd_rx, paused,
            )
            .await
        }
    }
}

#[allow(clippy::too_many_arguments)]
async fn sync_with_connector<C: SourceConnector>(
    azure: &SearchClient,
    embedder: Option<&dyn embedder::Embedder>,
    connector: &C,
    config: &Config,
    state: &mut SyncState,
    state_path: &Path,
    max_docs: Option<u64>,
    cmd_rx: &mut mpsc::Receiver<UiCommand>,
    paused: &mut bool,
) -> Result<EngineOutcome> {
    let source_name = connector.source_name();
    let source_start = Instant::now();
    let mut source_docs_synced = 0u64;

    info!(
        phase = phases::SOURCE_STARTED,
        source = source_name,
        "Starting source"
    );

    for subsource_key in connector.subsources() {
        let previous_docs = state
            .get_source(source_name)
            .subsources
            .get(subsource_key)
            .map(|sub| sub.documents_synced)
            .unwrap_or(0);

        // Command poll at subsource boundary
        match poll_commands(cmd_rx, paused).await {
            EngineOutcome::Shutdown => return Ok(EngineOutcome::Shutdown),
            EngineOutcome::ResetCursor {
                source: s,
                subsource,
            } if s == source_name => {
                state.reset_source(source_name, subsource.as_deref());
                state
                    .save(state_path)
                    .context("failed to save sync state")?;
                continue;
            }
            _ => {}
        }

        match sync_single_subsource(
            azure,
            embedder,
            connector,
            subsource_key,
            config,
            state,
            state_path,
            max_docs,
            cmd_rx,
            paused,
        )
        .await
        {
            Ok(EngineOutcome::Shutdown) => return Ok(EngineOutcome::Shutdown),
            Ok(EngineOutcome::Continue) => {
                let current_docs = state
                    .get_source(source_name)
                    .subsources
                    .get(subsource_key)
                    .map(|sub| sub.documents_synced)
                    .unwrap_or(previous_docs);
                source_docs_synced += current_docs.saturating_sub(previous_docs);
            }
            Ok(EngineOutcome::ResetCursor { .. }) => {}
            Err(e) => {
                error!(
                    phase = phases::SUBSOURCE_FAILED,
                    source = source_name,
                    subsource = subsource_key,
                    error = %e,
                    "Subsource failed"
                );
            }
        }
    }

    state.complete_source_cycle(source_name);
    state.save(state_path).ok();

    info!(
        phase = phases::SOURCE_FINISHED,
        source = source_name,
        docs_synced = source_docs_synced,
        duration_ms = source_start.elapsed().as_millis() as u64,
        "Finished source"
    );
    Ok(EngineOutcome::Continue)
}

/// Non-blocking drain of command channel. Applies `Pause`/`Resume` in place
/// (updates `paused`) and returns the first actionable outcome for the caller.
async fn poll_commands(cmd_rx: &mut mpsc::Receiver<UiCommand>, paused: &mut bool) -> EngineOutcome {
    loop {
        match cmd_rx.try_recv() {
            Ok(UiCommand::Pause) => {
                *paused = true;
            }
            Ok(UiCommand::Resume) => {
                *paused = false;
            }
            Ok(UiCommand::Shutdown) => return EngineOutcome::Shutdown,
            Ok(UiCommand::ResetCursor { source, subsource }) => {
                return EngineOutcome::ResetCursor { source, subsource };
            }
            Ok(UiCommand::SyncNow) | Ok(UiCommand::PurgeNow { .. }) => {
                // SyncNow is only meaningful during the watch sleep.
                // PurgeNow is handled by the caller in run_sync_with.
            }
            Err(_) => break,
        }
    }
    // Block while paused — but still handle Resume/Shutdown.
    while *paused {
        match cmd_rx.recv().await {
            Some(UiCommand::Resume) => {
                *paused = false;
                break;
            }
            Some(UiCommand::Shutdown) => return EngineOutcome::Shutdown,
            Some(UiCommand::Pause) => { /* already paused */ }
            Some(UiCommand::ResetCursor { source, subsource }) => {
                return EngineOutcome::ResetCursor { source, subsource };
            }
            Some(_) => { /* ignore while paused */ }
            None => {
                *paused = false;
                break;
            }
        }
    }
    EngineOutcome::Continue
}

#[allow(clippy::too_many_arguments)]
async fn sync_single_subsource<C: SourceConnector>(
    azure: &SearchClient,
    embedder: Option<&dyn embedder::Embedder>,
    connector: &C,
    subsource: &str,
    config: &Config,
    state: &mut SyncState,
    state_path: &Path,
    max_docs: Option<u64>,
    cmd_rx: &mut mpsc::Receiver<UiCommand>,
    paused: &mut bool,
) -> Result<EngineOutcome> {
    let source_name = connector.source_name();
    let index_name = connector.index_name();

    let src_state = state.get_source(source_name);
    let mut cursor = src_state
        .subsources
        .get(subsource)
        .and_then(|s| s.last_cursor)
        .map(|ts| SyncCursor { last_updated: ts });

    info!(
        phase = phases::SUBSOURCE_STARTED,
        source = source_name,
        subsource = subsource,
        "Starting subsource"
    );

    let mut total_synced: u64 = 0;
    let mut batch_num: u64 = 0;
    let mut soft_limit_reached = false;

    loop {
        if soft_limit_reached {
            break;
        }

        // Command poll at batch boundary
        match poll_commands(cmd_rx, paused).await {
            EngineOutcome::Shutdown => {
                tracing::info!(
                    phase = phases::SUBSOURCE_FINISHED,
                    source = source_name,
                    subsource = subsource,
                    "Shutdown mid-subsource"
                );
                return Ok(EngineOutcome::Shutdown);
            }
            EngineOutcome::ResetCursor {
                source: s,
                subsource: Some(sub),
            } if s == source_name && sub == subsource => {
                state.reset_source(source_name, Some(subsource));
                if let Err(e) = state.save(state_path) {
                    tracing::warn!(
                        source = source_name,
                        subsource = subsource,
                        error = %e,
                        "failed to persist reset"
                    );
                }
                cursor = None;
            }
            _ => {}
        }

        batch_num += 1;
        let result = connector
            .fetch_changes(subsource, cursor.as_ref(), config.sync.batch_size)
            .await
            .context("failed to fetch changes from source")?;

        let result_cursor = result.cursor;
        let result_has_more = result.has_more;

        // Filter out documents from before the cursor's minute. JQL uses minute
        // precision ("updated >= 2026-01-12 13:56"), so the filter must also use
        // minute precision. We truncate the cursor to its minute start and keep
        // all docs after that.
        let new_docs: Vec<_> = if let Some(ref c) = cursor {
            let cursor_minute = c
                .last_updated
                .with_second(0)
                .and_then(|t| t.with_nanosecond(0))
                .unwrap_or(c.last_updated);
            result
                .documents
                .into_iter()
                .filter(|doc| doc.updated_at > cursor_minute)
                .collect()
        } else {
            result.documents
        };

        let doc_count = new_docs.len() as u64;
        if doc_count == 0 {
            info!(
                phase = phases::SUBSOURCE_EMPTY,
                source = source_name,
                subsource = subsource,
                batches = batch_num,
                total = total_synced,
                "No changes to sync"
            );
            break;
        }

        // Emit per-doc tracing events — tracing layer will surface as DocSynced.
        for doc in &new_docs {
            let id = doc.fields.get("id").and_then(|v| v.as_str()).unwrap_or("?");
            let updated = doc
                .fields
                .get("updated_at")
                .and_then(|v| v.as_str())
                .unwrap_or("?");
            info!(
                phase = phases::DOC_SYNCED,
                source = source_name,
                subsource = subsource,
                doc_id = id,
                updated = updated,
                "doc"
            );
        }

        // Generate embeddings if an embedder is available.
        let embeddings: Option<Vec<Vec<f32>>> = if let Some(emb) = embedder {
            let mut vecs = Vec::with_capacity(new_docs.len());
            for doc in &new_docs {
                let content = doc
                    .fields
                    .get("content")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");
                let id = doc.fields.get("id").and_then(|v| v.as_str()).unwrap_or("?");
                let embedding = embed_with_retry(emb, id, content, source_name)
                    .await
                    .context("failed to generate embedding")?;
                vecs.push(embedding);
            }
            Some(vecs)
        } else {
            None
        };

        // Convert SourceDocuments to JSON values, with embeddings if available
        let azure_docs: Vec<serde_json::Value> = new_docs
            .iter()
            .enumerate()
            .map(|(i, doc)| {
                let mut obj: serde_json::Map<String, serde_json::Value> = doc
                    .fields
                    .iter()
                    .map(|(k, v)| (k.clone(), v.clone()))
                    .collect();
                if let Some(embedding) = embeddings.as_ref().and_then(|vecs| vecs.get(i)) {
                    obj.insert("content_vector".to_string(), serde_json::json!(embedding));
                }
                serde_json::Value::Object(obj)
            })
            .collect();

        // Push to Azure AI Search
        azure
            .push_documents(index_name, azure_docs)
            .await
            .context("failed to push documents to Azure AI Search")?;

        total_synced += doc_count;

        let sample_id = new_docs
            .last()
            .and_then(|d| d.fields.get("id"))
            .and_then(|v| v.as_str())
            .map(|s| s.to_string());

        state.update_subsource(
            source_name,
            subsource,
            result_cursor.last_updated,
            doc_count,
            sample_id.clone(),
        );
        state
            .save(state_path)
            .context("failed to save sync state")?;

        info!(
            phase = phases::SUBSOURCE_BATCH,
            source = source_name,
            subsource = subsource,
            batch = batch_num,
            fetched = doc_count,
            cursor = %result_cursor.last_updated,
            sample_id = sample_id.as_deref().unwrap_or(""),
            "Batch pushed"
        );

        cursor = Some(result_cursor);

        if let Some(limit) = max_docs
            && total_synced >= limit
        {
            soft_limit_reached = true;
        }
        if !result_has_more {
            break;
        }
    }

    info!(
        phase = phases::SUBSOURCE_FINISHED,
        source = source_name,
        subsource = subsource,
        total = total_synced,
        "Subsource complete"
    );

    Ok(EngineOutcome::Continue)
}

/// Embed a single document's content, retrying with progressively truncated text
/// if the embedding model rejects it for exceeding the token limit.
///
/// Strategy: on a token-limit error, calculate the reduction ratio from the error
/// message if possible, otherwise halve the content. Retry up to 5 times.
async fn embed_with_retry(
    embedder: &dyn embedder::Embedder,
    doc_id: &str,
    content: &str,
    source_name: &str,
) -> Result<Vec<f32>> {
    const MAX_RETRIES: usize = 5;

    let mut text = content.to_string();

    for attempt in 0..=MAX_RETRIES {
        match embedder.embed_one(&text).await {
            Ok(embedding) => return Ok(embedding),
            Err(e) => {
                if attempt == MAX_RETRIES {
                    anyhow::bail!(
                        "document {} still exceeds token limit after {} truncations: {}",
                        doc_id,
                        MAX_RETRIES,
                        e
                    );
                }

                // Check if this is a token limit error we can retry.
                // Match on the error string since the ClientError may be wrapped
                // in context layers that prevent downcast_ref from finding it.
                let error_msg = format!("{}", e);
                let is_token_error = error_msg.contains("maximum context length");

                if !is_token_error {
                    return Err(e);
                }

                // Try to parse the actual/max tokens from the error to calculate
                // the optimal reduction. Error format:
                // "...maximum context length is 8192 tokens, however you requested 11371 tokens..."
                let shrink_ratio = parse_token_ratio(&error_msg).unwrap_or(0.5);

                let new_len = ((text.len() as f64) * shrink_ratio * 0.9) as usize; // 10% extra margin
                let new_len = new_len.max(100); // never go below 100 chars

                // Truncate on a char boundary
                let byte_end = text
                    .char_indices()
                    .take_while(|(i, _)| *i < new_len)
                    .last()
                    .map(|(i, c)| i + c.len_utf8())
                    .unwrap_or(new_len.min(text.len()));
                text.truncate(byte_end);

                warn!(
                    source = source_name,
                    id = doc_id,
                    attempt = attempt + 1,
                    new_chars = text.len(),
                    shrink_ratio = format!("{:.0}%", shrink_ratio * 100.0),
                    "Truncating content for embedding (token limit exceeded)"
                );
            }
        }
    }

    unreachable!()
}

/// Parse the max/requested token counts from an embedding error message and return
/// the ratio (max_tokens / requested_tokens) to scale the content down.
fn parse_token_ratio(error_msg: &str) -> Option<f64> {
    // "maximum context length is 8192 tokens, however you requested 11371 tokens"
    let max_pos = error_msg.find("maximum context length is ")?;
    let after_max = &error_msg[max_pos + 25..];
    let max_tokens: f64 = after_max
        .split_whitespace()
        .next()?
        .trim_end_matches(|c: char| !c.is_ascii_digit())
        .parse()
        .ok()?;

    let req_pos = error_msg.find("you requested ")?;
    let after_req = &error_msg[req_pos + 14..];
    let req_tokens: f64 = after_req
        .split_whitespace()
        .next()?
        .trim_end_matches(|c: char| !c.is_ascii_digit())
        .parse()
        .ok()?;

    if req_tokens > 0.0 {
        Some(max_tokens / req_tokens)
    } else {
        None
    }
}