Deliver data to Amazon Kinesis
Amazon Kinesis cost-effectively processes and analyzes streaming data at any scale as a fully managed service.
Quick Start
Connect in minutes with SQL
Use CREATE SINK to deliver processed data from RisingWave to Amazon Kinesis. Define your transformation logic in SQL and let RisingWave handle delivery, retries, and exactly-once semantics.
CREATE SINK kinesis_sink AS
SELECT
order_status,
COUNT(*) as order_count,
SUM(total_amount) as total_revenue,
AVG(total_amount) as avg_order_value,
MIN(last_updated) as first_order_time,
MAX(last_updated) as last_order_time
FROM orders_rw
WITH (
connector = 'kinesis',
stream = 'kinesis-sink-demo',
aws.region = 'us-east-1',
aws.credentials.access_key_id = 'your_access_key',
aws.credentials.secret_access_key = 'your_secret_key'
)
FORMAT DEBEZIUM ENCODE JSON;For comprehensive configuration details, please refer to the Kinesis connector documentation.
Capabilities
What you can do with RisingWave + Amazon Kinesis
Continuous Delivery
Automatically sink processed results from RisingWave to Amazon Kinesis as new data arrives. No batch jobs needed.
Exactly-once Semantics
Guaranteed data correctness when delivering to Amazon Kinesis with barrier-based checkpointing.
Upsert & Append
Support both append-only and upsert modes when sinking to Amazon Kinesis, depending on your use case.
Sink Decoupling
Built-in buffering ensures RisingWave stays stable even if Amazon Kinesis experiences temporary slowdowns.
Resources
Learn more
Complete configuration reference, authentication options, and advanced features for the Amazon Kinesis destination connector.
RisingWave also supports Amazon Kinesis as a source. View the source connector.
Get RisingWave running locally in 5 minutes and try your first streaming pipeline.
Start streaming in minutes
Connect to Amazon Kinesis with just a few lines of SQL. No infrastructure to manage, no code to write.