In this blog, we evaluate EloqKV as an in-memory cache, focusing on its single-node performance. We compare EloqKV with Redis, a widely used in-memory data store, and DragonflyDB, a newer option boasting high performance due to its multi-threaded architecture and optimized implementation leveraging modern innovations.
All benchmarks were conducted on AWS (region: us-east-1) EC2 instances with Ubuntu 22.04. The memtier-benchmark tool was used to generate workloads.
Single Node Performance
We compare EloqKV with Redis and DragonflyDB in memory-only mode, without enabling persistent storage or transactional features. Both Redis and DragonflyDB have limited persistency capabilities. Redis offers logging (AOF) and checkpointing (RDB), but AOF is rarely configured to fsync on every write due to performance issues. RDB only periodically saves in-memory state, which may cause data loss if a node crashes. DragonflyDB supports only checkpointing, not AOF. Since Redis and DragonflyDB are typically used as in-memory caches, we benchmarked EloqKV in the same configuration.
Hardware and Software Configurations
Server Machine:
Service | Node type | Node count |
---|---|---|
Redis 7.2.5 | c7g.8xlarge | 1 |
DragonflyDB 1.21.2 | c7g.8xlarge | 1 |
EloqKV 0.7.4 | c7g.8xlarge | 1 |
Client - Memtier | c6gn.8xlarge | 1 |
We follow the official instructions to setup EloqKV, DragonflyDB and Redis.
For Redis, we disable AOF and RDB persistency.
redis-server --save "" --appendonly no
For DragonflyDB, we only need to disable checkpointing since it does not yet support logging.
dragonfly --dbfilename=
For EloqKV, we disable persistent storage and turn off WAL (Write-Ahead Logging) in its config.ini
file.
# set it to off to turn off persistent storage
enable_data_store=off
# set it to off to turn off WAL
enable_wal=off
Write-Only Workload
To evaluate EloqKV’s write performance, we run memtier_benchmark
with ratio of 1:0 (write-only) with the following configuration:
memtier_benchmark -t $thread_num -c $client_num -s $server_ip -p $server_port --distinct-client-seed --ratio=1:0 --key-prefix="kv_" --key-minimum=1 --key-maximum=5000000 --random-data --data-size=128 --hide-histogram --test-time=300
-t
: Number of threads, which was set to a fixed value of 32.-c
: Number of clients per thread. We configured it to 4, 8, 16 and 32 to evaluate different concurrency levels. This resulted in total concurrency of 128, 256, 512 and 1024, calculated asthread_num × client_num
.--ratio
: Set:Get ratio, 1:0 for write-only workload.