kiminh / pika

Pika is a NoSQL database compatible with redis which is developed by Qihoo's infrastructure team.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YnbjQf.png

Build Status Downloads

Stargazers Over Time Contributors Over Time
Stargazers over time Contributor over time

Introduction中文

Pika is a persistent huge storage service , compatible with the vast majority of redis interfaces (details), including string, hash, list, zset, set and management interfaces. With the huge amount of data stored, redis may suffer for a capacity bottleneck, and pika was born for solving it. Except huge storage capacity, pika also support master-slave mode by slaveof command, including full and partial synchronization. You can also use pika together with twemproxy or codis(pika has supported data migration in codis,thanks left2right and fancy-rabbit) for distributed Redis solution

UserList

Qihoo 360game Weibo Garena
Apus Ffan Meituan XES
HX XL GWD DYD
YM XM XL YM
MM VIP LK KS

More

Feature

  • huge storage capacity
  • compatible with redis interface, you can migrate to pika easily
  • support master-slave mode (slaveof)
  • various management interfaces

For developer

Releases

The User can download the binary release from releases or compile the source release.

Compile

Supported platforms

  • linux - CentOS

  • linux - Ubuntu

  • macOS

Dependencies

  • gcc g++, C++17 support (version>=7)
  • make
  • cmake (version>=3.18)
  • autoconf
  • tar

Compile

Upgrade your gcc to version at least 7 to get C++17 support.

  1. Get the source code
  git clone https://github.com/OpenAtomFoundation/pika.git
  1. Checkout the latest release version
  a. exec git tag to get the latest release tag
  b. exec git checkout TAG to switch to the latest version
  1. Compile

Please run the script build.sh before you compile this db to check the environment and build this repo. If the gcc version is later than 7, such as CentOS6 or centOS7, you need to upgrade the gcc version first

Do as follows

  a. sudo yum -y install centos-release-scl
  b. sudo yum -y install devtoolset-7-gcc devtoolset-7-gcc-c++
  c. scl enable devtoolset-7 bash

Please run the script build.sh before you compile this db to check the environment and build this repo.

  ./build.sh

The compilation result is in the 'output' directory.

By default the compilation process is in 'release' mode. If you wanna debug this db,you need to compile it in 'debug' mode.

  rm -fr output
  cmake -B output -DCMAKE_BUILD_TYPE=Debug
  cd output && make

Usage

./output/pika -c ./conf/pika.conf

Clean compilation

  If wanna clean up the compilation content, you can choose one of the following two methods as your will.
  1. exec `cd output && make clean` clean pika Compile content
  2. exec `rm -fr output` rebuild cmake (for complete recompilation)

Developing and Debugging with Pika

Dockerization

Run with docker

docker run -d \
  --restart=always \
  -p 9221:9221 \
  -v <log_dir>:/pika/log \
  -v <db_dir>:/pika/db \
  -v <dump_dir>:/pika/dump \
  -v <dbsync_dir>:/pika/dbsync \
  pikadb/pika:v3.3.6

redis-cli -p 9221 "info"

Meaning of dirs:

  • log_dir: Directory to store log files of Pika.
  • db_dir: Directory to store the data of Pika.
  • dump_dir: Directory to stored dump files that generated by command "bgsave".
  • dbsync_dir: Pika db sync path.

Build Image

If you want to build the image yourself, we have provided a script build_docker.sh to simplify this process.

The script accepts several optional arguments:

  • -t tag: Specify the Docker tag for the image. By default, the tag is pikadb/pika:<git tag>.
  • -p platform: Specify the platform for the Docker image. By default is current docker's platform. all, linux/amd64, linux/arm, linux/arm64.
  • --proxy: Use a proxy to download packages to speed up the build process. This is particularly useful if you are in China.
  • --help: Display help information.

Here is an example usage of the script:

./build_docker.sh -p linux/amd64 -t private_registry/pika:latest

Use pika-operator to deploy

You can use the pika-operator to easily deploy pika in a Kubernetes environment.

Please note that this operator is NOT recommended for use in a production environment.

Local Deploy:

  1. install MiniKube
  2. deploy pika-operator
cd tools/pika_operator
make minikube-up # run this if you don't have a minikube cluster
make local-deploy
  1. create pika instance
cd tools/pika_operator
kubectl apply -f examples/pika-sample/

# check pika status
kubectl get pika pika-sample

# get pika instance info
kubectl run pika-sample-test --image redis -it --rm --restart=Never \
  -- /usr/local/bin/redis-cli -h pika-sample -p 9221 info

Performance

More details on Performance.

Observability

Metrics

  1. Pika Server Info: system, ip, port, run_id, config file etc.
  2. Pika Data Info: db size, log size, memory usage etc.
  3. Pika Client Info: The number of connected clients.
  4. Pika Stats Info: status information of compact, slot, etc.
  5. Pika Network Info: Incoming and outgoing traffic and rate of client and master-slave replication.
  6. Pika CPU Info: cpu usage.
  7. Pika Replication Info: Status information of master-slave replication, binlog information.
  8. Pika Keyspace Info: key information of five data types.
  9. Pika Command Exec Count Info: command execution count.
  10. Pika Command Execution Time: Time-consuming command execution.
  11. RocksDB Metrics: RocksDB information of five data types, includes Memtable, Block Cache, Compaction, SST File, Blob File etc.

More details on Metrics.

Documents

  1. doc

Contact Us

QQ group: 294254078

About

Pika is a NoSQL database compatible with redis which is developed by Qihoo's infrastructure team.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 70.2%Language:Go 15.8%Language:Tcl 6.6%Language:Python 2.4%Language:Shell 1.0%Language:JavaScript 0.9%Language:CMake 0.7%Language:HTML 0.7%Language:Smarty 0.5%Language:Makefile 0.4%Language:C 0.3%Language:Gnuplot 0.2%Language:CSS 0.1%Language:TeX 0.1%Language:Dockerfile 0.1%