-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(@aws-cdk/aws-kinesisanalytics-flink): Add support to Apache Flink v1.13 #16985
Comments
Hi, @mattiamatrix. If you can submit a PR for this, I'd be happy to review it. |
I think it's not available in Cloudformation yet https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment I'm not sure what to do in this cases. |
Did you try to deploy version 1.13? I could deploy it successfully in region us-east-1 using this code snippet: new flink.Application(this, 'App', {
code: flink.ApplicationCode.fromAsset(path.join(__dirname, 'code-asset')),
runtime: flink.Runtime.of('FLINK-1_13'),
}); Probably the CloudFormation documentation is not up to date yet. Maybe you can wait a few days to see if AWS updates the documentation automatically. If not, you can try to add the version by creating a pull request for the documentation. There is a link named "Edit this page on GitHub" at the bottom of the CloudFormation documentation. If you can also deploy the new version, I would suggest that you proceed with your pull request. |
True, thanks @jumic, it works also in eu-west-2. @otaviomacedo, #17019 can be reviewed. |
Add support to Flink 1.13 in construct `@aws-cdk/aws-kinesisanalytics-flink » Application` This fixes #16985 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
|
Add support to Flink 1.13 in construct `@aws-cdk/aws-kinesisanalytics-flink » Application` This fixes aws#16985 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Description
Amazon Kinesis Data Analytics now supports Apache Flink v1.13 (LINK).
Please add support to Apache Flink v1.13 to the L2 construct for Kinesis Analytics Flink applications.
Use Case
Use Apache Flink v1.13 Kinesis Analytics Flink applications deployed with CDK.
Proposed Solution
Add static variable
FLINK_1_13
in class@aws-cdk_aws-kinesisanalytics-flink.Runtime
.Other information
#17019
Acknowledge
The text was updated successfully, but these errors were encountered: