Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

SQS — Audited Consumer

Use this when you want to confirm that trace IDs survive the SQS hold-queue round-trip. The same UUID appears on both the initial Outcome::Retry delivery and the successful second attempt — exactly the property you need when correlating retries in a payment audit log or compliance record. The AuditHandler API is identical across backends.

Prerequisites

  • Docker with a running daemon
  • LOCALSTACK_AUTH_TOKEN environment variable set to a valid LocalStack Pro token
  • Cargo features: aws-sns-sqs,audit

Run

LOCALSTACK_AUTH_TOKEN=<token> cargo run --example sqs_audited_consumer --features aws-sns-sqs,audit

Expected output

topology declared

published payment

[handler] payment=PAY-001 amount=$49.99 attempt=1
[audit] {
  "trace_id": "550e8400-e29b-41d4-a716-446655440000",
  "outcome": "Retry",
  "duration_ms": 0,
  ...
}
[handler] payment=PAY-001 amount=$49.99 attempt=2
[audit] {
  "trace_id": "550e8400-e29b-41d4-a716-446655440000",
  "outcome": "Ack",
  "duration_ms": 0,
  ...
}
done

The same trace_id UUID appears on both delivery attempts. The 15-second run window allows the hold-queue TTL (5 s) to expire before the second delivery arrives.

Source

//! Audited consumer example — custom `AuditHandler` that writes to stdout (SQS backend).
//!
//! Demonstrates: `MessageHandlerExt::audited` wrapper, custom `AuditHandler`
//! implementation, trace ID propagation across retries.
//!
//! Spins up a LocalStack testcontainer automatically. Requires a running
//! Docker daemon and the `LOCALSTACK_AUTH_TOKEN` environment variable:
//!
//!     LOCALSTACK_AUTH_TOKEN=... cargo run --example sqs_audited_consumer --features aws-sns-sqs,audit
 
use std::time::Duration;
 
use serde::{Deserialize, Serialize};
use shove::sns::SnsConfig;
use shove::*;
use testcontainers::ImageExt;
use testcontainers::runners::AsyncRunner;
use testcontainers_modules::localstack::LocalStack;
 
// ─── Message type ───────────────────────────────────────────────────────────
 
#[derive(Debug, Clone, Serialize, Deserialize)]
struct PaymentEvent {
    payment_id: String,
    amount_cents: u64,
}
 
// ─── Topic ──────────────────────────────────────────────────────────────────
 
define_topic!(
    Payments,
    PaymentEvent,
    TopologyBuilder::new("sqs-audited-payments")
        .hold_queue(Duration::from_secs(5))
        .dlq()
        .build()
);
 
// ─── Handler ────────────────────────────────────────────────────────────────
 
struct PaymentHandler;
 
impl MessageHandler<Payments> for PaymentHandler {
    type Context = ();
    async fn handle(&self, msg: PaymentEvent, metadata: MessageMetadata, _: &()) -> Outcome {
        println!(
            "[handler] payment={} amount=${:.2} attempt={}",
            msg.payment_id,
            msg.amount_cents as f64 / 100.0,
            metadata.retry_count + 1,
        );
        // Simulate a transient failure on first attempt to show trace ID
        // persisting across retries.
        if metadata.retry_count == 0 {
            Outcome::Retry
        } else {
            Outcome::Ack
        }
    }
}
 
// ─── Custom audit handler ───────────────────────────────────────────────────
 
/// Prints every audit record to stdout as JSON.
#[derive(Clone, Default)]
struct StdoutAuditHandler;
 
impl AuditHandler<Payments> for StdoutAuditHandler {
    async fn audit(&self, record: &AuditRecord<PaymentEvent>) -> Result<(), ShoveError> {
        let json = serde_json::to_string_pretty(record).map_err(ShoveError::Serialization)?;
        println!("[audit] {json}");
        Ok(())
    }
}
 
// ─── Main ───────────────────────────────────────────────────────────────────
 
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let auth_token = match std::env::var("LOCALSTACK_AUTH_TOKEN") {
        Ok(t) => t,
        Err(_) => {
            eprintln!(
                "LOCALSTACK_AUTH_TOKEN is not set. This example requires a LocalStack Pro auth \
                 token:\n\n    export LOCALSTACK_AUTH_TOKEN=...\n"
            );
            std::process::exit(1);
        }
    };
 
    // SAFETY: called before any concurrent env access in this process.
    unsafe {
        std::env::set_var("AWS_ACCESS_KEY_ID", "test");
        std::env::set_var("AWS_SECRET_ACCESS_KEY", "test");
        std::env::set_var("AWS_REGION", "us-east-1");
    }
 
    let container = LocalStack::default()
        .with_env_var("LOCALSTACK_AUTH_TOKEN", auth_token)
        .start()
        .await?;
    let port = container.get_host_port_ipv4(4566).await?;
    let endpoint = format!("http://localhost:{port}");
 
    let broker = Broker::<Sqs>::new(SnsConfig {
        region: Some("us-east-1".into()),
        endpoint_url: Some(endpoint),
    })
    .await?;
 
    // ── Declare topology ──
    broker.topology().declare::<Payments>().await?;
    println!("topology declared\n");
 
    // ── Publish a payment ──
    let publisher = broker.publisher().await?;
    let event = PaymentEvent {
        payment_id: "PAY-001".into(),
        amount_cents: 4999,
    };
    publisher.publish::<Payments>(&event).await?;
    println!("published payment\n");
 
    // ── Start audited consumer ──
    //
    // `audited(audit)` wraps the handler in the `Audited` decorator — the
    // supervisor sees a normal `MessageHandler<Payments>`, no API changes needed.
    let mut supervisor = broker.consumer_supervisor();
    supervisor.register::<Payments, _>(
        PaymentHandler.audited(StdoutAuditHandler),
        ConsumerOptions::<Sqs>::new().with_max_retries(3),
    )?;
 
    // Let it process (first attempt retries, second acks), then shut down.
    let outcome = supervisor
        .run_until_timeout(
            async {
                tokio::select! {
                    _ = tokio::time::sleep(Duration::from_secs(15)) => {}
                    _ = tokio::signal::ctrl_c() => {}
                }
            },
            Duration::from_secs(5),
        )
        .await;
 
    println!("done");
    std::process::exit(outcome.exit_code());
}

Walkthrough

Handler with deliberate retry

PaymentHandler returns Outcome::Retry when metadata.retry_count == 0 and Outcome::Ack on subsequent attempts. On SQS, Outcome::Retry extends the message's visibility timeout and routes it through the hold queue (5 s TTL), then redelivers it. The second delivery has retry_count == 1, so the handler acks.

StdoutAuditHandler serialises the full record

StdoutAuditHandler implements AuditHandler\<Payments\> and serialises the complete AuditRecord\<PaymentEvent\> to pretty JSON. The record carries trace_id — a UUID that the framework assigns once per original message and propagates across hold-queue round-trips via the SQS message attribute shove-trace-id. This is what allows the same trace_id to appear on both the retry and the final ack delivery.

15-second run window

The supervisor runs for 15 seconds (longer than the 10-second RabbitMQ equivalent) to ensure the 5-second hold queue TTL fires and the retried message arrives before shutdown. On SQS, LocalStack's polling latency adds additional overhead beyond the bare queue TTL.

Wiring: .audited() unchanged

PaymentHandler.audited(StdoutAuditHandler) — the call is identical to the RabbitMQ version. MessageHandlerExt::audited is backend-agnostic: it wraps any MessageHandler with any AuditHandler into a combined MessageHandler that the supervisor accepts without modification.

What to try next

  • Add .with_max_retries(1) to ConsumerOptions and make PaymentHandler always return Retry — observe the audit record show outcome: "Reject" when the retry limit is hit.
  • Replace StdoutAuditHandler with one that writes to a database or publishes to a second SQS topic.
  • Check the duration_ms field in the audit record and confirm it measures the handler's wall-clock time by adding a tokio::time::sleep inside PaymentHandler::handle.
  • See Guides: Audit for the complete AuditRecord schema.