I am trying to deploy a Python Flink application on AWS Kinesis Data Analytics. I followed the official documentation on https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-python-creating.html
I want to create a source table using the TableAPI that read from Confluent Kafka and deserialize the messages using avro-confluent format.
Following the connectors documentation https://nightlies.apache.org/flink/flink-docs-release-1.13/docs/connectors/table/kafka/ and https://nightlies.apache.org/flink/flink-docs-release-1.13/docs/connectors/table/formats/avro-confluent/ I will need to include two jar files as dependencies. But the property jarfile
on
"ApplicationConfiguration": {
"EnvironmentProperties": {
"PropertyGroups": [
{
"PropertyGroupId": "kinesis.analytics.flink.run.options",
"PropertyMap": {
"python": "MyApplication/main.py",
"jarfile": "MyApplication/lib/myJarFile.jar",
"pyFiles": "MyApplication/lib/myDependentFile.py",
"pyArchives": "MyApplication/lib/myArchive.zip"
}
},
it seems to accept only one jar file as dependencies.
Any idea on how to include these two jar files as dependecies ?
Thank you
source https://stackoverflow.com/questions/71271291/deploy-a-python-flink-application-on-aws-kinesis
Comments
Post a Comment