checkpoint

package
v4.14.1 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Overview

Package checkpoint implements a mechanism for tracking checkpointed integer offsets for sequential read at-least-once queue systems such as Kafka or Kinesis.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Capped

type Capped[T any] struct {
	// contains filtered or unexported fields
}

Capped receives an ordered feed of integer based offsets being tracked, and an unordered feed of integer based offsets that are resolved, and is able to return the highest offset currently able to be committed such that an unresolved offset is never committed.

If the number of unresolved tracked values meets a given cap the next attempt to track a value will be blocked until the next value is resolved.

This component is safe to use concurrently across goroutines.

func NewCapped

func NewCapped[T any](capacity int64) *Capped[T]

NewCapped returns a new capped checkpointer.

func (*Capped[T]) Highest

func (c *Capped[T]) Highest() *T

Highest returns the current highest checkpoint.

func (*Capped[T]) Track

func (c *Capped[T]) Track(ctx context.Context, payload T, batchSize int64) (func() *T, error)

Track a new unresolved integer offset. This offset will be cached until it is marked as resolved. While it is cached no higher valued offset will ever be committed. If the provided value is lower than an already provided value an error is returned.

type Uncapped

type Uncapped[T any] struct {
	// contains filtered or unexported fields
}

Uncapped keeps track of a sequence of pending checkpoint payloads, and as pending checkpoints are resolved it retains the latest fully resolved payload in the sequence where all prior sequence checkpoints are also resolved.

Also keeps track of the logical size of the unresolved sequence, which allows for limiting the number of pending checkpoints.

func NewUncapped

func NewUncapped[T any]() *Uncapped[T]

NewUncapped returns a new check pointer implemented via a linked list.

func (*Uncapped[T]) Highest

func (t *Uncapped[T]) Highest() *T

Highest returns the payload of the highest resolved checkpoint.

func (*Uncapped[T]) Pending

func (t *Uncapped[T]) Pending() int64

Pending returns the gap between the baseline and the end of our checkpoints.

func (*Uncapped[T]) Track

func (t *Uncapped[T]) Track(payload T, batchSize int64) func() *T

Track a new unresolved payload. This payload will be cached until it is marked as resolved. While it is cached no more recent payload will ever be committed.

Jump to

Keyboard shortcuts

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