All Projects → apache → Incubator Pegasus

apache / Incubator Pegasus

Licence: apache-2.0
['pɛgəsəs] A distributed key-value storage system developed and maintained by Xiaomi Cloud Storage Team.

Projects that are alternatives of or similar to Incubator Pegasus

skytable
Skytable is an extremely fast, secure and reliable real-time NoSQL database with automated snapshots and TLS
Stars: ✭ 696 (-48.29%)
Mutual labels:  nosql, distributed-database, key-value-store
Immortaldb
🔩 A relentless key-value store for the browser.
Stars: ✭ 2,962 (+120.06%)
Mutual labels:  storage, key-value-store
foundationdb-dotnet-client
C#/.NET Binding for FoundationDB Client API
Stars: ✭ 118 (-91.23%)
Mutual labels:  distributed-database, key-value-store
Pufferdb
🐡 An Android & JVM key-value storage powered by Protobuf and Coroutines
Stars: ✭ 91 (-93.24%)
Mutual labels:  storage, key-value-store
toplingdb
ToplingDB is a cloud native LSM Key-Value Store with searchable compression algo and distributed compaction
Stars: ✭ 631 (-53.12%)
Mutual labels:  nosql, distributed-database
elara
Elara DB is an easy to use, lightweight key-value database that can also be used as a fast in-memory cache. Manipulate data structures in-memory, encrypt database files and export data. 🎯
Stars: ✭ 93 (-93.09%)
Mutual labels:  nosql, storage
Sharedhashfile
Share Hash Tables With Stable Key Hints Stored In Memory Mapped Files Between Arbitrary Processes
Stars: ✭ 380 (-71.77%)
Mutual labels:  nosql, key-value-store
docs
Source code of the ArangoDB online documentation
Stars: ✭ 18 (-98.66%)
Mutual labels:  nosql, distributed-database
Sleekdb
Pure PHP NoSQL database with no dependency. Flat file, JSON based document database.
Stars: ✭ 450 (-66.57%)
Mutual labels:  storage, nosql
Corfudb
A cluster consistency platform
Stars: ✭ 539 (-59.96%)
Mutual labels:  nosql, distributed-database
Redix
a persistent real-time key-value store, with the same redis protocol with powerful features
Stars: ✭ 907 (-32.62%)
Mutual labels:  nosql, key-value-store
DBMSology
The Paper List on Design and Implmentation of System Software
Stars: ✭ 67 (-95.02%)
Mutual labels:  storage, key-value-store
maricutodb
PHP Flat File Database Manager
Stars: ✭ 23 (-98.29%)
Mutual labels:  nosql, key-value-store
lmdb-js
Simple, efficient, ultra-fast, scalable data store wrapper for LMDB
Stars: ✭ 270 (-79.94%)
Mutual labels:  nosql, key-value-store
Keyvast
KeyVast - A key value store
Stars: ✭ 33 (-97.55%)
Mutual labels:  nosql, key-value-store
Dynomite
A generic dynamo implementation for different k-v storage engines
Stars: ✭ 3,830 (+184.55%)
Mutual labels:  nosql, distributed-database
Tera
An Internet-Scale Database.
Stars: ✭ 1,846 (+37.15%)
Mutual labels:  storage, nosql
Cassandra Operator
Kubernetes operator for Apache Cassandra
Stars: ✭ 215 (-84.03%)
Mutual labels:  storage, nosql
Hawk
✔️ Secure, simple key-value storage for Android
Stars: ✭ 3,827 (+184.32%)
Mutual labels:  storage, key-value-store
Infinispan
Infinispan is an open source data grid platform and highly scalable NoSQL cloud data store.
Stars: ✭ 862 (-35.96%)
Mutual labels:  nosql, key-value-store

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.

Apache 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

Background

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.

Features

  • Persistence of data: Each write is replicated three-way to different ReplicaServers before responding to the client. Using PacificA protocol, Pegasus has the ability for strong consistent replication and membership changes.

  • Automatic load balancing over ReplicaServers: Load balancing is a builtin function of MetaServer, which manages the distribution of replicas. When the cluster is in an inbalance state, the administrator can invoke a simple rebalance command that automatically schedules the replica migration.

  • Cold Backup: Pegasus supports an extensible backup and restore mechanism to ensure data safety. The location of snapshot could be a distributed filesystem like HDFS or local filesystem. The snapshot storing in the filesystem can be further used for analysis based on pegasus-spark.

  • Eventually-consistent intra-datacenter replication: This is a feature we called duplication. It allows a change made in the local cluster accesible after a short time period by the remote cluster. It help achieving higher availability of your service and gaining better performance by accessing only local cluster.

To start using Pegasus

See our documentation on Pegasus Website.

Client drivers

Pegasus has support for serveral languages:

Contact us

  • Send mails to Apache Pegasus dev mailing list: [email protected]. This is the place where topics around development, community, and problems are officially discussed. Please remember to subsribe the mail list via [email protected].

  • Github Issues: submit an issue when you have any idea to improve Pegasus, and when you encountered some bugs or problems.

Related Projects

Submodules:

Test tools:

Data import/export tools:

License

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].