Code Monkey home page Code Monkey logo

Comments (2)

grepory avatar grepory commented on August 20, 2024

To introduce clustering to sensu-backend, we'll be using static etcd clustering.

Static clustering requires that users assign unique IDs to each member of the cluster and that each member of the cluster know about the rest of the cluster prior to bootstrapping the cluster. Each sensu-backend process must be started with the --cluster-members argument (or by setting the SENSU_CLUSTER_MEMBERS environment variable) with the CSV list of cluster members of the format member_id=scheme://host:port. This is easier if illustrated.

Given a cluster:

The sensu-backend processes on each machine would be started thus:

Machine a:
sensu-backend --id a --etcd-peer-url http://a:2380 --cluster-members a=http://a:2380,b=http://b:2380,c=http://c:2380

Machine b:
sensu-backend --id b --etcd-peer-url http://b:2380 --cluster-members a=http://a:2380,b=http://b:2380,c=http://c:2380

Machine c:
sensu-backend --id c --etcd-peer-url http://c:2380 --cluster-members a=http://a:2380,b=http://b:2380,c=http://c:2380

The cluster member ID of a node cannot change over the course of its life.

If a user is clustering backends, they must specify all three of these flags on the command line, because we cannot guarantee that we generate an ID that matches a peer in the provided cluster member list.

from sensu-go.

grepory avatar grepory commented on August 20, 2024

It's probably worth documenting this for users on Kubernetes.

https://github.com/coreos/etcd-operator/blob/master/doc/best_practices.md

from sensu-go.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.