zoo

package
v0.0.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 15, 2020 License: Apache-2.0 Imports: 14 Imported by: 20

Documentation

Overview

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

Index

Constants

View Source
const (
	CurrentPath = "."
)

Variables

This section is empty.

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)
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL