Interface ParallelismConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParallelismConfiguration.Builder,ParallelismConfiguration>,SdkBuilder<ParallelismConfiguration.Builder,ParallelismConfiguration>,SdkPojo
- Enclosing class:
- ParallelismConfiguration
public static interface ParallelismConfiguration.Builder extends SdkPojo, CopyableBuilder<ParallelismConfiguration.Builder,ParallelismConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParallelismConfiguration.BuilderautoScalingEnabled(Boolean autoScalingEnabled)Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.ParallelismConfiguration.BuilderconfigurationType(String configurationType)Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.ParallelismConfiguration.BuilderconfigurationType(ConfigurationType configurationType)Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.ParallelismConfiguration.Builderparallelism(Integer parallelism)Describes the initial number of parallel tasks that a Managed Service for Apache Flink application can perform.ParallelismConfiguration.BuilderparallelismPerKPU(Integer parallelismPerKPU)Describes the number of parallel tasks that a Managed Service for Apache Flink application can perform per Kinesis Processing Unit (KPU) used by the application.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
configurationType
ParallelismConfiguration.Builder configurationType(String configurationType)
Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service. You must set this property to
CUSTOMin order to change your application'sAutoScalingEnabled,Parallelism, orParallelismPerKPUproperties.- Parameters:
configurationType- Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service. You must set this property toCUSTOMin order to change your application'sAutoScalingEnabled,Parallelism, orParallelismPerKPUproperties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationType,ConfigurationType
-
configurationType
ParallelismConfiguration.Builder configurationType(ConfigurationType configurationType)
Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service. You must set this property to
CUSTOMin order to change your application'sAutoScalingEnabled,Parallelism, orParallelismPerKPUproperties.- Parameters:
configurationType- Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service. You must set this property toCUSTOMin order to change your application'sAutoScalingEnabled,Parallelism, orParallelismPerKPUproperties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationType,ConfigurationType
-
parallelism
ParallelismConfiguration.Builder parallelism(Integer parallelism)
Describes the initial number of parallel tasks that a Managed Service for Apache Flink application can perform. If
AutoScalingEnabledis set to True, Managed Service for Apache Flink increases theCurrentParallelismvalue in response to application load. The service can increase theCurrentParallelismvalue up to the maximum parallelism, which isParalellismPerKPUtimes the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce theCurrentParallelismvalue down to theParallelismsetting.- Parameters:
parallelism- Describes the initial number of parallel tasks that a Managed Service for Apache Flink application can perform. IfAutoScalingEnabledis set to True, Managed Service for Apache Flink increases theCurrentParallelismvalue in response to application load. The service can increase theCurrentParallelismvalue up to the maximum parallelism, which isParalellismPerKPUtimes the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce theCurrentParallelismvalue down to theParallelismsetting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parallelismPerKPU
ParallelismConfiguration.Builder parallelismPerKPU(Integer parallelismPerKPU)
Describes the number of parallel tasks that a Managed Service for Apache Flink application can perform per Kinesis Processing Unit (KPU) used by the application. For more information about KPUs, see Amazon Managed Service for Apache Flink Pricing.
- Parameters:
parallelismPerKPU- Describes the number of parallel tasks that a Managed Service for Apache Flink application can perform per Kinesis Processing Unit (KPU) used by the application. For more information about KPUs, see Amazon Managed Service for Apache Flink Pricing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoScalingEnabled
ParallelismConfiguration.Builder autoScalingEnabled(Boolean autoScalingEnabled)
Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.
- Parameters:
autoScalingEnabled- Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-