Most of the examples in this directory are designed to also run locally, withing IntelliJ, without code changes.
You do not need to run a local Flink cluster or installing Flink on your development machine.
As long as you have access to the external resources, you can run your application directly in IntelliJ, like any other Java application.
Most of the examples are designed to detect when running locally, and read the runtime properties from the
flink-application-properties-dev.json
located in the resource folder of the project.
Before running the application, edit the flink-application-properties-dev.json
update the file to match the actual
resource names and locations (e.g. bucket name, stream name) used by your application.
All dependencies defined in the POM with provided
scope must be included in the classpath when running the applicatin locally.
- Create a Run Configuration for the main class of your application
- Edit Run Configuration, click Modify options and select Add dependencies with "provided" scope to the classpath
Create an AWS profile on your machine with sufficient permissions to access all the AWS services the application is using.
Use the AWS toolkit IntelliJ plugin to run the application using that profile:
- In the AWS plugin, select the profile and the region
- Create a Run Configuration for the main class of your application
- Edit Run Configuration: under AWS configuration, select Use the currently selected credential profile/region.
Note that, if your application connects to any AWS service using VPC networking, like MSK or RDS, you need to set up connectivity between your developer machine and the VPC hosting the service, for example using a VPN.
If this is not possible, you should consider running a local version of the service, installed directly or your machine in a container.