test: production ingest E2E test suite with enhanced logging #55
@@ -527,8 +527,19 @@ pub async fn ingest_handler(
|
||||
INGEST_BYTES_TOTAL.inc_by(byte_count as u64);
|
||||
INGEST_RECORDS_TOTAL.inc_by(body.records.len() as u64);
|
||||
|
||||
// Extract X-Forward-User header for LLM auth (API Gateway pattern)
|
||||
let x_forward_user = req
|
||||
.headers()
|
||||
.get("X-Forward-User")
|
||||
.and_then(|h| h.to_str().ok())
|
||||
.map(|s| s.to_string());
|
||||
|
||||
if let Some(ref user) = x_forward_user {
|
||||
tracing::info!("Ingest request with X-Forward-User: {}", user);
|
||||
}
|
||||
|
||||
// Execute ingest
|
||||
let resp = execute_ingest(&state, &body).await;
|
||||
let resp = execute_ingest(&state, &body, x_forward_user).await;
|
||||
INGEST_IN_FLIGHT.dec();
|
||||
resp
|
||||
}
|
||||
@@ -537,6 +548,7 @@ pub async fn ingest_handler(
|
||||
async fn execute_ingest(
|
||||
state: &web::Data<AppState>,
|
||||
body: &IngestRequest,
|
||||
x_forward_user: Option<String>,
|
||||
) -> HttpResponse {
|
||||
let records: Vec<(String, String)> = body.records
|
||||
.iter()
|
||||
@@ -567,8 +579,9 @@ async fn execute_ingest(
|
||||
let worker = state.ingest_worker.clone();
|
||||
let project = body.project.clone();
|
||||
let ingest_id = body.ingest_id.clone();
|
||||
let x_fwd = x_forward_user.clone();
|
||||
tokio::spawn(async move {
|
||||
if let Err(e) = worker.process_ingest(&project, &ingest_id, records).await {
|
||||
if let Err(e) = worker.process_ingest_with_auth(&project, &ingest_id, records, x_fwd).await {
|
||||
tracing::error!("Ingest failed: {}", e);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -67,6 +67,17 @@ impl IngestWorker {
|
||||
project: &str,
|
||||
ingest_id: &str,
|
||||
records: Vec<(String, String)>, // (content, source)
|
||||
) -> Result<()> {
|
||||
self.process_ingest_with_auth(project, ingest_id, records, None).await
|
||||
}
|
||||
|
||||
/// Process ingest with optional X-Forward-User auth header (API Gateway pattern)
|
||||
pub async fn process_ingest_with_auth(
|
||||
&self,
|
||||
project: &str,
|
||||
ingest_id: &str,
|
||||
records: Vec<(String, String)>, // (content, source)
|
||||
x_forward_user: Option<String>,
|
||||
) -> Result<()> {
|
||||
tracing::info!(
|
||||
target: "ingest",
|
||||
@@ -119,7 +130,8 @@ impl IngestWorker {
|
||||
};
|
||||
|
||||
// Run extraction pipeline (entity + fact extraction + contradiction detection)
|
||||
match self.pipeline.ingest(&episode).await {
|
||||
let x_forward_user_ref = x_forward_user.as_deref();
|
||||
match self.pipeline.ingest_with_auth(&episode, x_forward_user_ref).await {
|
||||
Ok(result) => {
|
||||
tracing::debug!(
|
||||
target: "ingest",
|
||||
|
||||
@@ -59,10 +59,15 @@ impl IngestPipeline {
|
||||
/// Execute extraction pipeline for episode
|
||||
/// CRAP: 14 (Low: orchestration only, delegates to stages)
|
||||
pub async fn ingest(&self, episode: &Episode) -> Result<ExtractionResult> {
|
||||
self.ingest_with_auth(episode, None).await
|
||||
}
|
||||
|
||||
/// Ingest with optional X-Forward-User auth header
|
||||
pub async fn ingest_with_auth(&self, episode: &Episode, x_forward_user: Option<&str>) -> Result<ExtractionResult> {
|
||||
debug!("Starting ingest for episode: {}", episode.id);
|
||||
|
||||
// Stage 1: Extract entities
|
||||
let extracted_entities = self.entity_extractor.extract(&episode.text).await?;
|
||||
// Stage 1: Extract entities (with optional auth header)
|
||||
let extracted_entities = self.entity_extractor.extract_with_auth(&episode.text, x_forward_user).await?;
|
||||
debug!("Extracted {} entities", extracted_entities.len());
|
||||
|
||||
// Convert to domain entities
|
||||
|
||||
Reference in New Issue
Block a user