Show / Hide Table of Contents

Class FlexFitFleetAssignmentPolicy

Similar to best-fit, but with the ability for the system to use larger fleets if the smallest sufficient fleet is not available, up to a specified max shaped fleet, based on a user-configured threshold value.

Inheritance
object
FleetAssignmentPolicy
FlexFitFleetAssignmentPolicy
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BatchService.Models
Assembly: OCI.DotNetSDK.Batch.dll
Syntax
public class FlexFitFleetAssignmentPolicy : FleetAssignmentPolicy

Properties

Threshold

Declaration
[JsonProperty(PropertyName = "threshold")]
public float? Threshold { get; set; }
Property Value
Type Description
float?

Specifies how much larger a fleet's nodes (shape) can be to still be considered for a task. If threshold is not supplied the task will use any sufficient node available regards to minimum hardware requirements.

In this article
Back to top