RSS Amplifier

Blog

Databend Cloud | Data Agent-Ready. One Warehouse. Blog

Databend Cloud | Data Agent-Ready. One Warehouse. Blog

databend.comSource feed ↗10 posts

Live Last read · last published · next check

Written by

Latest posts

From Traditional Partitions to Micro-Partitions—How Snowflake and Databend Reduce Data Scanning

A cluster key is neither a B-tree index nor a set of independent access paths for individual columns. It improves physical data locality so that similar key values tend to land in the same or adjacent micro-partitions or blocks. This narrows each physical unit's Min/Max range, reduces overlap, and allows the engine to prune more data before reading it.

From Kafka to Databend Cloud: Engineering a Trillion-Scale Agent Trace Ingestion Pipeline

This post is written for data engineers building Agent Trace pipelines, log analytics systems, Kafka-to-warehouse ingestion, or high-throughput semi-structured data platforms. It explains how Agent Trace data flows from Kafka into Databend Cloud, and how the open-source project [bend-ingest-kafka](https://github.com/databendcloud/bend-ingest-kafka) is designed for this workload.

From Million-Token Agents to Eval-Ready Data

From Kafka ingestion and schema-flexible raw storage to incremental processing, Evals, and governed analytics for million-token AI workloads.

Databend Product Updates - From Spatial Index Join to Eval Data Pipelines

Over June and July 2026, Databend shipped 182 changes across query optimization, spatial analytics, open lakehouse integration, data pipelines, stability, and security.

From Global Sorts to Sketches

This article explains how Databend combines KLL, Top-N, and Count-Min Sketch (CMS) to build optimizer statistics with lower `ANALYZE` overhead. Together, they balance histogram efficiency with accurate estimates for skewed and high-frequency values.

Six Practical QUALIFY Patterns

`QUALIFY` does more than remove a layer of nesting. It keeps window-function logic and the filter applied to its result in the same semantic stage, making analytical SQL easier to read, review, and maintain. This article covers six practical patterns, including event deduplication, Top N queries, CTE boundaries, and named windows.

How Immersive Translate Built a Lean, Low-Cost Analytics Stack

Immersive Translate is a popular bilingual translation extension used to translate web pages, PDF documents, ePub books, subtitles, and more. The product supports a wide range of translation providers, including Google, OpenAI, DeepL, Microsoft, Gemini, Claude, and others, giving users the flexibility to choose the service that best fits their workflow.

Proving an AI-Written AST Visitor Migration Did Not Break SQL Semantics

An AST Visitor API migration is easy for AI to generate but hard to trust. This article explains how we validated that a new traversal preserved SQL semantics using source-derived AST metadata, runtime traces, independent comparison, diagnostics, real SQL inputs, and coverage feedback.

Orchestrating Reliable Data Ingestion from S3 with Airflow

This post walks through a minimal Airflow pipeline that uploads local CSV or NDJSON files to S3, then loads them into a cloud data warehouse with `COPY INTO`. The pattern keeps orchestration in Airflow, raw files in object storage, and ingestion plus analytics in the warehouse layer. It also gives you a practical starting point for retries, replay, credential handling, and production hardening

Small Bitmap, Big Gains: Optimizing Large-Scale Bitmap Aggregation in Databend

TL;DR: Databend introduces HybridBitmap to keep small sets lightweight and switch to RoaringTreemap only when needed. This reduces unnecessary deserialization and allocation, improving bitmap aggregation performance in small-bitmap-heavy workloads.