Bug #17776
closed
[a-d-c] [ec2] when InsufficientInstanceCapacity is returned, we should throttle node creation.
Added by Ward Vandewege almost 4 years ago.
Updated almost 4 years ago.
Estimated time:
(Total: 0.00 h)
Release relationship:
Auto
- Status changed from New to In Progress
- Assigned To set to Ward Vandewege
- Target version changed from To Be Groomed to 2021-06-23 sprint
- Related to Bug #17777: [a-d-c] [ec2] MaxSpotInstanceCountExceeded should throttle creation attempts for preemptible instances added
- Related to Bug #17783: [a-d-c] [ec2] VcpuLimitExceeded should throttle node creation attempts added
For detecting the error:
- I don't think we want to export IsErrorCapacity.
- The extra isCodeCapacity func seems needlessly verbose all for the sake of saving a few bytes of an unchanging map. Could just do
var isCodeCapacity = map[string]bool{"InsufficientInstanceCapacity": true, ...}
For reporting it back to dispatcher:
- These errors seem more like quota errors than API request limit errors. We have a different interface for quota errors (IsQuotaError() bool), the Azure driver has an example. That way the dispatcher can shut down idle nodes in an effort to free up capacity.
Tom Clegg wrote:
For detecting the error:
- I don't think we want to export IsErrorCapacity.
- The extra isCodeCapacity func seems needlessly verbose all for the sake of saving a few bytes of an unchanging map. Could just do
var isCodeCapacity = map[string]bool{"InsufficientInstanceCapacity": true, ...}
Yes, all fixed, thanks.
For reporting it back to dispatcher:
- These errors seem more like quota errors than API request limit errors. We have a different interface for quota errors (IsQuotaError() bool), the Azure driver has an example. That way the dispatcher can shut down idle nodes in an effort to free up capacity.
Thanks! I've updated the branch accordingly. I've also added a basic test for wrapError in the ec2 driver. See 6bb5a84a53e5810e96e56e41cc751d4ebc054580 on branch 17776-more-throttling.
Tests in developer-run-tests: #2527 
- Status changed from In Progress to Resolved
- % Done changed from 0 to 100
Also available in: Atom
PDF