Documentation ¶
Index ¶
- Constants
- func NewCockroachDBBackend(conf map[string]string, logger log.Logger) (physical.Backend, error)
- type CockroachDBBackend
- func (c *CockroachDBBackend) Delete(ctx context.Context, key string) error
- func (c *CockroachDBBackend) Get(ctx context.Context, key string) (*physical.Entry, error)
- func (c *CockroachDBBackend) HAEnabled() bool
- func (c *CockroachDBBackend) List(ctx context.Context, prefix string) ([]string, error)
- func (c *CockroachDBBackend) LockWith(key, value string) (physical.Lock, error)
- func (c *CockroachDBBackend) Put(ctx context.Context, entry *physical.Entry) error
- func (c *CockroachDBBackend) Transaction(ctx context.Context, txns []*physical.TxnEntry) error
- type CockroachDBLock
Constants ¶
const ( // The lock TTL matches the default that Consul API uses, 15 seconds. // Used as part of SQL commands to set/extend lock expiry time relative to // database clock. CockroachDBLockTTLSeconds = 15 // The amount of time to wait between the lock renewals CockroachDBLockRenewInterval = 5 * time.Second // CockroachDBLockRetryInterval is the amount of time to wait // if a lock fails before trying again. CockroachDBLockRetryInterval = time.Second )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CockroachDBBackend ¶
type CockroachDBBackend struct {
// contains filtered or unexported fields
}
CockroachDBBackend Backend is a physical backend that stores data within a CockroachDB database.
func (*CockroachDBBackend) Delete ¶
func (c *CockroachDBBackend) Delete(ctx context.Context, key string) error
Delete is used to permanently delete an entry
func (*CockroachDBBackend) HAEnabled ¶ added in v1.10.1
func (c *CockroachDBBackend) HAEnabled() bool
func (*CockroachDBBackend) List ¶
List is used to list all the keys under a given prefix, up to the next prefix.
func (*CockroachDBBackend) LockWith ¶ added in v1.10.1
func (c *CockroachDBBackend) LockWith(key, value string) (physical.Lock, error)
func (*CockroachDBBackend) Transaction ¶
Transaction is used to run multiple entries via a transaction
type CockroachDBLock ¶ added in v1.10.1
type CockroachDBLock struct {
// contains filtered or unexported fields
}
func (*CockroachDBLock) Lock ¶ added in v1.10.1
func (l *CockroachDBLock) Lock(stopCh <-chan struct{}) (<-chan struct{}, error)
Lock tries to acquire the lock by repeatedly trying to create a record in the CockroachDB table. It will block until either the stop channel is closed or the lock could be acquired successfully. The returned channel will be closed once the lock in the CockroachDB table cannot be renewed, either due to an error speaking to CockroachDB or because someone else has taken it.
func (*CockroachDBLock) Unlock ¶ added in v1.10.1
func (l *CockroachDBLock) Unlock() error
Unlock releases the lock by deleting the lock record from the CockroachDB table.