Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Batcher ¶
type Batcher struct {
// contains filtered or unexported fields
}
Batcher delays concurrent operations for a configurable interval in order to batch them up or otherwise clock their operation to run concurrently.
It is implemented as a channel of int32s. Each waiter blocks on the channel from which it gets a sequentially increasing batch ID when the timer elapses.
Hence a waiter is delayed for at most the batch interval.
type Consolidator ¶
type Consolidator interface { Create(string) (PendingResult, bool) Items() []ConsolidatorCacheItem Record(query string) }
Consolidator consolidates duplicate queries from executing simulaneously and shares results between them.
func NewConsolidator ¶
func NewConsolidator() Consolidator
NewConsolidator creates a new Consolidator
type ConsolidatorCache ¶
ConsolidatorCache is a thread-safe object used for counting how often recent queries have been consolidated. It is also used by the txserializer package to count how often transactions have been queued and had to wait because they targeted the same row (range).
func NewConsolidatorCache ¶
func NewConsolidatorCache(capacity int64) *ConsolidatorCache
NewConsolidatorCache creates a new cache with the given capacity.
func (*ConsolidatorCache) Items ¶
func (cc *ConsolidatorCache) Items() []ConsolidatorCacheItem
Items returns the items in the cache as an array of String, int64 structs
func (*ConsolidatorCache) Record ¶
func (cc *ConsolidatorCache) Record(query string)
Record increments the count for "query" by 1. If it's not in the cache yet, it will be added.
type ConsolidatorCacheItem ¶
ConsolidatorCacheItem is a wrapper for the items in the consolidator cache
type FakeConsolidator ¶ added in v0.17.0
type FakeConsolidator struct { // CreateCalls can be used to inspect Create calls. CreateCalls []string // CreateReturns can be used to inspect Create return values. CreateReturns []*FakeConsolidatorCreateReturn // CreateReturnCreated pre-configures the return value of Create calls. CreateReturn *FakeConsolidatorCreateReturn // RecordCalls can be usd to inspect Record calls. RecordCalls []string }
FakeConsolidator satisfies the Consolidator interface and can be used to mock how Vitess interacts with the Consolidator.
func NewFakeConsolidator ¶ added in v0.17.0
func NewFakeConsolidator() *FakeConsolidator
NewFakeConsolidator creates a new FakeConsolidator.
func (*FakeConsolidator) Create ¶ added in v0.17.0
func (fc *FakeConsolidator) Create(sql string) (PendingResult, bool)
Create records the Create call for later verification, and returns a pre-configured PendingResult and "created" bool.
func (*FakeConsolidator) Items ¶ added in v0.17.0
func (fc *FakeConsolidator) Items() []ConsolidatorCacheItem
Items is currently a no-op.
func (*FakeConsolidator) Record ¶ added in v0.17.0
func (fc *FakeConsolidator) Record(sql string)
Record records the Record call for later verification.
type FakeConsolidatorCreateReturn ¶ added in v0.17.0
type FakeConsolidatorCreateReturn struct { // PendingResult contains the PendingResult return value of a call to // FakeConsolidator.Create. PendingResult // PendingResult contains the Created return value of a call to // FakeConsolidator.Create. Created bool }
FakeConsolidatorCreateReturn wraps the two return values of a call to FakeConsolidator.Create.
type FakePendingResult ¶ added in v0.17.0
type FakePendingResult struct { // BroadcastCalls can be used to inspect Broadcast calls. BroadcastCalls int // WaitCalls can be used to inspect Wait calls. WaitCalls int // contains filtered or unexported fields }
FakePendingResult satisfies the PendingResult interface and can be used to mock how Vitess interacts with the Consolidator.
func (*FakePendingResult) Broadcast ¶ added in v0.17.0
func (fr *FakePendingResult) Broadcast()
Broadcast records the Broadcast call for later verification.
func (*FakePendingResult) Err ¶ added in v0.17.0
func (fr *FakePendingResult) Err() error
Err returns the pre-configured error.
func (*FakePendingResult) Result ¶ added in v0.17.0
func (fr *FakePendingResult) Result() *sqltypes.Result
Result returns the pre-configured Result.
func (*FakePendingResult) SetErr ¶ added in v0.17.0
func (fr *FakePendingResult) SetErr(err error)
SetErr stores the err, which can be retrieved with Err.
func (*FakePendingResult) SetResult ¶ added in v0.17.0
func (fr *FakePendingResult) SetResult(result *sqltypes.Result)
SetResult stores the result, which can be retrieved with Result.
func (*FakePendingResult) Wait ¶ added in v0.17.0
func (fr *FakePendingResult) Wait()
Wait records the Wait call for later verification.