Apache Flink - Stream processing framework
Everything you need to deploy Flink with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Flink up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Flink with:
blastdock init flink
Interactive mode:
blastdock init flink -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Flink installation with these configuration options.
JobManager web UI port
Number of task slots
Complete Docker Compose configuration for Flink deployment.
version: '3.8'
services:
jobmanager:
image: flink:latest
container_name: {{ project_name }}_jobmanager
restart: unless-stopped
ports:
- "8081"
environment:
0: JOB_MANAGER_RPC_ADDRESS=jobmanager
1: |
jobmanager.rpc.address: jobmanager
taskmanager.numberOfTaskSlots: {{ taskmanager_slots }}
volumes:
networks:
volumes:
- flink_data:
networks:
0: