Package software.amazon.awscdk.services.kinesisanalytics.flink.alpha
Kinesis Analytics Flink
---
The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
This package provides constructs for creating Kinesis Analytics Flink applications. To learn more about using using managed Flink applications, see the AWS developer guide.
Creating Flink Applications
To create a new Flink application, use the Application
construct:
import path.*; import software.amazon.awscdk.services.cloudwatch.*; import software.amazon.awscdk.*; import software.amazon.awscdk.integtests.alpha.*; import software.amazon.awscdk.services.kinesisanalytics.flink.alpha.*; App app = new App(); Stack stack = new Stack(app, "FlinkAppTest"); Runtime[] flinkRuntimes = List.of(Runtime.FLINK_1_6, Runtime.FLINK_1_8, Runtime.FLINK_1_11, Runtime.FLINK_1_13, Runtime.FLINK_1_15, Runtime.FLINK_1_18, Runtime.FLINK_1_19, Runtime.FLINK_1_20); flinkRuntimes.forEach((runtime) => { const flinkApp = new flink.Application(stack, `App-${runtime.value}`, { code: flink.ApplicationCode.fromAsset(path.join(__dirname, 'code-asset')), runtime: runtime, }); new cloudwatch.Alarm(stack, `Alarm-${runtime.value}`, { metric: flinkApp.metricFullRestarts(), evaluationPeriods: 1, threshold: 3, }); }); IntegTest.Builder.create(app, "ApplicationTest") .testCases(List.of(stack)) .build();
The code
property can use fromAsset
as shown above to reference a local jar
file in s3 or fromBucket
to reference a file in s3.
import path.*; import software.amazon.awscdk.services.s3.assets.*; import software.amazon.awscdk.*; import software.amazon.awscdk.services.kinesisanalytics.flink.alpha.*; App app = new App(); Stack stack = new Stack(app, "FlinkAppCodeFromBucketTest"); Asset asset = Asset.Builder.create(stack, "CodeAsset") .path(join(__dirname, "code-asset")) .build(); IBucket bucket = asset.getBucket(); String fileKey = asset.getS3ObjectKey(); Application.Builder.create(stack, "App") .code(ApplicationCode.fromBucket(bucket, fileKey)) .runtime(Runtime.FLINK_1_19) .build(); app.synth();
The propertyGroups
property provides a way of passing arbitrary runtime
properties to your Flink application. You can use the
aws-kinesisanalytics-runtime library to retrieve these
properties.
Bucket bucket; Application flinkApp = Application.Builder.create(this, "Application") .propertyGroups(Map.of( "FlinkApplicationProperties", Map.of( "inputStreamName", "my-input-kinesis-stream", "outputStreamName", "my-output-kinesis-stream"))) // ... .runtime(Runtime.FLINK_1_20) .code(ApplicationCode.fromBucket(bucket, "my-app.jar")) .build();
Flink applications also have specific configuration for passing parameters when the Flink job starts. These include parameters for checkpointing, snapshotting, monitoring, and parallelism.
Bucket bucket; Application flinkApp = Application.Builder.create(this, "Application") .code(ApplicationCode.fromBucket(bucket, "my-app.jar")) .runtime(Runtime.FLINK_1_20) .checkpointingEnabled(true) // default is true .checkpointInterval(Duration.seconds(30)) // default is 1 minute .minPauseBetweenCheckpoints(Duration.seconds(10)) // default is 5 seconds .logLevel(LogLevel.ERROR) // default is INFO .metricsLevel(MetricsLevel.PARALLELISM) // default is APPLICATION .autoScalingEnabled(false) // default is true .parallelism(32) // default is 1 .parallelismPerKpu(2) // default is 1 .snapshotsEnabled(false) // default is true .logGroup(new LogGroup(this, "LogGroup")) .build();
Flink applications can optionally be deployed in a VPC:
Bucket bucket; Vpc vpc; Application flinkApp = Application.Builder.create(this, "Application") .code(ApplicationCode.fromBucket(bucket, "my-app.jar")) .runtime(Runtime.FLINK_1_20) .vpc(vpc) .build();
-
ClassDescription(experimental) The L2 construct for Flink Kinesis Data Applications.(experimental) A fluent builder for
Application
.(experimental) Attributes used for importing an Application with Application.fromApplicationAttributes.A builder forApplicationAttributes
An implementation forApplicationAttributes
(experimental) Code configuration providing the location to a Flink application JAR file.(experimental) The return type ofApplicationCode.bind
.A builder forApplicationCodeConfig
An implementation forApplicationCodeConfig
(experimental) Props for creating an Application construct.A builder forApplicationProps
An implementation forApplicationProps
(experimental) An interface expressing the public properties on both an imported and CDK-created Flink application.Internal default implementation forIApplication
.A proxy class which represents a concrete javascript instance of this type.(experimental) Available log levels for Flink applications.(experimental) Granularity of metrics sent to CloudWatch.Deprecated.Deprecated.Deprecated.(experimental) Available Flink runtimes for Kinesis Analytics.
Map<String,Object>
, etc...