TiloBox
Back to directory
LicenseAGPL-3.0
GitHub stars8.5k
Last commit1 weeks ago
Tags6 topics
ObservabilityRustCloud NativeS3Search EngineLog Management
Overview

Why consider Quickwit?

Quickwit is a cost-effective, sub-second search engine written in Rust. It indexes logs, traces, and text directly onto AWS S3, Google Cloud Storage, or MinIO without SSD attachment.

Guided learning

Learn Quickwit by building

Practical setup notes, real use cases, and copy-ready examples in one focused guide.

1 min read 3 sections
In this guide3 sections

Overview of Quickwit

Quickwit decouples compute from storage by indexing and searching data directly on cloud object storage (S3, GCS, Azure Blob, MinIO). Developed in Rust and powered by the Tantivy search library, it cuts log storage costs by up to 10x compared to traditional Elasticsearch clusters.

Running Quickwit via Docker

bash
1docker run -d \
2 --name quickwit \
3 -p 7280:7280 \
4 -v $(pwd)/qwdata:/quickwit/qwdata \
5 quickwit/quickwit:latest run

Access the Quickwit UI on http://localhost:7280/ui.

Creating an Index and Searching

bash
1# Create an index using a schema YAML
2curl -X POST http://localhost:7280/api/v1/indexes -H "Content-Type: application/yaml" --data-binary @tutorial-index.yaml
3
4# Search records
5curl "http://localhost:7280/api/v1/tutorial-index/search?query=status:500"

Quickwit is distributed under the GNU AGPL-3.0 license.

Related tools

More options with a similar category or technology profile.

Quickwit FAQs

Quickwit is listed as a Devops Infrastructure tool on TiloBox. Review the overview, features, and official documentation on this page to decide whether it solves your specific workflow.

Start with the project's GitHub repository and official website for supported installation and deployment instructions. Test the setup with representative data or a small project before rolling it out more widely.

Quickwit is listed under the AGPL-3.0 license. Read the complete license text and the project's notices before using, modifying, or distributing the software.

Production readiness depends on your requirements. Review maintenance activity, security practices, documentation, backup and upgrade procedures, and compatibility with your stack; then validate it in a non-production environment.

Quickwit is listed as an alternative to Elasticsearch. Compare the core workflow, deployment model, integrations, and licensing against your must-have requirements before switching.