Click to learn more about RediSearch: RediSearch: A High Performance Search Engine as a Redis Module white paper
RediSearch is a distributed full-text search and aggregation engine built as a module on top of Redis. It enables users to execute complex search queries on their Redis dataset in an extremely fast manner. The unique architecture of RediSearch, which was written in C and built from the ground up on optimized data structures, makes it a true alternative to other search engines in the market. It works great as a standalone search engine for indexing and for retrieval of searchable data.
When we first launched RediSearch, we benchmarked it against popular search engines like Elasticsearch and Solr to test how powerful the engine is. This time, we decided to try a slightly different benchmark in order to (a) give you a clear, reproducible setup, with all search engines optimized to provide their best performance and (b) simulate multiple real life scenarios based on what we see from our RediSearch users.
In this Search benchmark, we compared RediSearch to Elasticsearch over two use cases:
We first indexed 5.6 million docs (5.3GB) from Wikipedia and then performed two-word search queries over the indexed dataset.
As you can see in the figure below, RediSearch built its index in 221 seconds versus 349 seconds for Elasticsearch, or 58% faster.
Once the dataset was indexed, we launched two-word search queries using 32 clients running on a dedicated load-generator server. As you can see in the figure below, RediSearch throughput reached 12.5K ops/sec compared to 3.1K ops/sec with Elasticsearch, or x4 faster. Furthermore, RediSearch latency was slightly better, at 8msec on average compared to 10msec with Elasticsearch.
Here, we simulated a multi-tenant e-commerce application where each tenant represented a product category and maintained its own index. For this benchmark, we built 50K indices (or products), which each stored up to 500 documents (or items), for a total of 25 million docs. RediSearch built the indices in just 201 seconds, while running an average of 125K indices/sec. However, Elasticsearch crashed after 921 indices and clearly was not designed to cope with this load.
Cloud Instance Type | vCPU | Mem (GiB) | Network |
---|---|---|---|
One AWS c4.8xlarge: One for the load-generator and one for the search engine | 36 | 60 | 10 Gigabit |
Name | Description and Source | #docs | size |
---|---|---|---|
wikidump | Date: Feb 7, 2019 | 5.6M | 5.3 GB |
Name | Value |
---|---|
Number of shards |
|
Doc table size | 10M |
Name | Value |
---|---|
Number of shards | 5 |
JVM settings (Xms and Xmx) | 25GB |
index.refresh_interval | -1 |
index.number_of_replicas | 0 |
Indices.queries.cache.size and index.queries.cache.enabled | Like mentioned here |
Name | Value |
---|---|
RediSearch | Version 1.4.3 |
Elasticsearch | Version 6.6.0 with Lucene version 7.6.0 |
RediSearchBenchmark | Benchmark code here |
We benchmarked RediSearch and Elasticsearch for the following use cases:
Elasticsearch is a great feature-rich search product created by the great people at Elastic.co, but when it comes to performance, it has inherent architecture deficiencies, as summarized by the table below:
Component | RediSearch | Elasticsearch |
---|---|---|
Search engine | Dedicated engine based on modern and optimized data-structures | based on Lucene engine |
Programming language | C-based, extremely optimized | Java |
Memory technology | Runs natively on DRAM and Persistent Memory | Disk-based with a caching option |
Protocol | The optimized RESP (REdis Serialization Protocol) | HTTP |
Read more about RediSearch here and the technology behind it. To get started with RediSearch – try our Redis Cloud Pro here or download Redis Enterprise Software here.
Following feedback from readers we updated the reference to the wikipedia dataset and added a link to the benchmark source code for reproduction purposes. We would be happy to get more feedback if any.