Athena on S3
Same bucket. Same Parquet. A query layer that answers in seconds.
Athena already reads the data where it lies, which is the right architecture — the problem is that a needle query means a full scan, and a five-to-ten minute wait per question ends an investigation early. CtrlB keeps the S3-native model and adds compact inverted indexes so a point search reads an index instead of the lake.
- No data movement: CtrlB indexes the Parquet already in your bucket.
- Point searches drop from minutes to sub-second, so investigations branch instead of batching.
- Per-query scan cost falls with the scan volume it no longer has to do.
- SQL stays SQL — the interface your analysts already write.