Documentation ¶
Index ¶
- Constants
- type UnavailableOfferings
- func (u *UnavailableOfferings) Delete(instanceType string, zone string, capacityType string)
- func (u *UnavailableOfferings) Flush()
- func (u *UnavailableOfferings) IsUnavailable(instanceType, zone, capacityType string) bool
- func (u *UnavailableOfferings) MarkUnavailable(ctx context.Context, ...)
- func (u *UnavailableOfferings) MarkUnavailableForFleetErr(ctx context.Context, fleetErr *ec2.CreateFleetError, capacityType string)
Constants ¶
View Source
const ( // DefaultTTL restricts QPS to AWS APIs to this interval for verifying setup // resources. This value represents the maximum eventual consistency between // AWS actual state and the controller's ability to provision those // resources. Cache hits enable faster provisioning and reduced API load on // AWS APIs, which can have a serious impact on performance and scalability. // DO NOT CHANGE THIS VALUE WITHOUT DUE CONSIDERATION DefaultTTL = time.Minute // are removed from the cache and are available for launch again UnavailableOfferingsTTL = 3 * time.Minute // InstanceTypesAndZonesTTL is the time before we refresh instance types and zones at EC2 InstanceTypesAndZonesTTL = 5 * time.Minute // InstanceProfileTTL is the time before we refresh checking instance profile existence at IAM InstanceProfileTTL = 15 * time.Minute // SSMProviderTTL is the time to drop SSM Provider data. This only queries EKS Optimized AMI // releases, so we should expect this to be updated relatively infrequently. SSMProviderTTL = 24 * time.Hour )
View Source
const ( // DefaultCleanupInterval triggers cache cleanup (lazy eviction) at this interval. DefaultCleanupInterval = time.Minute )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type UnavailableOfferings ¶
type UnavailableOfferings struct { // contains filtered or unexported fields }
UnavailableOfferings stores any offerings that return ICE (insufficient capacity errors) when attempting to launch the capacity. These offerings are ignored as long as they are in the cache on GetInstanceTypes responses
func NewUnavailableOfferings ¶
func NewUnavailableOfferings() *UnavailableOfferings
func (*UnavailableOfferings) Delete ¶
func (u *UnavailableOfferings) Delete(instanceType string, zone string, capacityType string)
func (*UnavailableOfferings) Flush ¶
func (u *UnavailableOfferings) Flush()
func (*UnavailableOfferings) IsUnavailable ¶
func (u *UnavailableOfferings) IsUnavailable(instanceType, zone, capacityType string) bool
IsUnavailable returns true if the offering appears in the cache
func (*UnavailableOfferings) MarkUnavailable ¶
func (u *UnavailableOfferings) MarkUnavailable(ctx context.Context, unavailableReason, instanceType, zone, capacityType string)
MarkUnavailable communicates recently observed temporary capacity shortages in the provided offerings
func (*UnavailableOfferings) MarkUnavailableForFleetErr ¶
func (u *UnavailableOfferings) MarkUnavailableForFleetErr(ctx context.Context, fleetErr *ec2.CreateFleetError, capacityType string)
Click to show internal directories.
Click to hide internal directories.