This directory contains example configurations and pipelines for KaflowSQL.
examples/
├── pipelines/ # Pipeline configuration examples
├── configs/ # Configuration file examples
└── README.md # This file
A comprehensive example showing user event enrichment with profile data and transaction history.
A complex financial transaction processing pipeline with extensive business logic and transformations.
Basic configuration template with placeholder values for local development.
Configuration optimized for Docker container deployment.
Production-ready configuration with security and performance settings.
-
Copy examples to active directory:
cp examples/pipelines/user_activity.yaml pipelines/ cp examples/configs/config.yaml.example config.yaml
-
Customize for your environment:
- Update Kafka broker addresses
- Configure Schema Registry URL
- Set appropriate TTL values
- Adjust S3 settings for checkpointing
-
Test your configuration:
make check make build ./bin/engine
- Production Data: The examples contain references to production systems. Always customize for your environment.
- Security: Never commit real credentials. Use environment variables or secure secret management.
- Performance: Adjust TTL and buffer settings based on your throughput requirements.
For more information, see the main README.md documentation.