lease

package
v0.0.0-...-be26699 Latest Latest
Warning

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

Go to latest
Published: Jul 3, 2015 License: AGPL-3.0 Imports: 10 Imported by: 0

Documentation

Overview

The lease package exists to implement distributed lease management on top of mgo/txn, and to expose assert operations that allow us to gate other mgo/txn transactions on lease state. This necessity has affected the package; but, apart from leaking assertion operations, it functions as a distributed lease- management system with various useful properties.

These properties of course rest upon assumptions; ensuring the validity of the following statements is the job of the client.

  • The lease package has exclusive access to any collection it's configured to use. (Please don't store anything else in there.)

  • Given any (collection,namespace) pair, any client Id will be unique at any given point in time. (Run no more than one per namespace per server, and identify them according to where they're running).

  • Time passes at approximately the same rate for all clients. (Note that the clients do *not* have to agree what time it is, or what time zone anyone is in: just that 1s == 1s. This is likely to be true already if you use lease.SystemClock{}.)

So long as the above holds true, the following statements will too:

  • A successful ClaimLease guarantees lease ownership until *at least* the requested duration after the start of the call. (It does *not* guaranntee any sort of timely expiry.)

  • A successful ExtendLease makes the same guarantees. (In particular, note that this cannot cause a lease to be shortened; but that success may indicate ownership is guaranteed for longer than requested.)

  • ExpireLease will only succeed when the most recent writer of the lease is known to believe the time is after the expiry time it wrote.

Remarks on clock skew ---------------------

When expiring a lease (or determining whether it needs to be extended) we only need to care about the writer, because everybody else is determining their own skew relative only to the writer. That is, assuming 3 clients:

A) knows "the real time"; wrote a lease at 01:00:00, expiring at 01:00:30A
B) is 20 seconds ahead; read the lease between 01:00:23B and 01:00:24B
C) is 5 seconds behind; read the lease between 00:59:57C and 00:59:58C

...then B cannot infer an expiry time earlier than 01:00:54L (=01:00:34A) and C cannot infer an expiry time earlier than 01:00:28C (=01:00:33A). If A fails to expire its lease, then C will trigger first and try to expire it, and most likely succeed; and when C succeeds, B's subsequent attempt to expire the lease will certainly fail, because C has updated both the clock document and the lease document and invalidated B's assertions.

So B can and does then Refresh; and sees the lease document written by C, and now needs only to consider its offset relative to C in order to Do The Right Thing.

Schema design -------------

For each namespace, we store a single clock document; and one additional document per lease. The lease document holds the name, holder, expiry, and writer of the lease; the clock document contains the most recent time acknowledged by each client that has written to the namespace.

Every transaction that the lease package makes is gated on a write to the clock document (which *must* precede any lease operations) which acks a recent time and fails if it appears to be going backward in time (this could happen if we crashed at the wrong moment and left a transaction queued but unprepared for some time: we definitely don't want to accept those operations).

The fact that the clock document is involved in every transaction renders it a per-namespace bottleneck, but the ability to discard outdated transactions is valuable; and the centralised record of acknowledged times mitigates the impact of client failure.

That is to say: assuming client C wrote lease L at time T, and wrote lease M at time U (later than T); and then failed; then a fresh client D will be able to expire lease L earlier (by U-T) than it could infer with the information in lease L alone.

(We could ofc still calculate that by storing a written time in each lease document, but it'd be more hassle to collate the data, harder to inspect the database, and would only be able to make much weaker anti-time-travel promises than we can manage with the clock doc.)

Client usage considerations ---------------------------

  • Client operates at a relatively low level of abstraction. Claiming a held lease will fail, even on behalf of the holder; expiring an expired lease will fail; but at least we can allow lease extensions to race benignly, because they don't involve ownership change and thus can't break promises (so long as our skew logic is correct).

  • ErrInvalid is normal and expected; you should never pass that on to your own clients, because it indicates that you tried to manipulate the client in an impossible way. You can and should inspect Leases() and figure out what to do instead; that may well be "return an error", but please be sure to return your own error, suitable for your own level of abstraction.

  • You *probably* shouldn't ever need to actually call Refresh. It's perfectly safe to let state drift arbitrarily far out of sync; when you try to run operations, you will either succeed by luck despite your aged cache... or, if you fail, you'll get ErrInvalid and a fresh cache to inspect to find out recent state.

Index

Constants

This section is empty.

Variables

View Source
var ErrInvalid = errors.New("invalid lease operation")

ErrInvalid indicates that a client operation failed because latest state indicates that it's a logical impossibility. It's a short-range signal to calling code only; that code should never pass it on, but should inspect the Client's updated Leases() and either attempt a new operation or return a new error at a suitable level of abstraction.

Functions

This section is empty.

Types

type Client

type Client interface {

	// ClaimLease records the supplied holder's claim to the supplied lease. If
	// it succeeds, the claim is guaranteed until at least the supplied duration
	// after the call to ClaimLease was initiated. If it returns ErrInvalid,
	// check Leases() for updated state.
	ClaimLease(lease string, request Request) error

	// ExtendLease records the supplied holder's continued claim to the supplied
	// lease, if necessary. If it succeeds, the claim is guaranteed until at
	// least the supplied duration after the call to ExtendLease was initiated.
	// If it returns ErrInvalid, check Leases() for updated state.
	ExtendLease(lease string, request Request) error

	// ExpireLease records the vacation of the supplied lease. It will fail if
	// we cannot verify that the lease's writer considers the expiry time to
	// have passed. If it returns ErrInvalid, check Leases() for updated state.
	ExpireLease(lease string) error

	// Leases returns a recent snapshot of lease state. Expiry times are
	// expressed according to the Clock the client was configured with.
	Leases() map[string]Info

	// Refresh reads all lease state from the database.
	Refresh() error
}

Client manipulates leases backed by MongoDB. Client implementations are not expected to be goroutine-safe.

func NewClient

func NewClient(config ClientConfig) (Client, error)

NewClient returns a new Client using the supplied config, or an error. Any of the following situations will prevent client creation:

  • invalid config
  • invalid clock data stored in the namespace
  • invalid lease data stored in the namespace

...but a returned Client will hold a recent cache of lease data and be ready to use. Clients do not need to be cleaned up themselves, but they will not function past the lifetime of their configured Mongo.

type ClientConfig

type ClientConfig struct {

	// Id uniquely identifies the client. Multiple clients with the same id
	// running concurrently will cause undefined behaviour.
	Id string

	// Namespace identifies a group of clients which operate on the same data.
	Namespace string

	// Collection names the MongoDB collection in which lease data is stored.
	Collection string

	// Mongo exposes the mgo[/txn] capabilities required by a Client.
	Mongo Mongo

	// Clock exposes the wall-clock time to a Client.
	Clock Clock
}

ClientConfig contains the resources and information required to create a Client. Multiple clients can collaborate if they share a collection and namespace, so long as they do not share ids; but within a collection, clients for different namespaces will not interfere with one another, regardless of id.

func (ClientConfig) Validate

func (config ClientConfig) Validate() error

Validate returns an error if the supplied config is not valid.

type Clock

type Clock interface {

	// Now returns the current wall-clock time.
	Now() time.Time

	// Alarm returns a channel that will have the time sent on it at some point
	// after the supplied time occurs.
	Alarm(time.Time) <-chan time.Time
}

Clock exposes wall-clock time for use by and with the lease package.

type Info

type Info struct {

	// Holder is the name of the current leaseholder.
	Holder string

	// Expiry is the latest time at which it's possible the lease might still
	// be valid. Attempting to expire the lease before this time will fail.
	Expiry time.Time

	// AssertOp, if included in a mgo/txn transaction, will gate the transaction
	// on the lease remaining held by Holder. If we didn't need this, we could
	// easily implement Clients backed by other substrates.
	AssertOp txn.Op
}

Info holds information about a lease. It's MongoDB-specific, because it includes information that can be used with the mgo/txn package to gate transaction operations on lease state.

type Mongo

type Mongo interface {

	// RunTransaction should probably delegate to a jujutxn.Runner's Run method.
	RunTransaction(jujutxn.TransactionSource) error

	// GetCollection should probably call the mongo.CollectionFromName func.
	GetCollection(name string) (collection mongo.Collection, closer func())
}

Mongo exposes MongoDB operations for use by the lease package.

type Request

type Request struct {

	// Holder identifies the lease holder.
	Holder string

	// Duration specifies the time for which the lease is required.
	Duration time.Duration
}

Request describes a lease request.

func (Request) Validate

func (request Request) Validate() error

Validate returns an error if any fields are invalid or inconsistent.

type Skew

type Skew struct {

	// LastWrite is the most recent remote time known to have been written
	// by the skewed writer.
	LastWrite time.Time

	// ReadAfter should be the latest known local time before LastWrite
	// was read.
	ReadAfter time.Time

	// ReadBefore should be the earliest known local time after LastWrite
	// was read.
	ReadBefore time.Time
}

Skew holds information about a remote writer's idea of the current time.

func (Skew) Earliest

func (skew Skew) Earliest(remote time.Time) (local time.Time)

Earliest returns the earliest local time after which we can be confident that the remote writer will agree the supplied time is in the past.

func (Skew) Latest

func (skew Skew) Latest(remote time.Time) (local time.Time)

Latest returns the latest local time after which we can be confident that the remote writer will agree the supplied time is in the past.

type SystemClock

type SystemClock struct{}

SystemClock exposes wall-clock time as returned by time.Now.

func (SystemClock) Alarm

func (clock SystemClock) Alarm(t time.Time) <-chan time.Time

Alarm returns a channel that will send a value at some point after the supplied time.

func (SystemClock) Now

func (SystemClock) Now() time.Time

Now is part of the Clock interface.

Jump to

Keyboard shortcuts

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