Browse by type

| Stargazers Over Time | Contributors Over Time |
|---|---|
Pika is a high-performance, large-capacity, multi-tenant, data-persistent elastic KV data storage system using RocksDB as the storage engine. It is fully compatible with the Redis protocol and supports its commonly used data structures, such as string/hash/list/zset/set/geo/hyperloglog/pubsub/bitmap/stream, etc. Redis Interface.
When Redis's in-memory usage exceeds 16GiB, it faces problems such as limited memory capacity, single-threaded blocking, long startup recovery time, high memory hardware costs, easily filled buffers, and high switching costs when one master and multiple replicas fail. The emergence of Pika is not to replace Redis but to complement it. Pika strives to completely comply with the Redis protocol, inherit Redis's convenient operation and maintenance design, and solve the bottleneck problem of Redis running out of memory capacity once the data volume becomes huge by using persistent storage. Additionally, Pika can support master-slave mode using the slaveof command, and it also supports full and incremental data synchronization.
Pika can be deployed in a single-machine master-slave mode (slaveof) or in a Codis cluster mode, allowing for simple scaling and shrinking. Migration from Redis to Pika can be smoothly executed by tools.


![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Pika has been widely adopted by various companies for internal deployments, demonstrating its scalability and reliability. Some notable usage instances include:
Additionally, Pika is utilized by companies such as Xunlei, Xiaomi, Zhihu, New Oriental Education & Technology Group (好未来), Kuaishou, Sohu, Meituan, Maimai, and more. For a comprehensive list of users, you can refer to the official list provided by the Pika project.
These deployments across a diverse range of companies and industries underscore Pika's adaptability and effectiveness in handling large-scale, high-volume data storage requirements.
Users can directly download the latest binary version package from releases.
Linux - CentOS
macOS(Darwin)
gcc g++ supporting C++17 (version >= 9)
tar
2.3.1. Get the source code
bash
git clone https://github.com/OpenAtomFoundation/pika.git
2.3.2. Switch to the latest release version
bash
git tag # Check the latest release tag (e.g., v3.4.1)
git checkout TAG # Switch to the latest version (e.g., git checkout v3.4.1)
2.3.3. Execute compilation
If the machine's gcc version is less than 9, especially on CentOS6 or CentOS7, you need to upgrade the gcc version first. Execute the following commands:
bash sudo yum -y install centos-release-scl sudo yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ scl enable devtoolset-9 bash
For the initial compilation, it is recommended to use the build script build.sh, which checks if the required software is available on the local machine.
bash
./build.sh
Note: The compiled files will be saved in the output directory.
Pika is compiled by default in release mode, which does not support debugging. If debugging is needed, compile in debug mode.
bash
rm -rf output/
cmake -B output -DCMAKE_BUILD_TYPE=Debug
cd output && make
Other components, such as codis, can also be compiled using build.sh.
```bash # Compile codis, default target, build-all ./build.sh codis
# Compile codis, but only build codis-proxy ./build.sh codis codis-proxy
```
bash
./output/pika -c ./conf/pika.conf
If you need to clear the compilation content, you can choose one of the following methods based on the situation:
Method 1: Clean only the current compilation content
bash
cd output && make clean
Method 2: Completely recompile
bash
rm -rf output # regenerate cmake
Setting up Pika Development Environment with CLion
Modify the following configuration items of conf/pika.conf file:
log-path : /data/log/
db-path : /data/db/
db-sync-path : /data/dbsync/
dump-path : /data/dump/
And then execute the following statement to start pika in docker: ```bash docker run -d \ --restart=always \ -p 9221:9221 \ -v "$(pwd)/conf":"/pika/conf" \ -v "/tmp/pika-data":"/data" \ pikadb/pika:v3.3.6
redis-cli -p 9221 "info" ```
If you want to build your own image, we provide a script build_docker.sh to simplify the process.
This script accepts several optional parameters:
-t tag: Specify the Docker tag for the image. By default, the tag is pikadb/pika:.-p platform: Specify the platform for the Docker image. Options include all, linux/amd64, linux/arm, linux/arm64. By default, it uses the current docker platform setting.--proxy: Use a proxy to download packages to speed up the build process. The build will use Alibaba Cloud's image source.--help: Display help information.Here is an example usage:
bash
./build_docker.sh -p linux/amd64 -t private_registry/pika:latest
docker-compose.yaml
pikadb:
image: pikadb/pika:lastest
container_name: pikadb
ports:
- "6379:9221"
volumes:
- ./data/pika:/pika/log
# Specify the configuration file path. If you need to specify a configuration file, specify it here.
# Note: pika.conf should be in the ./deploy/pika directory
#- ./deploy/pika:/pika/conf
- ./data/pika/db:/pika/db
- ./data/pika/dump:/pika/dump
- ./data/pika/dbsync:/pika/dbsync
privileged: true
restart: always
Note: The test results were obtained under specific conditions and scenarios, and may not represent the performance in all environments and scenarios. They are for reference only.
We recommend that you conduct detailed testing of Pika in your own environment based on the usage scenario to assess whether Pika meets your requirements.
Evaluate the upper limit of QPS for Pika under different worker thread counts.
Pika Data Size: 800GB
CPU not bound

Note: The x-axis represents Pika thread count, and the y-axis represents QPS with a value size of 128 bytes. "set3/get7" indicates 30% set and 70% get operations.
From the above graph, it can be observed that setting Pika's worker thread count to 20-24 is more cost-effective.
Evaluate the RTT performance of Pika with the optimal worker thread count (20 threads).
Pika Data Size: 800GB
Value: 128 bytes
```c ====== GET ====== 10000000 requests completed in 23.10 seconds 200 parallel clients 3 bytes payload keep alive: 1 99.89% <= 1 milliseconds 100.00% <= 2 milliseconds 100.00% <= 3 milliseconds 100.00% <= 5 milliseconds 100.00% <= 6 milliseco
$ claude mcp add pikiwidb \
-- python -m otcore.mcp_server <graph>