zk

package
v1.0.10 Latest Latest
Warning

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

Go to latest
Published: Jun 27, 2015 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Overview

zk provides with higher level commands over the lower level zookeeper connector

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func BuildACL added in v1.0.9

func BuildACL(authScheme string, user string, pwd string, acls string) (perms []zk.ACL, err error)

Returns acls

func Children

func Children(path string) ([]string, error)

Children returns sub-paths of given path, optionally empty array, or error if path does not exist

func ChildrenRecursive added in v1.0.1

func ChildrenRecursive(path string) ([]string, error)

ChildrenRecursive returns list of all descendants of given path (optionally empty), or error if the path does not exist. Every element in result list is a relative subpath for the given path.

func Create

func Create(path string, data []byte, aclstr string, force bool) (string, error)

Create will create a new path, or exit with error should the path exist. The "force" param controls the behavior when path's parent directory does not exist. When "force" is false, the function returns with error/ When "force" is true, it recursively attempts to create required parent directories.

func CreateWithACL added in v1.0.7

func CreateWithACL(path string, data []byte, force bool, perms []zk.ACL) (string, error)

func Delete

func Delete(path string) error

Delete removes a path entry. It exits with error if the path does not exist, or has subdirectories.

func DeleteRecursive added in v1.0.8

func DeleteRecursive(path string) error

Delete recursive if has subdirectories.

func Exists added in v1.0.1

func Exists(path string) (bool, error)

Exists returns true when the given path exists

func Get

func Get(path string) ([]byte, error)

Get returns value associated with given path, or error if path does not exist

func GetACL added in v1.0.7

func GetACL(path string) (data []string, err error)

func Set

func Set(path string, data []byte) (*zk.Stat, error)

Set updates a value for a given path, or returns with error if the path does not exist

func SetACL added in v1.0.9

func SetACL(path string, aclstr string, force bool) (string, error)

updates the ACL on a given path

func SetAuth added in v1.0.7

func SetAuth(scheme string, auth []byte)

func SetServers

func SetServers(serversArray []string)

SetServers sets the list of servers for the zookeeper client to connect to. Each element in the array should be in either of following forms: - "servername" - "servername:port"

Types

This section is empty.

Jump to

Keyboard shortcuts

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