dynamolock

package module
v0.0.0-...-224f5e9 Latest Latest
Warning

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

Go to latest
Published: Feb 9, 2024 License: MIT Imports: 10 Imported by: 1

README

Go Reference

go-dynamolock

why

locking around dynamodb should be simple and easy.

what

a minimal go library for locking around dynamodb.

compared to alternatives it has less code and fewer features.

how

a record in dynamodb uses a uuid and a timetamp to coordinate callers.

to lock, a caller finds the uuid missing and adds it.

while locked, the caller heartbeats the timestamp.

to unlock, the caller removes the uuid.

arbitrary data can be stored atomically in the lock record. it is read via lock, and written via unlock.

manipulation of external state while the lock is held is subject to concurrent updates depending on maxAge, heartbeatInterval, and caller clock drift.

in practice, a small heartbeatInterval, a large maxAge, and reasonable clock drift should be safe.

prefer to store data within the lock when possible.

install

go get github.com/nathants/go-dynamolock

usage

package main

import (
	"context"
	"time"
	"github.com/nathants/go-dynamolock"
	"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
)


type Data struct {
    Value string
}

func main() {
	ctx := context.Background()

	// dynamodb table
	table := "table"

	// dynamodb key
	id := "lock1"

	// after a failure to unlock/heartbeat, this much time must pass before lock is available
	maxAge := time.Second * 30

	// how often to heartbeat lock timestamp
	heartbeat := time.Second * 1

	// lock and read data
	unlock, item, err := dynamolock.Lock(ctx, table, id, maxAge, heartbeat)
	if err != nil {
		// TODO handle lock contention
		panic(err)
	}
	data := &Data{}
	err = dynamodbattribute.UnmarshalMap(item, data)
	if err != nil {
		panic(err)
	}

	// do work with the lock
	time.Sleep(time.Second * 1)
	data.Value = "updated"

	// unlock and write data
	item, err = dynamodbattribute.MarshalMap(data)
	if err != nil {
		panic(err)
	}
	err = unlock(item)
	if err != nil {
		panic(err)
	}
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Lock

func Lock(ctx context.Context, table, id string, maxAge, heartbeatInterval time.Duration) (UnlockFn, DynamoMap, error)

Types

type DynamoMap

type DynamoMap map[string]*dynamodb.AttributeValue

func Read

func Read(ctx context.Context, table, id string) (DynamoMap, error)

type LockData

type LockData struct {
	Unix int    `json:"unix"` // timestamp of lock holder
	Uid  string `json:"uid"`  // uuid of lock holder
}

type LockKey

type LockKey struct {
	ID string `json:"id"` // unique id per lock
}

type LockRecord

type LockRecord struct {
	LockKey
	LockData
}

type UnlockFn

type UnlockFn func(DynamoMap) error

Jump to

Keyboard shortcuts

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