August 2026 Summaries
7 posts from Tinybird
Filter
Month:
Year:
Post Summaries
Back to Blog
The newly introduced Overview page and organization-wide Logs explorer in Tinybird have become generally available, offering enhanced visibility and accessibility across an organization for all members, not just administrators. As Tinybird setups expand, understanding the entire infrastructure becomes crucial, and these tools address that need by providing a centralized point of access to monitor usage, infrastructure metrics, and recent errors. The Overview page acts as a comprehensive entry point summarizing workspace activities, usage metrics, and errors, while the Logs explorer aggregates logs from all workspaces, allowing for efficient troubleshooting and error investigation. This development transforms visibility into a shared responsibility among team members, enabling developers and other personnel to independently check resource statuses and diagnose issues without waiting for administrative intervention. Despite this broadened access, administrative and sensitive operations remain restricted to organization admins, ensuring a balance between visibility and control. These new features mark a shift from purely administrative tasks to a more collaborative monitoring and troubleshooting approach, with further improvements planned to streamline the process from problem detection to root cause identification.
Aug 04, 2026
857 words in the original blog post.
OpenTelemetry standardizes the process of emitting traces, metrics, and logs while leaving the choice of storage for analytical queries open, with ClickHouse® being a popular option for handling extensive data needs. A successful integration between OpenTelemetry and ClickHouse® relies heavily on the design of the OpenTelemetry Collector, which must correctly configure receivers, processors, exporters, and schemas for each signal. Proper setup results in fast and efficient data handling, whereas mistakes can lead to costly and ineffective data archives. The text emphasizes the importance of maintaining separate collector pipelines for different signals, implementing sampling and filtering rules, and managing cardinality to avoid overwhelming the system. It also discusses the appropriate database layout and retention strategies, advocating for separate databases per environment and a focus on rollups rather than raw data to satisfy long-term data needs. Additionally, it highlights the significance of treating collector configurations with the same rigor as application code to ensure stability and security, suggesting that Tinybird can be used for OpenTelemetry analytics APIs when real-time data ingestion paths are required.
Aug 04, 2026
1,724 words in the original blog post.
Hevo Data is a managed ELT pipeline product that facilitates the connection of data sources, allowing for scheduled or change data capture (CDC) replication to a destination, such as ClickHouse®, which is particularly effective for interactive analytics. To ensure seamless integration and avoid inconsistencies, it's crucial to establish a load contract that defines the creation permissions, update processes, and query conditions after merges. Users should confirm the capabilities of their selected destination and understand the specifics of how Hevo operates within their plan, including whether ClickHouse® is a native destination or requires an intermediary like S3. Hevo is particularly suitable for teams needing numerous SaaS and database sources without building connectors, with a focus on UI-driven pipelines rather than comprehensive solutions like Airflow. For effective pipeline management, it's vital to write a load contract, manage table designs, and understand the implications of different pipeline modes. Additionally, the choice between transforming data within Hevo or post-landing in ClickHouse® can impact the efficiency and clarity of data models, highlighting the importance of tailoring strategies to specific needs, such as using append-only event tables for immutable data. Effective schema management, connectivity configurations, and understanding of Hevo’s capabilities relative to alternatives like Fivetran and Stitch are essential to optimize performance and ensure data reliability.
Aug 04, 2026
1,712 words in the original blog post.
Segment serves as a customer data pipeline, efficiently collecting and routing event streams and traits, while ClickHouse® is utilized for aggregating and serving data at high speed for interactive analytics. A successful integration between Segment and ClickHouse® requires a clear separation of roles: Segment should not be treated as a database, nor should ClickHouse® be used as an identity graph. Various integration paths include using Segment's warehouse destinations with ClickHouse® for reliable data syncing, employing Segment Functions or webhooks for fresher data, and leveraging object storage as a buffer. Proper schema management, such as using ReplacingMergeTree for safe reprocessing and promoting relevant properties, ensures efficient data handling. The integration strategy should accommodate data freshness, identity management, and property promotion while considering security and cost implications, ensuring that Segment's role as a data collection and activation fabric complements ClickHouse®'s analytical capabilities.
Aug 04, 2026
1,649 words in the original blog post.
The text provides a comprehensive overview of integrating Confluent Cloud's managed Kafka with ClickHouse for efficient data streaming and analytics handling. It outlines the challenges and strategies for setting up such an integration, emphasizing the importance of consumer choices, authentication methods, schema strategies, and lag service level agreements (SLAs). The guide discusses different consumer shapes, such as using ClickHouse's Kafka engine, Kafka Connect sink, or Tinybird, based on network setup and operational requirements. It highlights the necessity of having a dedicated Confluent principal for topic access, establishing a clear network dependency path, and maintaining destination tables with appropriate ordering. The text also underscores the need for a written freshness budget, alerts for consumer lag and errors, and a plan for handling problematic messages. Furthermore, it explores the roles of schema registry and partition design, and provides solutions for common failure modes, ensuring a robust and reliable data pipeline between Confluent and ClickHouse.
Aug 04, 2026
1,881 words in the original blog post.
A common issue among data teams using ClickHouse for scaling analytical pipelines is treating it as a transactional database, leading to repeated mistakes that hinder performance. To address these, it's crucial to differentiate between OLTP and OLAP databases; ClickHouse, an OLAP database, is optimized for complex reads across vast data sets. Key strategies include filtering data early to minimize unnecessary processing, leveraging sorting keys for efficient data retrieval, performing data transformations during ingestion instead of at query time, and defining data types accurately to reduce computational overhead. Joins should be optimized by filtering and reducing data before combining, and materialized views can be used to precompute frequent transformations. Proper partitioning and the use of tools like EXPLAIN and query logs are essential for continuous monitoring and optimization, aiming to minimize resource consumption by reducing unnecessary data reads and calculations. Through these optimizations, data teams can significantly decrease the computational resources required, exemplified by a case where a startup reduced its instance capacity needs by two-thirds, highlighting the importance of making ClickHouse perform less redundant work.
Aug 03, 2026
2,943 words in the original blog post.
The integration of ClickHouse® and Redpanda provides a high-performance solution for event streaming without the overhead of the Java Virtual Machine (JVM), offering Kafka API compatibility with simplified operations. Redpanda's advantages include lower latency and easier operations compared to Apache Kafka, while maintaining full API compatibility, and it eliminates the need for external dependencies like ZooKeeper. The integration allows ClickHouse® to consume events using its native Kafka table engine, enabling real-time analytics with predictable performance due to its C++ implementation and thread-per-core architecture. However, successful deployment requires understanding various operational complexities, such as consumer parallelism limits, offset management strategies, and error handling patterns, which differ from traditional Kafka ecosystems. An alternative to managing these complexities is using Tinybird, a managed real-time data platform that eliminates the need for streaming infrastructure by directly connecting streaming sources and providing real-time analytics as production APIs, thereby simplifying operations and ensuring consistent performance.
Aug 02, 2026
3,561 words in the original blog post.