Copyright | (c) 2013-2023 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Synopsis
- data FairsharePolicy = FairsharePolicy' {}
- newFairsharePolicy :: FairsharePolicy
- fairsharePolicy_computeReservation :: Lens' FairsharePolicy (Maybe Int)
- fairsharePolicy_shareDecaySeconds :: Lens' FairsharePolicy (Maybe Int)
- fairsharePolicy_shareDistribution :: Lens' FairsharePolicy (Maybe [ShareAttributes])
Documentation
data FairsharePolicy Source #
The fair share policy for a scheduling policy.
See: newFairsharePolicy
smart constructor.
FairsharePolicy' | |
|
Instances
newFairsharePolicy :: FairsharePolicy Source #
Create a value of FairsharePolicy
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:computeReservation:FairsharePolicy'
, fairsharePolicy_computeReservation
- A value used to reserve some of the available maximum vCPU for fair
share identifiers that aren't already used.
The reserved ratio is
(
computeReservation
/100)^
ActiveFairShares
where
ActiveFairShares
is the number of active fair share
identifiers.
For example, a computeReservation
value of 50 indicates that
Batchreserves 50% of the maximum available vCPU if there's only one
fair share identifier. It reserves 25% if there are two fair share
identifiers. It reserves 12.5% if there are three fair share
identifiers. A computeReservation
value of 25 indicates that Batch
should reserve 25% of the maximum available vCPU if there's only one
fair share identifier, 6.25% if there are two fair share identifiers,
and 1.56% if there are three fair share identifiers.
The minimum value is 0 and the maximum value is 99.
$sel:shareDecaySeconds:FairsharePolicy'
, fairsharePolicy_shareDecaySeconds
- The amount of time (in seconds) to use to calculate a fair share
percentage for each fair share identifier in use. A value of zero (0)
indicates that only current usage is measured. The decay allows for more
recently run jobs to have more weight than jobs that ran earlier. The
maximum supported value is 604800 (1 week).
$sel:shareDistribution:FairsharePolicy'
, fairsharePolicy_shareDistribution
- An array of SharedIdentifier
objects that contain the weights for the
fair share identifiers for the fair share policy. Fair share identifiers
that aren't included have a default weight of 1.0
.
fairsharePolicy_computeReservation :: Lens' FairsharePolicy (Maybe Int) Source #
A value used to reserve some of the available maximum vCPU for fair share identifiers that aren't already used.
The reserved ratio is
(
computeReservation
/100)^
ActiveFairShares
where
ActiveFairShares
is the number of active fair share
identifiers.
For example, a computeReservation
value of 50 indicates that
Batchreserves 50% of the maximum available vCPU if there's only one
fair share identifier. It reserves 25% if there are two fair share
identifiers. It reserves 12.5% if there are three fair share
identifiers. A computeReservation
value of 25 indicates that Batch
should reserve 25% of the maximum available vCPU if there's only one
fair share identifier, 6.25% if there are two fair share identifiers,
and 1.56% if there are three fair share identifiers.
The minimum value is 0 and the maximum value is 99.
fairsharePolicy_shareDecaySeconds :: Lens' FairsharePolicy (Maybe Int) Source #
The amount of time (in seconds) to use to calculate a fair share percentage for each fair share identifier in use. A value of zero (0) indicates that only current usage is measured. The decay allows for more recently run jobs to have more weight than jobs that ran earlier. The maximum supported value is 604800 (1 week).
fairsharePolicy_shareDistribution :: Lens' FairsharePolicy (Maybe [ShareAttributes]) Source #
An array of SharedIdentifier
objects that contain the weights for the
fair share identifiers for the fair share policy. Fair share identifiers
that aren't included have a default weight of 1.0
.