Documentation ¶
Overview ¶
batcher implements a generic batching lib for API calls so that load can be reduced to external APIs that excessively throttle
Index ¶
- func DefaultHasher[T input](_ context.Context, input *T) uint64
- func FilterHasher(ctx context.Context, input *ec2.DescribeInstancesInput) uint64
- func OneBucketHasher[T input](_ context.Context, _ *T) uint64
- func SizeBuckets() []float64
- type BatchExecutor
- type Batcher
- type CreateFleetBatcher
- type DescribeInstancesBatcher
- type EC2API
- type Options
- type RequestHasher
- type Result
- type TerminateInstancesBatcher
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultHasher ¶
DefaultHasher will hash the entire input
func FilterHasher ¶
func FilterHasher(ctx context.Context, input *ec2.DescribeInstancesInput) uint64
func OneBucketHasher ¶
OneBucketHasher will return a constant hash and should be used when there is only one type of request
func SizeBuckets ¶
func SizeBuckets() []float64
SizeBuckets returns a []float64 of default threshold values for size histograms. Each returned slice is new and may be modified without impacting other bucket definitions.
Types ¶
type BatchExecutor ¶
BatchExecutor is a function that executes a slice of inputs against the batched API. inputs will be mutated The returned Result slice is expected to match the len of the input slice and be in the same order, if order matters for the batched API
type Batcher ¶
type Batcher[T input, U output] struct {
// contains filtered or unexported fields
}
Batcher is used to batch API calls with identical parameters into a single call
func NewBatcher ¶
NewBatcher creates a batcher that can batch a particular input and output type
type CreateFleetBatcher ¶
type CreateFleetBatcher struct {
// contains filtered or unexported fields
}
func NewCreateFleetBatcher ¶
func NewCreateFleetBatcher(ctx context.Context, ec2api ec2iface.EC2API) *CreateFleetBatcher
func (*CreateFleetBatcher) CreateFleet ¶
func (b *CreateFleetBatcher) CreateFleet(ctx context.Context, createFleetInput *ec2.CreateFleetInput) (*ec2.CreateFleetOutput, error)
type DescribeInstancesBatcher ¶
type DescribeInstancesBatcher struct {
// contains filtered or unexported fields
}
func NewDescribeInstancesBatcher ¶
func NewDescribeInstancesBatcher(ctx context.Context, ec2api ec2iface.EC2API) *DescribeInstancesBatcher
func (*DescribeInstancesBatcher) DescribeInstances ¶
func (b *DescribeInstancesBatcher) DescribeInstances(ctx context.Context, describeInstancesInput *ec2.DescribeInstancesInput) (*ec2.DescribeInstancesOutput, error)
type EC2API ¶
type EC2API struct { *CreateFleetBatcher *DescribeInstancesBatcher *TerminateInstancesBatcher }
type Options ¶
type Options[T input, U output] struct { Name string IdleTimeout time.Duration MaxTimeout time.Duration MaxItems int MaxRequestWorkers int RequestHasher RequestHasher[T] BatchExecutor BatchExecutor[T, U] }
Options allows for configuration of the Batcher
type RequestHasher ¶
RequestHasher is a function that hashes input to bucket inputs into distinct batches
type Result ¶
type Result[U output] struct { Output *U Err error }
Result is a container for the output and error of an execution
type TerminateInstancesBatcher ¶
type TerminateInstancesBatcher struct {
// contains filtered or unexported fields
}
func NewTerminateInstancesBatcher ¶
func NewTerminateInstancesBatcher(ctx context.Context, ec2api ec2iface.EC2API) *TerminateInstancesBatcher
func (*TerminateInstancesBatcher) TerminateInstances ¶
func (b *TerminateInstancesBatcher) TerminateInstances(ctx context.Context, terminateInstancesInput *ec2.TerminateInstancesInput) (*ec2.TerminateInstancesOutput, error)