|
1 | 1 | --- |
2 | | -title: What is Quickwit? |
| 2 | +title: Introduction |
3 | 3 | slug: / |
4 | 4 | sidebar_position: 1 |
5 | 5 | --- |
6 | 6 |
|
7 | | -Quickwit is a distributed search engine built from the ground up to offer cost-efficiency and high reliability. By mere mortals for mere mortals, Quickwit's architecture is as simple as possible[^1]. |
| 7 | +Quickwit is a distributed search engine designed from the ground up to offer cost-efficiency and high reliability on large data sets. |
8 | 8 |
|
9 | | -Quickwit is written in Rust and built on top of the mighty [tantivy](https://github.com/tantivy-search/tantivy) library. We designed it to index large datasets. |
| 9 | +Quickwit is particularly well-suited for dealing with large, immutable datasets and relatively low average QPS<sup>[1](#footnote1)</sup>. Its benefits are most apparent in multi-tenancy or multi-index settings. |
10 | 10 |
|
11 | | -## Why Quickwit? |
| 11 | +Common use cases for Quickwit include: |
12 | 12 |
|
13 | | -Quickwit is born from the idea that today's search engines are hard to manage and uneconomical when dealing with large datasets and a low QPS[^2] rate. Its benefits are most apparent in a multitenancy or a multi-index setting. |
| 13 | +- Searching through logs, from small amounts of data to terabytes. |
| 14 | +- Adding full-text search capabilities to [OLAP databases such as ClickHouse](./guides/add-full-text-search-to-your-olap-db.md). |
| 15 | +- Searching through backups sitting on your cloud storage by adding Quickwit index files on your same storage. |
14 | 16 |
|
15 | | -Quickwit allows true decoupled compute and storage. |
16 | | -We designed it to search straight from object storage like Amazon S3 in a stateless manner. |
| 17 | +# Key features of Quickwit |
17 | 18 |
|
18 | | -Imagine hosting an arbitrary amount of indexes on Amazon S3 for $25 per TB/month and querying them with the same pool of search servers and with a subsecond latency. |
| 19 | +Quickwit is designed to search straight from object storage allowing true decoupled compute and storage. Here is a non-exhaustive list of Quickwit’s key features: |
19 | 20 |
|
20 | | -Not only is Quickwit more cost-efficient, but search clusters are also easier to operate. One can add or remove search instances in seconds. You can also effortlessly index a massive amount of historical data using your favorite batch technology. Last but not least, Multi-tenant search is now cheap and painless. |
| 21 | +- **Scalable distributed search:** Host an arbitrary number of indexes on Amazon S3 and answer search queries in less than a second with a small pool of stateless search instances. |
| 22 | +- **Stream indexing:** Ingest TB of data from your favorite distributed event streaming service. As of today, Quickwit supports Apache Kafka natively. The next releases will bring support for more platforms. |
| 23 | +- **Fault-tolerant architecture that won't lose data:** Quickwit achieves **exactly-once** processing for indexing and safely stores your data on highly reliable object storage services such as Amazon S3. |
| 24 | +- **Cloud-native, easy to operate:** Thanks to true decoupled compute and storage, search instances are stateless, add or remove search nodes within seconds. |
| 25 | +- **Sub-second full-text search on cloud / distributed storage:** Quickwit Search re-designed indexing and index data structure to open it in less than 60ms on Amazon S3**.** |
| 26 | +- **Time-based sharding:** Quickwit shards data by time when enabled. And you can use a second dimension to shard data thanks to our [tags feature](./design/querying.md). Time-based queries only access splits (a data piece of the index) that match the time range of the query which leads to significant performance improvements. |
| 27 | +- **Painless multi-tenant search:** Create indexes for each tenant without hurting query performance. Or group tenants into one index and use tagging to prune irrelevant splits for your tenant query to improve significantly performance. |
21 | 28 |
|
22 | | -- [Take a look at the feature set](overview/features.md) |
23 | | -- [Get started](getting-started/quickstart.md) |
| 29 | +# When to use Quickwit |
24 | 30 |
|
| 31 | +Quickwit should be a good match if your use case has some of the following characteristics: |
25 | 32 |
|
26 | | ---- |
27 | | -[^1] ... But not one bit simpler. |
| 33 | +- Your documents are immutable. |
| 34 | +- You are targeting query latencies of 100ms to a few seconds. |
| 35 | +- You have a low average QPS<sup>[1](#footnote1)</sup>, typically < 10 QPS on average over the month. This is the case for most search use cases as long as search is not public: enterprise search, log search, email search, security search, ... |
| 36 | +- Your data has a time component. Quickwit includes optimizations and design choices specifically related to time. |
| 37 | +- You want to load data from Kafka, local files (and soon directly from object storage like Amazon S3). |
| 38 | +- You want full-text search in a multi-tenant environment. |
| 39 | + |
| 40 | +Use cases where you would likely *not* want to use Quickwit include: |
| 41 | + |
| 42 | +- You need a low-latency search for e-commerce websites. |
| 43 | +- Your data are mutable. |
| 44 | + |
| 45 | +# Learn more |
28 | 46 |
|
29 | | -[^2] QPS stands for Queries per second. It is a standard measure of the amount of search traffic. |
| 47 | +- [Quickstart](./get-started/quickstart.md) |
| 48 | +- [Architecture](./design/architecture.md) |
| 49 | +- [0.2 Release](https://quickwit.io/blog/quickwit-0.2) |
| 50 | + |
| 51 | + |
| 52 | +--- |
| 53 | +<a name="footnote1">1.</a>: QPS stands for Queries per second. It is a standard measure of the amount of search traffic. Low average QPS is typically under 10. This is the case for most search use cases as long as search is not public: enterprise search, log search, email search, security search, ... |
0 commit comments