ArkFlow v0.2.0-rc1 is now available!
· 2 min read
We are excited to announce the release of ArkFlow v0.2.0-rc1! ArkFlow is a high-performance Rust stream processing engine that provides powerful data stream processing capabilities. This version brings many important features and improvements.
Key Features
Diverse Component Support
Input Components
- Kafka: Support for consuming messages from Kafka topics
- MQTT: Receive data from MQTT brokers
- HTTP: Receive data through HTTP endpoints
- Memory: Read data from memory message queues
- File: Read data from files using SQL queries
- Generate: Generate test data
- Database: Query data from databases (MySQL, PostgreSQL, SQLite, Duckdb)
Output Components
- Kafka: Write messages to Kafka topics
- MQTT: Publish messages to MQTT brokers
- HTTP: Send messages to HTTP servers
- Drop: Discard messages
- Stdout: Output messages to the console
Buffer Components
- Memory Buffer: Provides memory message queues for temporary message storage and buffering, with backpressure support
Powerful Processing Capabilities
SQL Query Support
- Built-in SQL processor using DataFusion as the query engine
- Support for rich SQL features:
Data Processing
- JSON processing
- Protobuf encoding/decoding
- Batch processing support
Extensibility
- Modular design
- Easy to extend with new input, output, and processor components
Quick Start
- Create a configuration file
config.yaml
:
logging:
level: info
streams:
- input:
type: "generate"
context: '{ "timestamp": 1625000000000, "value": 10, "sensor": "temp_1" }'
interval: 1ms
batch_size: 1000
buffer:
type: "memory"
capacity: 10
timeout: 10s
pipeline:
thread_num: 4
processors:
- type: "json_to_arrow"
- type: "sql"
query: "SELECT sum(value) as value ,avg(value) , 0 as x FROM flow"
- type: "arrow_to_json"
output:
type: "http"
url: "http://example.com/data"
method: "POST"
timeout_ms: 90
retry_count: 1
- Run ArkFlow:
./arkflow -c config.yaml
Next Steps
We will continue to improve and optimize ArkFlow, adding more features and component support. Community contributions and feedback are welcome!