Application Scaling in Kinesis Data Analytics for Apache Flink
You can configure the parallel execution of tasks and the allocation of resources for
Amazon Kinesis Data Analytics for Apache Flink to implement scaling. For information about how Apache Flink schedules
parallel instances of tasks, see Parallel Execution
Topics
Configuring Application Parallelism and ParallelismPerKPU
You configure the parallel execution for your Kinesis Data Analytics application tasks (such as reading
from a source or executing an operator) using the following ParallelismConfiguration
properties:
-
Parallelism
— Use this property to set the default Apache Flink application parallelism. All operators, sources, and sinks execute with this parallelism unless they are overridden in the application code. The default is1
, and the default maximum is256
. -
ParallelismPerKPU
— Use this property to set the number of parallel tasks that can be scheduled per Kinesis Processing Unit (KPU) of your application. The default is1
, and the maximum is8
. For applications that have blocking operations (for example, I/O), a higher value ofParallelismPerKPU
leads to full utilization of KPU resources.
Note
The limit for Parallelism
is equal to ParallelismPerKPU
times the limit for KPUs (which has a default of 32). The KPUs limit can be increased by requesting a limit increase. For instructions on how to
request a limit increase, see "To request a limit increase" in Service Quotas.
For information about setting task parallelism for a specific operator, see Setting the Parallelism: Operator
Allocating Kinesis Processing Units
Kinesis Data Analytics provisions capacity as KPUs. A single KPU provides you with 1 vCPU and 4 GB of memory. For every KPU allocated, 50 GB of running application storage is also provided.
Kinesis Data Analytics calculates the KPUs that are needed to run your application using the
Parallelism
and ParallelismPerKPU
properties, as
follows:
Allocated KPUs for the application = Parallelism/ParallelismPerKPU
Kinesis Data Analytics quickly gives your applications resources in response to spikes in throughput or
processing activity. It removes resources from your application gradually after the
activity spike has passed. To disable the automatic allocation of resources, set the
AutoScalingEnabled
value to false
, as described
later in Updating Your Application's Parallelism.
The default limit for KPUs for your application is 32. For instructions on how to request an increase to this limit, see "To request a limit increase" in Service Quotas.
Updating Your Application's Parallelism
This section contains sample requests for API actions that set an application's parallelism. For more examples and instructions for how to use request blocks with API actions, see Kinesis Data Analytics API Example Code.
The following example request for the CreateApplication
action sets parallelism when you are
creating an application:
{ "ApplicationName": "string", "RuntimeEnvironment":"FLINK-1_15", "ServiceExecutionRole":"arn:aws:iam::123456789123:role/myrole", "ApplicationConfiguration": { "ApplicationCodeConfiguration":{ "CodeContent":{ "S3ContentLocation":{ "BucketARN":"arn:aws:s3:::mybucket", "FileKey":"myflink.jar", "ObjectVersion":"AbCdEfGhIjKlMnOpQrStUvWxYz12345" } }, "CodeContentType":"ZIPFILE" }, "FlinkApplicationConfiguration": { "ParallelismConfiguration": { "AutoScalingEnabled": "true", "ConfigurationType": "CUSTOM", "Parallelism": 4, "ParallelismPerKPU": 4 } } } }
The following example request for the UpdateApplication
action sets parallelism for an existing
application:
{ "ApplicationName": "MyApplication", "CurrentApplicationVersionId": 4, "ApplicationConfigurationUpdate": { "FlinkApplicationConfigurationUpdate": { "ParallelismConfigurationUpdate": { "AutoScalingEnabledUpdate": "true", "ConfigurationTypeUpdate": "CUSTOM", "ParallelismPerKPUUpdate": 4, "ParallelismUpdate": 4 } } } }
The following example request for the UpdateApplication
action disables parallelism for an existing
application:
{ "ApplicationName": "MyApplication", "CurrentApplicationVersionId": 4, "ApplicationConfigurationUpdate": { "FlinkApplicationConfigurationUpdate": { "ParallelismConfigurationUpdate": { "AutoScalingEnabledUpdate": "false" } } } }
Automatic Scaling
Kinesis Data Analytics elastically scales your application’s parallelism to accommodate the data throughput of your source and your operator complexity for most scenarios. Kinesis Data Analytics monitors the resource (CPU) usage of your application, and elastically scales your application's parallelism up or down accordingly:
Your application scales up (increases parallelism) when your CPU usage remains at 75 percent or above for 15 minutes.
Your application scales down (decreases parallelism) when your CPU usage remains below 10 percent for six hours.
Kinesis Data Analytics will
not reduce your application's CurrentParallelism
value to less than your application's
Parallelism
setting.
When the Kinesis Data Analytics service is scaling your application, it will be in the AUTOSCALING
status. You can check your current application status using the
DescribeApplication or
ListApplications actions. While the service is scaling your application,
the only valid API action you can use is
StopApplication with the Force
parameter set to true
.
You can use
the AutoScalingEnabled
property (part of FlinkApplicationConfiguration
) to enable or disable auto scaling behavior. Your Amazon account is charged for KPUs that Kinesis Data Analytics provisions which is a function of your application's parallelism
and parallelismPerKPU
settings. An activity
spike increases your Kinesis Data Analytics costs.
For information about pricing, see Amazon Kinesis Data Analytics
pricing
Note the following about application scaling:
Automatic scaling is enabled by default.
Scaling doesn't apply to Studio notebooks. However, if you deploy a Studio notebook as an application with durable state, then scaling will apply to the deployed application.
Your application has a default limit of 32 KPUs. For more information, see Quota.
When autoscaling updates application parallelism, the application experiences downtime. To avoid this downtime, do the following:
Disable automatic scaling
Configure your application's
parallelism
andparallelismPerKPU
with the UpdateApplication action. For more information about setting your application's parallelism settings, see Updating Your Application's Parallelism following.Periodically monitor your application's resource usage to verify that your application has the correct parallelism settings for its workload. For information about monitoring allocation resource usage, see Viewing Kinesis Data Analytics Metrics and Dimensions.
maxParallelism considerations
Autoscale logic will prevent scaling a Flink job to a parallelism that will cause interference with the job and operator
maxParallelism
. For example, if a simple job with only a source and a sink where the source hasmaxParallelism
16 and thesink
has 8, we will not autoscale the job to above 8.If
maxParallelism
is not set for a job, Flink will default to 128. Therefore, if you think that a job will need to run at a higher parallelism than 128, you will have to set that number for your application.If you expect to see your job autoscale but are not seeing it, ensure your
maxParallelism
values allow for it.
For additional information, see Enhanced monitoring and automatic scaling for Apache Flink
For an example, see
kda-flink-app-autoscaling