# search Tantivy-backed full-text search over log messages. Phase 1's answer to "grep across everything," separate from ClickHouse's structured/ aggregation queries. ## Why a separate service, not embedded in ingest Tantivy is a Rust library with no maintained Go bindings — using it from `ingest` (Go) would mean cgo-bridging to a compiled Rust cdylib, exactly the fragile FFI complexity CLAUDE.md's "prefer boring, well-understood dependencies... operators need to trust it" principle steers away from. It would also couple ClickHouse-write latency to Tantivy-write latency in the same request path. See `/docs/architecture.md` for the fuller tradeoff writeup (dual-write vs. second-consumer-group) from Phase 1 planning. ## How it fits together ``` ingest (gRPC front end) --> Redpanda (sentry.logs.raw) --> ingest's ClickHouse-writer consumer --> ClickHouse \ `--> search's own consumer --> Tantivy index ``` `search` reads the *same* Redpanda topic `ingest`'s ClickHouse-writer consumer reads, as an independent consumer in spirit (own offset tracking, own failure domain — see "Offset tracking" below) even though it's a completely separate process/service. If Tantivy indexing lags or crashes, ClickHouse ingestion is completely unaffected. `api` (or, for a multi-tenant deployment, `enterprise-api` — see `/enterprise/README.md`) calls `search`'s `SearchService.Search` gRPC RPC (see `/proto/sentry/search/v1/search.proto`) to resolve a free-text query into matching `record_id`s, then joins those back against ClickHouse's `logs.record_id` column (see `/storage/migrations/0002_add_record_id.sql`) to get full rows. `search` only ever returns IDs, never row data — it stays a pure text index, not a second copy of the row. ## Per-tenant indices (Phase 4) — read-side only `SearchRequest.tenant_id` (empty by default) selects which index `src/registry.rs`'s `IndexRegistry` searches: empty resolves to the single default index every deployment already had; a non-empty value opens (on first use) a dedicated index under `TENANTS_INDEX_PATH` (default `/var/lib/sentry-search/tenants/`, matching `deploy/operator`'s and `enterprise/internal/rbacstore`'s existing path convention). `tenant_id` is set only by a trusted server-side caller (`enterprise/internal/searchclient`, from the authenticated request identity) — never a value a browser/client controls. **This is read-side isolation only.** `consumer.rs`'s Redpanda consumer — the only thing that ever *writes* into an index — still only ever writes into the single default index, because `ingest`/the log-record schema itself carries no tenant concept yet. A newly-opened tenant index starts, and stays, empty until something upstream of this service becomes tenant-aware on the write side too — a real, disclosed gap, not an oversight; see `/docs/security/threat-model.md`. ## Offset tracking: why this isn't a Kafka consumer group `rskafka` (chosen for being pure Rust, no cgo — consistent with why `ingest` chose `segmentio/kafka-go` over `confluent-kafka-go`) is a low-level client: it doesn't implement Kafka's broker-side consumer-group coordination protocol the way `kafka-go` or `librdkafka` do. So `search` tracks its own per-partition offsets in a plain JSON file next to the Tantivy index (`offsets.rs`), persisted after each fetched batch. This is deliberately best-effort, not exactly-once: if the process dies between processing a record and persisting its offset, that record gets reprocessed after restart. This is safe because `SearchIndex::upsert` is **delete-then-add on `record_id`** — Tantivy segments are immutable, so this is the standard idiom for updates anyway, and it happens to make reprocessing idempotent for free. Partition count is read from `REDPANDA_TOPIC_PARTITIONS` (must match what `/transport/provision-topics.sh` actually created — same kind of documented cross-component contract as the topic name itself), not discovered dynamically. ## Query syntax Whatever Tantivy's own `QueryParser` supports against the `message` field: plain terms, `"exact phrase"` queries, and `foo*` wildcards. Not documented further here because it's Tantivy's syntax, not Sentry's — see [Tantivy's query parser docs](https://docs.rs/tantivy/latest/tantivy/query/struct.QueryParser.html) for the full grammar. No unified query language yet; that's Phase 2. ## Configuration Environment variables (see `src/config.rs`): | Var | Default | Purpose | |---|---|---| | `GRPC_LISTEN_ADDR` | `0.0.0.0:50052` | Full socket address — Rust's parser needs one, unlike Go's `:PORT` shorthand `ingest`/`api` use | | `REDPANDA_BROKERS` | `localhost:9092` | Comma-separated broker list | | `REDPANDA_TOPIC` | `sentry.logs.raw` | Must match `/ingest`'s topic | | `REDPANDA_TOPIC_PARTITIONS` | `6` | Must match what `/transport/provision-topics.sh` created | | `INDEX_PATH` | `/var/lib/sentry-search/index` | Default (non-tenant) Tantivy index directory | | `TENANTS_INDEX_PATH` | `/var/lib/sentry-search/tenants` | Per-tenant index directories live under here, one subdirectory per tenant_id (Phase 4) | | `OFFSETS_PATH` | `/var/lib/sentry-search/offsets.json` | Offset tracking file | | `COMMIT_INTERVAL_MS` | `2000` | How often buffered writes become searchable | ## Building & testing ```sh cargo build --release cargo clippy --all-targets -- -D warnings cargo test ``` `index.rs`'s tests run against a real (temp-directory) Tantivy index — no external service needed, unlike ClickHouse. They cover the delete-then-add idempotency, phrase queries, result limits, and the before-commit/after-commit visibility boundary. `registry.rs`'s tests are the same shape and cover the actual adversarial claim: real per- tenant indices, real documents, and a search scoped to one tenant returning zero results for another tenant's matching document (`tenant_index_is_isolated_from_default_and_other_tenants`) — all of this, unlike almost everything else in Phase 4, was genuinely run in the environment this was built in, not just written. `consumer.rs` (the rskafka wiring) is not unit-tested — that needs a real Redpanda, same category of gap as `/ingest`'s `kafka.Reader`/`kafka.Writer` wiring, and is exercised by the docker-compose end-to-end flow instead. ```sh # from the repo root, not search/ docker build -f search/Dockerfile -t sentry-search . ```