Actions
Feature #19675
openPanel that lists configured instance types
Status:
In Progress
Priority:
Normal
Assigned To:
Category:
Workbench2
Target version:
Start date:
Due date:
% Done:
0%
Estimated time:
(Total: 0.00 h)
Story points:
3.0
Description
Render the contents of config.InstanceTypes nicely for the benefit of workflow authors.
For RAM and disk, subtract out the overhead that gets added to the resource request in order to show the maximum resource request that can be made in CWL that will match that type, without bumping up to a larger size.
Should also report value of MaxInstances and SupervisorFraction.
Files
Related issues
Updated by Peter Amstutz about 1 year ago
- Description updated (diff)
- Subject changed from Panel that lists configured instance types and the largest resource request that will select that type to Panel that lists configured instance types
Updated by Peter Amstutz about 1 year ago
- Is duplicate of Feature #12179: Panel showing available instance types on the cluster added
Updated by Peter Amstutz about 1 year ago
- Target version changed from 2022-12-07 Sprint to 2022-12-21 Sprint
Updated by Peter Amstutz about 1 year ago
- Story points set to 3.0
- Subject changed from Panel that lists configured instance types to Panel that lists configured instance types
Updated by Peter Amstutz 12 months ago
- Target version changed from 2022-12-21 Sprint to 2023-01-18 sprint
Updated by Peter Amstutz 11 months ago
- Target version changed from 2023-01-18 sprint to 2023-02-01 sprint
Updated by Peter Amstutz 11 months ago
- Release set to 59
- Target version deleted (
2023-02-01 sprint)
Updated by Peter Amstutz 8 months ago
- Related to Story #16943: WB2 Descriptions, project & collection operations added
Updated by Peter Amstutz 8 months ago
- Target version changed from To be scheduled to Development 2023-04-26 sprint
Updated by Peter Amstutz 7 months ago
- Target version changed from Development 2023-04-26 sprint to Development 2023-05-10 sprint
Updated by Peter Amstutz 7 months ago
- Target version changed from Development 2023-05-10 sprint to Development 2023-05-24 sprint
Updated by Peter Amstutz 7 months ago
- Target version changed from Development 2023-05-24 sprint to Development 2023-06-07
Updated by Peter Amstutz 6 months ago
- Target version changed from Development 2023-06-07 to To be scheduled
Updated by Peter Amstutz 5 months ago
- Related to Story #18179: Better spot instance support added
Updated by Peter Amstutz 2 months ago
- Target version changed from To be scheduled to Development 2023-11-08 sprint
Updated by Peter Amstutz about 2 months ago
- Target version changed from Development 2023-11-08 sprint to Development 2023-10-25 sprint
Updated by Peter Amstutz about 2 months ago
- Target version changed from Development 2023-10-25 sprint to Development 2023-11-08 sprint
Updated by Peter Amstutz about 1 month ago
- File Instancetypes.png Instancetypes.png added
Updated by Peter Amstutz about 1 month ago
Here's the Go code that calculates the actual RAM request.
So we want to subtract all the overhead from the topline instance RAM to get the maximum value of "RuntimeConstraints.RAM" that the user can provide to get this instance type.
needRAM := ctr.RuntimeConstraints.RAM + ctr.RuntimeConstraints.KeepCacheRAM needRAM += int64(cc.Containers.ReserveExtraRAM) if cc.Containers.LocalKeepBlobBuffersPerVCPU > 0 { // + 200 MiB for keepstore process + 10% for GOGC=10 needRAM += 220 << 20 // + 64 MiB for each blob buffer + 10% for GOGC=10 needRAM += int64(cc.Containers.LocalKeepBlobBuffersPerVCPU * needVCPUs * (1 << 26) * 11 / 10) } needRAM = (needRAM * 100) / int64(100-discountConfiguredRAMPercent)
Updated by Brett Smith about 1 month ago
Updated by Peter Amstutz 23 days ago
- Target version changed from Development 2023-11-08 sprint to Development 2023-11-29 sprint
Updated by Peter Amstutz 1 day ago
- Target version changed from Development 2023-11-29 sprint to Development 2024-01-03 sprint
Actions