revisions

package
v1.31.0 Latest Latest
Warning

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

Go to latest
Published: Apr 11, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Timestamp is a revision that is a timestamp.
	Timestamp RevisionKind = "timestamp"

	// TransactionID is a revision that is a transaction ID.
	TransactionID = "txid"

	// HybridLogicalClock is a revision that is a hybrid logical clock.
	HybridLogicalClock = "hlc"
)

Variables

This section is empty.

Functions

func HLCKeyLessThanFunc

func HLCKeyLessThanFunc(lhs, rhs HLCRevision) bool

HLCKeyLessThanFunc is used to compare keys created by the HLCKeyFunc.

func TimestampIDKeyFunc

func TimestampIDKeyFunc(r TimestampRevision) int64

TimestampIDKeyFunc is used to create keys for timestamps.

func TimestampIDKeyLessThanFunc

func TimestampIDKeyLessThanFunc(l, r int64) bool

TimestampIDKeyLessThanFunc is used to create keys for timestamps.

func TransactionIDKeyFunc

func TransactionIDKeyFunc(r TransactionIDRevision) uint64

TransactionIDKeyFunc is used to create keys for transaction IDs.

func TransactionIDKeyLessThanFunc

func TransactionIDKeyLessThanFunc(l, r uint64) bool

TransactionIDKeyLessThanFunc is used to create keys for transaction IDs.

Types

type CachedOptimizedRevisions

type CachedOptimizedRevisions struct {
	sync.Mutex
	// contains filtered or unexported fields
}

CachedOptimizedRevisions does caching and deduplication for requests for optimized revisions.

func NewCachedOptimizedRevisions

func NewCachedOptimizedRevisions(maxRevisionStaleness time.Duration) *CachedOptimizedRevisions

NewCachedOptimizedRevisions returns a CachedOptimizedRevisions for the given configuration

func (*CachedOptimizedRevisions) OptimizedRevision

func (cor *CachedOptimizedRevisions) OptimizedRevision(ctx context.Context) (datastore.Revision, error)

func (*CachedOptimizedRevisions) SetOptimizedRevisionFunc

func (cor *CachedOptimizedRevisions) SetOptimizedRevisionFunc(revisionFunc OptimizedRevisionFunction)

SetOptimizedRevisionFunc must be called after construction, and is the method by which one specializes this helper for a specific datastore.

type CommonDecoder

type CommonDecoder struct {
	Kind RevisionKind
}

CommonDecoder is a revision decoder that can decode revisions of a given kind.

func (CommonDecoder) RevisionFromString

func (cd CommonDecoder) RevisionFromString(s string) (datastore.Revision, error)

type HLCRevision

type HLCRevision struct {
	// contains filtered or unexported fields
}

HLCRevision is a revision that is a hybrid logical clock, stored as two integers. The first integer is the timestamp in nanoseconds, and the second integer is the logical clock defined as 11 digits, with the first digit being ignored to ensure precision of the given logical clock.

func HLCKeyFunc

func HLCKeyFunc(r HLCRevision) HLCRevision

HLCKeyFunc is used to convert a simple HLC for use in maps.

func HLCRevisionFromString

func HLCRevisionFromString(revisionStr string) (HLCRevision, error)

HLCRevisionFromString parses a string into a hybrid logical clock revision.

func NewForHLC

func NewForHLC(decimal decimal.Decimal) (HLCRevision, error)

NewForHLC creates a new revision for the given hybrid logical clock.

func NewHLCForTime

func NewHLCForTime(time time.Time) HLCRevision

NewHLCForTime creates a new revision for the given time.

func (HLCRevision) ConstructForTimestamp

func (hlc HLCRevision) ConstructForTimestamp(timestamp int64) WithTimestampRevision

func (HLCRevision) Equal

func (hlc HLCRevision) Equal(rhs datastore.Revision) bool

func (HLCRevision) GreaterThan

func (hlc HLCRevision) GreaterThan(rhs datastore.Revision) bool

func (HLCRevision) InexactFloat64

func (hlc HLCRevision) InexactFloat64() float64

func (HLCRevision) IntegerRepresentation

func (hlc HLCRevision) IntegerRepresentation() (int64, uint32)

func (HLCRevision) LessThan

func (hlc HLCRevision) LessThan(rhs datastore.Revision) bool

func (HLCRevision) String

func (hlc HLCRevision) String() string

func (HLCRevision) TimestampNanoSec

func (hlc HLCRevision) TimestampNanoSec() int64

type OptimizedRevisionFunction

type OptimizedRevisionFunction func(context.Context) (rev datastore.Revision, validFor time.Duration, err error)

OptimizedRevisionFunction instructs the datastore to compute its own current optimized revision given the specific quantization, and return for how long it will remain valid.

type ParsingFunc

type ParsingFunc func(revisionStr string) (rev datastore.Revision, err error)

ParsingFunc is a function that can parse a string into a revision.

func RevisionParser

func RevisionParser(kind RevisionKind) ParsingFunc

RevisionParser returns a ParsingFunc for the given RevisionKind.

type RemoteClockRevisions

type RemoteClockRevisions struct {
	*CachedOptimizedRevisions
	// contains filtered or unexported fields
}

RemoteClockRevisions handles revision calculation for datastores that provide their own clocks.

func NewRemoteClockRevisions

func NewRemoteClockRevisions(gcWindow, maxRevisionStaleness, followerReadDelay, quantization time.Duration) *RemoteClockRevisions

NewRemoteClockRevisions returns a RemoteClockRevisions for the given configuration

func (*RemoteClockRevisions) CheckRevision

func (rcr *RemoteClockRevisions) CheckRevision(ctx context.Context, dsRevision datastore.Revision) error

func (*RemoteClockRevisions) SetNowFunc

func (rcr *RemoteClockRevisions) SetNowFunc(nowFunc RemoteNowFunction)

SetNowFunc sets the function used to determine the head revision

type RemoteNowFunction

type RemoteNowFunction func(context.Context) (datastore.Revision, error)

RemoteNowFunction queries the datastore to get a current revision.

type RevisionKind

type RevisionKind string

RevisionKind is an enum of the different kinds of revisions that can be used.

type TimestampRevision

type TimestampRevision int64

TimestampRevision is a revision that is a timestamp.

func NewForTime

func NewForTime(time time.Time) TimestampRevision

NewForTime creates a new revision for the given time.

func NewForTimestamp

func NewForTimestamp(timestampNanosec int64) TimestampRevision

NewForTimestamp creates a new revision for the given timestamp.

func (TimestampRevision) ConstructForTimestamp

func (ir TimestampRevision) ConstructForTimestamp(timestamp int64) WithTimestampRevision

func (TimestampRevision) Equal

func (ir TimestampRevision) Equal(other datastore.Revision) bool

func (TimestampRevision) GreaterThan

func (ir TimestampRevision) GreaterThan(other datastore.Revision) bool

func (TimestampRevision) IntegerRepresentation

func (ir TimestampRevision) IntegerRepresentation() (int64, uint32)

func (TimestampRevision) LessThan

func (ir TimestampRevision) LessThan(other datastore.Revision) bool

func (TimestampRevision) String

func (ir TimestampRevision) String() string

func (TimestampRevision) Time

func (ir TimestampRevision) Time() time.Time

func (TimestampRevision) TimestampNanoSec

func (ir TimestampRevision) TimestampNanoSec() int64

func (TimestampRevision) WithInexactFloat64

func (ir TimestampRevision) WithInexactFloat64() float64

type TransactionIDRevision

type TransactionIDRevision uint64

TransactionIDRevision is a revision that is a transaction ID.

func NewForTransactionID

func NewForTransactionID(transactionID uint64) TransactionIDRevision

NewForTransactionID creates a new revision for the given transaction ID.

func (TransactionIDRevision) Equal

func (ir TransactionIDRevision) Equal(other datastore.Revision) bool

func (TransactionIDRevision) GreaterThan

func (ir TransactionIDRevision) GreaterThan(other datastore.Revision) bool

func (TransactionIDRevision) IntegerRepresentation

func (ir TransactionIDRevision) IntegerRepresentation() (int64, uint32)

func (TransactionIDRevision) LessThan

func (ir TransactionIDRevision) LessThan(other datastore.Revision) bool

func (TransactionIDRevision) String

func (ir TransactionIDRevision) String() string

func (TransactionIDRevision) TransactionID

func (ir TransactionIDRevision) TransactionID() uint64

func (TransactionIDRevision) WithInexactFloat64

func (ir TransactionIDRevision) WithInexactFloat64() float64

type WithInexactFloat64

type WithInexactFloat64 interface {
	// InexactFloat64 returns a float64 that is an inexact representation of the
	// revision.
	InexactFloat64() float64
}

WithInexactFloat64 is an interface that can be implemented by a revision to provide an inexact float64 representation of the revision.

type WithIntegerRepresentation

type WithIntegerRepresentation interface {
	datastore.Revision
	IntegerRepresentation() (int64, uint32)
}

WithIntegerRepresentation is an interface that can be implemented by a revision to provide an integer representation of the revision.

type WithTimestampRevision

type WithTimestampRevision interface {
	datastore.Revision
	TimestampNanoSec() int64
	ConstructForTimestamp(timestampNanoSec int64) WithTimestampRevision
}

WithTimestampRevision is an interface that can be implemented by a revision to provide a timestamp.

Jump to

Keyboard shortcuts

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