Documentation ¶
Overview ¶
This file is largely a copy of https://github.com/prometheus/prometheus/blob/master/util/treecache/treecache.go, minus the external Prometheus dependencies. I will try my bet to keep these up to date if any changes are made to the original file
Index ¶
Constants ¶
const DefaultInitialUriWatchTimeout = 10 * time.Second
Variables ¶
var Logger = log.New(ioutil.Discard, "[D2] ", log.Ldate|log.Ltime|log.Lmicroseconds|log.Lshortfile|log.LUTC)
Functions ¶
func ClustersPath ¶ added in v0.1.1
func EnableD2Logging ¶ added in v0.1.1
func EnableD2Logging()
func ServicesPath ¶
Types ¶
type Cluster ¶ added in v0.1.1
type Cluster struct { ClusterName string `json:"clusterName"` PartitionProperties struct { HashAlgorithm string `json:"hashAlgorithm"` PartitionCount int `json:"partitionCount"` PartitionKeyRegex string `json:"partitionKeyRegex"` PartitionType string `json:"partitionType"` } `json:"partitionProperties"` }
type R2D2Client ¶ added in v0.4.0
type R2D2Client struct { Conn *zk.Conn // During the initial listing of the /d2/uris node for a new cluster, this duration specifies how long to for the // first host to show up. If the /d2/services node exists for a service, it is impossible to know whether or not a // host will ever show up in the /d2/uris node for that service, which is why this timeout is provided. // A positive value will be used as-is, a 0 value will default to DefaultInitialUriWatchTimeout and a negative value // disables the timeout altogether InitialZkWatchTimeout time.Duration // contains filtered or unexported fields }
func (*R2D2Client) ResolveHostnameAndContextForQuery ¶ added in v0.7.3
func (*R2D2Client) SingleServiceClient ¶ added in v0.14.0
func (c *R2D2Client) SingleServiceClient(serviceName string) *SingleServiceClient
SingleServiceClient will always return URIs from the given serviceName instead of getting them from the service specified in resourceBaseName in ResolveHostnameAndContextForQuery. Some services announce to special D2 cluster instead of the resource name (i.e. by default, the service name is equal to the resource name).
type SingleServiceClient ¶ added in v0.4.0
type SingleServiceClient struct {
// contains filtered or unexported fields
}
func (*SingleServiceClient) ResolveHostnameAndContextForQuery ¶ added in v0.7.3
type TreeCache ¶ added in v0.4.0
type TreeCache struct {
// contains filtered or unexported fields
}
A TreeCache keeps data from all children of a Zookeeper path locally cached and updated according to received events.
func NewTreeCache ¶ added in v0.4.0
func NewTreeCache(conn *zk.Conn, path string, events chan TreeCacheEvent) *TreeCache
NewTreeCache creates a new TreeCache for a given path.
type TreeCacheEvent ¶ added in v0.4.0
A TreeCacheEvent models a Zookeeper event for a path.
type Uri ¶
type Uri struct { Weights map[url.URL]float64 Properties map[url.URL]UriProperty PartitionDesc map[url.URL]map[int]float64 }