Documentation
¶
Overview ¶
Package gobeanstalk implement beanstalkd client library in Go.
Index ¶
- Variables
- type Conn
- func (c *Conn) Bury(id uint64, pri uint32) error
- func (c *Conn) Delete(id uint64) error
- func (c *Conn) Ignore(tubename string) (int, error)
- func (c *Conn) Kick(bound uint64) (uint64, error)
- func (c *Conn) KickJob(id uint64) error
- func (c *Conn) ListTubes() ([]byte, error)
- func (c *Conn) Put(data []byte, pri uint32, delay, ttr time.Duration) (uint64, error)
- func (c *Conn) Quit()
- func (c *Conn) Release(id uint64, pri uint32, delay time.Duration) error
- func (c *Conn) Reserve(timeout ...time.Duration) (*Job, error)
- func (c *Conn) Stats() ([]byte, error)
- func (c *Conn) StatsJob(id uint64) ([]byte, error)
- func (c *Conn) StatsTube(tubename string) ([]byte, error)
- func (c *Conn) Touch(id uint64) error
- func (c *Conn) Use(tubename string) error
- func (c *Conn) Watch(tubename string) (int, error)
- type Job
Constants ¶
This section is empty.
Variables ¶
var ( ErrOutOfMemory = errors.New("out of memory") ErrInternalError = errors.New("internal error") ErrBadFormat = errors.New("bad format") ErrUnknownCommand = errors.New("unknown command") ErrBuried = errors.New("buried") ErrExpectedCrlf = errors.New("expected CRLF") ErrJobTooBig = errors.New("job too big") ErrDraining = errors.New("draining") ErrDeadlineSoon = errors.New("deadline soon") ErrTimedOut = errors.New("timed out") ErrNotFound = errors.New("not found") )
beanstalkd error
var ( ErrInvalidLen = errors.New("invalid length") ErrUnknown = errors.New("unknown error") )
gobeanstalk error
Functions ¶
This section is empty.
Types ¶
type Conn ¶
type Conn struct {
// contains filtered or unexported fields
}
Conn represent a connection to beanstalkd server
func (*Conn) Bury ¶
Bury a job.
The bury command puts a job into the "buried" state. Buried jobs are put into a FIFO linked list and will not be touched by the server again until a client kicks them with the "kick" command.
id is the job id to bury. pri is a new priority to assign to the job.
func (*Conn) Ignore ¶
Ignore tube.
The "ignore" command is for consumers. It removes the named tube from the watch list for the current connection
func (*Conn) Kick ¶
Kick jobs.
The kick command applies only to the currently used tube. It moves jobs into the ready queue. If there are any buried jobs, it will only kick buried jobs. Otherwise it will kick delayed jobs.
bound is an integer upper bound on the number of jobs to kick.
It returns an integer indicating the number of jobs actually kicked
func (*Conn) KickJob ¶
KickJob kickcs a specific job.
If the given job id exists and is in a buried or delayed state, it will be moved to the ready queue of the the same tube where it currently belongs.
id is the job id to kick.
func (*Conn) ListTubes ¶
ListTubes returns all existing tube names the raw YAML returned by beanstalkd.
func (*Conn) Put ¶
Put a job.
It inserts a job into the client's currently used tube.
data is job body.
pri is an integer < 2**32. Jobs with smaller priority values will be scheduled before jobs with larger priorities. The most urgent priority is 0; the least urgent priority is 4,294,967,295.
delay is time to wait before putting the job in the ready queue. The job will be in the "delayed" state during this time.
ttr -- time to run -- is time to allow a worker to run this job. This time is counted from the moment a worker reserves this job. If the worker does not delete, release, or bury the job within ttr time, the job will time out and the server will release the job. The minimum ttr is 1 second. If the client sends 0 second, the server will silently increase the ttr to 1 second
func (*Conn) Release ¶
Release a job.
The release command puts a reserved job back into the ready queue (and marks its state as "ready") to be run by any client. It is normally used when the job fails because of a transitory error.
id is the job id to release. pri is a new priority to assign to the job. delay is time to wait before putting the job in the ready queue. The job will be in the "delayed" state during this time.
func (*Conn) Stats ¶
Stats fetch system stats
The "stats" command is for both producers/consumers and passes through the raw YAML returned by beanstalkd.
func (*Conn) StatsJob ¶
StatsJob fetch job stats
The "stats-job" command is for both producers/consumers and passes through the raw YAML returned by beanstalkd for the given job ID.
func (*Conn) StatsTube ¶
StatsTube fetch tubs stats
The "stats-tube" command is for both producers/consumers and passes through the raw YAML returned by beanstalkd for the given tube name.
func (*Conn) Touch ¶
Touch a job
The "touch" command allows a worker to request more time to work on a job. This is useful for jobs that potentially take a long time, but you still want the benefits of a TTR pulling a job away from an unresponsive worker. A worker may periodically tell the server that it's still alive and processing a job (e.g. it may do this on DEADLINE_SOON)