Class ParallelismConfiguration
- java.lang.Object
-
- software.amazon.awssdk.services.kinesisanalyticsv2.model.ParallelismConfiguration
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<ParallelismConfiguration.Builder,ParallelismConfiguration>
@Generated("software.amazon.awssdk:codegen") public final class ParallelismConfiguration extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ParallelismConfiguration.Builder,ParallelismConfiguration>
Describes parameters for how a Managed Service for Apache Flink application executes multiple tasks simultaneously. For more information about parallelism, see Parallel Execution in the Apache Flink Documentation.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceParallelismConfiguration.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanautoScalingEnabled()Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.static ParallelismConfiguration.Builderbuilder()ConfigurationTypeconfigurationType()Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.StringconfigurationTypeAsString()Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Integerparallelism()Describes the initial number of parallel tasks that a Managed Service for Apache Flink application can perform.IntegerparallelismPerKPU()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.List<SdkField<?>>sdkFields()static Class<? extends ParallelismConfiguration.Builder>serializableBuilderClass()ParallelismConfiguration.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
configurationType
public final 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.If the service returns an enum value that is not available in the current SDK version,
configurationTypewill returnConfigurationType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromconfigurationTypeAsString().- Returns:
- 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. - See Also:
ConfigurationType
-
configurationTypeAsString
public final String configurationTypeAsString()
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.If the service returns an enum value that is not available in the current SDK version,
configurationTypewill returnConfigurationType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromconfigurationTypeAsString().- Returns:
- 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. - See Also:
ConfigurationType
-
parallelism
public final 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.- Returns:
- 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.
-
parallelismPerKPU
public final 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.
- Returns:
- 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.
-
autoScalingEnabled
public final Boolean autoScalingEnabled()
Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.
- Returns:
- Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.
-
toBuilder
public ParallelismConfiguration.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<ParallelismConfiguration.Builder,ParallelismConfiguration>
-
builder
public static ParallelismConfiguration.Builder builder()
-
serializableBuilderClass
public static Class<? extends ParallelismConfiguration.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-