Stream processing made easy
-
Configuration over code, cloud-native framework built on top of Apache Flink for stateful processing of real-time streaming data.
+
Configuration over code, cloud-native framework built on top of Apache Flink for stateful processing of real-time and historical streaming data.
Documentation
@@ -40,9 +40,9 @@ export default function Home() {
Built for scale
Dagger or Data Aggregator is an easy-to-use, configuration over code, cloud-native
- framework built on top of Apache Flink for stateful processing of real-time streaming data.
- With Dagger, you don't need to write custom applications to process data
- in real-time. Instead, you can write SQLs to do the processing and analysis on streaming data.
+ framework built on top of Apache Flink for stateful processing of both real time and historical streaming data.
+ With Dagger, you don't need to write custom applications to process data as a stream.
+ Instead, you can write SQLs to do the processing and analysis on streaming data.
Add your own sink to dagger with a clearly defined interface or
- choose from already provided ones.
+ choose from already provided ones. Use Kafka Source for processing real time data
+ or opt for Parquet Source to stream historical data from Parquet Files.
),
},
@@ -138,7 +139,7 @@ export default function Home() {
title: 'Stream Enrichment',
content: (
- Enrich Kafka messages from HTTP endpoints or database sources to bring
+ Enrich streamed messages from HTTP endpoints or database sources to bring
offline & reference data context to real-time processing.
),
@@ -165,11 +166,20 @@ export default function Home() {
title: 'Stream Transformations',
content: (
- Convert Kafka messages on the fly for a variety of
+ Convert messages on the fly for a variety of
use-cases such as feature engineering.
),
},
+ {
+ title: 'Support for Real Time and Historical Data Streaming',
+ content: (
+
+ Use Kafka Source for processing real time data or opt for Parquet Source
+ to stream historical data from Parquet Files.
+
+ ),
+ },
]}
/>