amazonka-batch-2.0: Amazon Batch SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Batch.Types.FairsharePolicy

Description

 
Synopsis

Documentation

data FairsharePolicy Source #

The fair share policy for a scheduling policy.

See: newFairsharePolicy smart constructor.

Constructors

FairsharePolicy' 

Fields

  • computeReservation :: Maybe Int

    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.

  • shareDecaySeconds :: Maybe Int

    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).

  • shareDistribution :: Maybe [ShareAttributes]

    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.

Instances

Instances details
FromJSON FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

ToJSON FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

Generic FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

Associated Types

type Rep FairsharePolicy :: Type -> Type #

Read FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

Show FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

NFData FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

Methods

rnf :: FairsharePolicy -> () #

Eq FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

Hashable FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

type Rep FairsharePolicy Source # 
Instance details

Defined in Amazonka.Batch.Types.FairsharePolicy

type Rep FairsharePolicy = D1 ('MetaData "FairsharePolicy" "Amazonka.Batch.Types.FairsharePolicy" "amazonka-batch-2.0-Ey2VZ5obnq65VwmlrJ2r2K" 'False) (C1 ('MetaCons "FairsharePolicy'" 'PrefixI 'True) (S1 ('MetaSel ('Just "computeReservation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "shareDecaySeconds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "shareDistribution") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ShareAttributes])))))

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.