All Projects → Quentin-M → Etcd Cloud Operator

Quentin-M / Etcd Cloud Operator

Licence: apache-2.0
Deploying and managing production-grade etcd clusters on cloud providers: failure recovery, disaster recovery, backups and resizing.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Etcd Cloud Operator

Etcd
Distributed reliable key-value store for the most critical data of a distributed system
Stars: ✭ 38,238 (+25563.09%)
Mutual labels:  database, etcd, distributed-database, distributed-systems
Dbtester
Distributed database benchmark tester
Stars: ✭ 214 (+43.62%)
Mutual labels:  database, etcd, distributed-database, distributed-systems
Zookeeper
Apache ZooKeeper
Stars: ✭ 10,061 (+6652.35%)
Mutual labels:  database, distributed-systems, distributed-database
Trino
Official repository of Trino, the distributed SQL query engine for big data, formerly known as PrestoSQL (https://trino.io)
Stars: ✭ 4,581 (+2974.5%)
Mutual labels:  database, distributed-database, distributed-systems
Scalardb
Universal transaction manager
Stars: ✭ 178 (+19.46%)
Mutual labels:  database, distributed-database, distributed-systems
radondb-mysql-kubernetes
Open Source,High Availability Cluster,based on MySQL
Stars: ✭ 146 (-2.01%)
Mutual labels:  operator, k8s, high-availability
Aws Service Operator
AWS Service Operator allows you to create AWS resources using kubectl.
Stars: ✭ 750 (+403.36%)
Mutual labels:  aws, operator, k8s
Postgres Operator
Production PostgreSQL for Kubernetes, from high availability Postgres clusters to full-scale database-as-a-service.
Stars: ✭ 2,166 (+1353.69%)
Mutual labels:  database, operator, high-availability
Linstor Server
High Performance Software-Defined Block Storage for container, cloud and virtualisation. Fully integrated with Docker, Kubernetes, Openstack, Proxmox etc.
Stars: ✭ 374 (+151.01%)
Mutual labels:  operator, high-availability, k8s
Corfudb
A cluster consistency platform
Stars: ✭ 539 (+261.74%)
Mutual labels:  database, distributed-database, distributed-systems
Rqlite
The lightweight, distributed relational database built on SQLite
Stars: ✭ 9,147 (+6038.93%)
Mutual labels:  database, distributed-database, distributed-systems
Foundatio
Pluggable foundation blocks for building distributed apps.
Stars: ✭ 1,365 (+816.11%)
Mutual labels:  aws, distributed-systems
Adaptdl
Resource-adaptive cluster scheduler for deep learning training.
Stars: ✭ 100 (-32.89%)
Mutual labels:  aws, distributed-systems
Awesome Bigdata
A curated list of awesome big data frameworks, ressources and other awesomeness.
Stars: ✭ 10,478 (+6932.21%)
Mutual labels:  database, distributed-database
Aws Operator
Manages Kubernetes clusters running on AWS
Stars: ✭ 110 (-26.17%)
Mutual labels:  aws, operator
Antsdb
AntsDB is a low latency, high concurrency, MySQL compliant SQL layer for HBase
Stars: ✭ 99 (-33.56%)
Mutual labels:  database, distributed-database
Etcd Operator
etcd operator creates/configures/manages etcd clusters atop Kubernetes
Stars: ✭ 1,579 (+959.73%)
Mutual labels:  etcd, operator
Moha
MoHA(Mobike High Availability): A MySQL/Postgres high availability supervisor
Stars: ✭ 117 (-21.48%)
Mutual labels:  etcd, high-availability
Etcd Backup Restore
Collection of components to backup and restore the Etcd of a Kubernetes cluster
Stars: ✭ 99 (-33.56%)
Mutual labels:  aws, etcd
Radon
RadonDB is an open source, cloud-native MySQL database for building global, scalable cloud services
Stars: ✭ 1,584 (+963.09%)
Mutual labels:  database, distributed-database

etcd-cloud-operator

Maintained by a former CoreOS engineer and inspired from the etcd-operator designed for Kubernetes, the etcd-cloud-operator automatically bootstraps, monitors, snapshots and recovers etcd clusters on cloud providers.

Used in place of the etcd binary and with minimal configuration, the operator handles the configuration and lifecycle of etcd, based on data gathered from the cloud provider and the status of the etcd cluster itself.

In other words, the operator operator is meant to help human operators sleep at night, while their mysterious etcd data store keeps running safely, even in the event of process, instance, network, or even availability-zone wide failures.

Features

  • Resize: By abstracting cluster management, resizing the cluster becomes straightforward as the underlying auto-scaling group can simply be scaled as desired.

  • Snapshots: Periodically, snapshots of the entire key-value space are captured, from each of the etcd members and uploaded to an encrypted external storage, allowing the etcd (or human) operator to restore the store at a later time, in any etcd cluster or instance.

  • Failure recovery: Upon failure of a minority of the etcd members, the managed members automatically restarts and rejoins the cluster without breaking quorum or causing visible downtime - First by simply trying to rejoin with their existing data set, otherwise trying to join as a new member with a clean state, or by replacing the entire instance if necessary.

  • Disaster recovery: In the event of a quorum loss, consequence of the simultaneous failure of a majority of the members, the operator coordinates to snapshot any live members and cleanly stop then, before seeding a new cluster from the latest data revision available once the expected amount of instances are ready to start again.

  • ACL support: A user can configure the ACL of etcd by providing an init-acl config in the config file. See init-acl.md for more information.

The operator and etcd cluster can be easily configured using a YAML file. The configuration notably includes clients/peers TLS encryption/authentication, with the ability to automatically generate self-signed certificates if encryption is desired but authentication is not.

A changelog is maintained at CHANGELOG.md.

How to try it?

Running a managed etcd cluster using the operator is simply a matter of running the operator binary in a supported auto-scaling group (as of today, AWS and Kubernetes only).

  • AWS: You will need to provide IAM credentials with the following capabilities in the container's environment, scoped to the appropriate instances: "ec2:DescribeInstances" "autoscaling:DescribeAutoScalingGroups" "autoscaling:DescribeAutoScalingInstances"

  • Kubernetes: You can run the etcd-cloud-operator in a statefulset, but you will need to provide a few environment variables. See the Readme for the sts provider. The easiest way to get to going is to use the included helm chart.

A Terraform module is available to easily bring up production-grade etcd clusters managed by the the operator out, and integrate them into your infrastructure.

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].