package zoo

import "github.com/mesos/mesos-go/api/v0/detector/zoo"

Zookeeper-based mesos-master leaderhip detection. Implements support for optional detector.AllMasters interface.

Index

Constants

const (
	CurrentPath = "."
)

Functions

func Bootstrap

func Bootstrap(f func(ZKInterface, <-chan struct{}) (ZKInterface, error)) detector.Option

func MinCyclePeriod

func MinCyclePeriod(d time.Duration) detector.Option

MinCyclePeriod is a functional option that determines the highest frequency of master change notifications

Types

type Connector

type Connector interface {
	Close()
	Children(string) ([]string, *zk.Stat, error)
	ChildrenW(string) ([]string, *zk.Stat, <-chan zk.Event, error)
	Get(string) ([]byte, *zk.Stat, error)
}

Connector Interface to facade zk.Conn type since github.com/samuel/go-zookeeper/zk does not provide an interface for the zk.Conn object, this allows for mocking and easier testing.

type Factory

type Factory interface {
	// contains filtered or unexported methods
}

Factory is an adapter to trap the creation of zk.Conn instances since the official zk API does not expose an interface for zk.Conn.

type MasterDetector

type MasterDetector struct {
	// contains filtered or unexported fields
}

Detector uses ZooKeeper to detect new leading master.

func NewMasterDetector

func NewMasterDetector(zkurls string, options ...detector.Option) (*MasterDetector, error)

Internal constructor function

func (*MasterDetector) Cancel

func (md *MasterDetector) Cancel()

func (*MasterDetector) Detect

func (md *MasterDetector) Detect(f detector.MasterChanged) (err error)

the first call to Detect will kickstart a connection to zookeeper. a nil change listener may be spec'd, result of which is a detector that will still listen for master changes and record leaderhip changes internally but no listener would be notified. Detect may be called more than once, and each time the spec'd listener will be added to the list of those receiving notifications.

func (*MasterDetector) Done

func (md *MasterDetector) Done() <-chan struct{}

returns a chan that, when closed, indicates termination of the detector

type ZKInterface

type ZKInterface interface {
	Stopped() <-chan struct{}
	Stop()
	Data(string) ([]byte, error)
	WatchChildren(string) (string, <-chan []string, <-chan error)
}

Source Files

client2.go detect.go doc.go plugin.go types.go

Directories

PathSynopsis
api/v0/detector/zoo/mock
Version
v0.0.11 (latest)
Published
May 15, 2020
Platform
linux/amd64
Imports
14 packages
Last checked
4 hours ago

Tools for package owners.