July 2026 Summaries
4 posts from Confluent
Filter
Month:
Year:
Post Summaries
Back to Blog
Upvest, a Berlin-based fintech company, is revolutionizing embedded investment solutions for financial institutions by focusing on rapid client onboarding, robust data governance, and operational resilience. Recognized as Confluent's inaugural EMEA Data Streaming Startup of the Year, Upvest is noted for its sophisticated real-time investment infrastructure, which supports major financial institutions like DKB, N26, and Revolut. Since partnering with Confluent in 2021, Upvest has leveraged event-driven architecture to facilitate fast data processing and communication, ensuring compliance with Europe's stringent financial regulations. With Confluent’s cloud-native platform, Upvest achieves high availability and fault tolerance, bolstered by Stream Governance capabilities like Schema Registry for data quality and regulatory compliance. As Upvest continues to expand its transaction volumes, it is poised to enhance its platform with stream processing technologies, such as Confluent Tableflow, to enable real-time analytics and intelligent decision-making, solidifying its position as a leader in building real-time fintech solutions.
Jul 16, 2026
615 words in the original blog post.
Tableflow is a feature in Confluent Cloud that streamlines the conversion of Apache Kafka topics into Apache Iceberg or Delta Lake tables, allowing analytics engines to query streaming data without the need for manual ETL pipelines. By using Confluent's Kora storage layer, Tableflow transforms Kafka data into structured Parquet files and generates the necessary metadata for Iceberg or Delta Lake, subsequently publishing these tables to a REST catalog. This process eliminates the need for custom data pipelines, addressing the common issue of operational data residing in Kafka while analysts require data in data lakes or warehouses. Tableflow automatically handles schematization, type conversions, schema evolution, and catalog publishing, ensuring seamless integration with analytics engines like Snowflake, Databricks, AWS Athena, Amazon Redshift, Trino, and BigQuery. It supports schema evolution through Confluent Schema Registry, which governs compatibility and automatically applies compatible schema changes during the materialization process. This enables organizations to maintain analytics-ready data continuously in sync with their real-time Kafka data, using Amazon S3 as the storage layer and optionally integrating with AWS Glue or other Iceberg-compatible catalogs for SQL-based access.
Jul 10, 2026
1,963 words in the original blog post.
Data streaming has evolved from a specialized tool used by massive tech companies to a fundamental component in event-driven architectures, real-time analytics, and AI pipelines. Initially popularized by LinkedIn's log aggregation, platforms like Apache Kafka, Confluent, and Redpanda now dominate the landscape, each offering unique advantages. Apache Kafka, the open-source pioneer, established the distributed commit log model, while Confluent provides a robust commercial platform built on Kafka with additional capabilities and a fully managed cloud service. Redpanda, a C++ reimplementation of the Kafka API, promises better latency and simpler operations by eliminating the complexities of JVM and ZooKeeper. While Redpanda touts performance benefits and operational simplicity, especially in terms of lower latency under load, Kafka and Confluent offer a mature ecosystem, extensive connectors, and enterprise-grade features. The decision between these platforms often hinges on specific workload priorities, such as latency, ecosystem breadth, operational control, or cost considerations, particularly in cloud deployments. Emerging alternatives like AutoMQ and WarpStream highlight a shift towards leveraging cloud object storage, offering different architectural solutions to traditional broker-local disk models, with Confluent's acquisition of WarpStream signaling a strategic interest in this direction.
Jul 10, 2026
2,187 words in the original blog post.
Modern Kafka clusters are crucial systems that require secure and changeable credentials without downtime, particularly when using SASL PLAIN or SASL SCRAM for authentication. SASL PLAIN is a simple mechanism that sends usernames and passwords but lacks hot-reload capabilities unless backed by a dynamic system like LDAP, while SASL SCRAM provides stronger security using salted password hashes and supports hot-reloading through cluster metadata. This capability is essential for zero-downtime credential rotation, incident response, and operational simplicity by allowing changes without restarting brokers. Credential storage and refresh mechanisms vary between PlainLoginModule, ScramLoginModule, and FileBasedLoginModule, with only the latter two supporting hot-reload. The choice of authentication mechanism affects both security and operational practices, with recommendations for using SCRAM for its security and hot-reloading benefits, and PLAIN only when changes are infrequent or a file-based approach with hot-reload is implemented. Understanding these mechanisms enables better security and smoother operations in Kafka environments.
Jul 06, 2026
1,505 words in the original blog post.