December 2022 Summaries
2 posts from Redpanda
Filter
Month:
Year:
Post Summaries
Back to Blog
In this blog post, the author explains how to set up a basic Change Data Capture (CDC) pipeline for replicating data from a PostgreSQL operational database to a data warehouse using Redpanda and Debezium. The setup involves creating Docker containers to run PostgreSQL with user and payment tables, generating data with a Python script, and using Redpanda as a Kafka-compatible streaming platform to capture database changes. Debezium is employed to track and replicate these changes, storing them in MinIO, an S3-compatible object storage, in Parquet format. DuckDB, an in-process OLAP database, is used to query the data from the MinIO data lake, demonstrating the integration of various tools to facilitate real-time data analytics and processing. The post highlights the simplicity and effectiveness of using open-source tools to establish a robust data pipeline, with all necessary code available on GitHub for easy replication.
Dec 20, 2022
2,772 words in the original blog post.
Clickstream data, which records user interactions on websites, is crucial for understanding user behavior and improving website engagement. Analyzing this data can reveal trends and patterns, allowing businesses to make timely adjustments. The article discusses using Redpanda, a Kafka-compatible streaming data platform, and Decodable, a managed data platform, to build a real-time data pipeline for analyzing clickstream data. By setting up a Redpanda cluster and using Decodable to define SQL-based transformations, users can create a system that processes and aggregates clickstream data efficiently. The process involves generating mock clickstream data, utilizing Docker for deployment, and employing ngrok for internet accessibility. The pipeline facilitates real-time insights, enabling applications such as live dashboards or machine learning features. The combination of Redpanda and Decodable simplifies stream processing, making it as straightforward as writing SQL queries.
Dec 13, 2022
4,138 words in the original blog post.