build: remove restrict to build from non-git-repo (#602)

3 files changed
tree: 23993fd4d8574b8bd09f6ecc68e8d645e02e8f15
  1. .github/
  2. docker/
  3. docs/
  4. rfcs/
  5. scripts/
  6. src/
  7. .asf.yml
  8. .gitignore
  9. .gitmodules
  10. .travis.yml
  11. DISCLAIMER-WIP
  12. LICENSE
  13. NOTICE
  14. README.md
  15. run.sh
README.md

pegasus-logo

Build Status License Releases

Note: The master branch may be in an unstable or even broken state during development. Please use releases instead of the master branch in order to get stable binaries.

Pegasus is a distributed key-value storage system which is designed to be:

  • horizontally scalable distributed using hash-based partitioning
  • strongly consistent: ensured by PacificA consensus protocol
  • high-performance: using RocksDB as underlying storage engine
  • simple: well-defined, easy-to-use APIs

Pegasus has been widely-used in XiaoMi and serves millions of requests per second. It is a mature, active project. We hope to build a diverse developer and user community and attract contributions from more people.

Background

HBase was recognized as the only large-scale KV store solution in XiaoMi until Pegasus came out in 2015 to solve the problem of high latency of HBase because of its Java GC and RPC overhead of the underlying distributed filesystem.

Pegasus targets to fill the gap between Redis and HBase. As the former is in-memory, low latency, but does not provide a strong-consistency guarantee. And unlike the latter, Pegasus is entirely written in C++ and its write-path relies merely on the local filesystem.

Apart from the performance requirements, we also need a storage system to ensure multiple-level data safety and support fast data migration between data centers, automatic load balancing, and online partition split.

After investigating the existing storage systems in the open source world, we could hardly find a suitable solution to satisfy all the requirements. So the journey of Pegasus begins.

To start using Pegasus

See our documentation on Pegasus Website.

Related Projects

Submodules:

Client libs:

Test tools:

Data import/export tools:

Contact

License

Copyright 2020 The Apache Software Foundation. Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0