Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mrasu/cowloon

Multi-tenant database management system
https://github.com/mrasu/cowloon

database multi-tenant

Last synced: 3 months ago
JSON representation

Multi-tenant database management system

Awesome Lists containing this project

README

        

# Cowloon

Multi-tenant database management system.

Cowloon is a management system which realizes ACID and scale-out without pain of distributed system.

# Design

1. App doesn't need to know which tenant belongs to which database.
2. App must specify a tenant at every query to achieve ACID.
3. One database holds multiple tenants' data.
4. One tenant's data belong to only one database (and replicas).
5. Tenant's data can move between databases when needed.
6. Cowloon decides a database to query.

and more.

# Inspired by

* [Vitess](https://github.com/vitessio/vitess)
* [gh-ost](https://github.com/github/gh-ost)

# Feature Plan