---
title: "databend"
type: "tool"
slug: "databendlabs-databend"
canonical_url: "https://www.graphcanon.com/tools/databendlabs-databend"
github_url: "https://github.com/databendlabs/databend"
homepage_url: "https://docs.databend.com"
stars: 9375
forks: 890
primary_language: "Rust"
license: "Other"
categories: ["model-training", "data-retrieval", "ai-agents"]
tags: ["olap", "cloud-native", "ai", "lakehouse", "bigdata", "database", "elasticsearch", "geospatial"]
updated_at: "2026-07-07T18:35:10.828443+00:00"
---

# databend

> Data Warehouse for AI Agents

Databend is an open-source enterprise data warehouse built in Rust, offering analytics, vector search, full-text search capabilities unified into one engine. It includes sandbox UDFs for agent logic execution and secure Python sandboxes.

## Facts

- Repository: https://github.com/databendlabs/databend
- Homepage: https://docs.databend.com
- Stars: 9,375 · Forks: 890 · Open issues: 520 · Watchers: 92
- Primary language: Rust
- License: Other
- Last pushed: 2026-07-07T16:01:05+00:00

## Categories

- [Model Training](/categories/model-training.md)
- [Data & Retrieval](/categories/data-retrieval.md)
- [AI Agents](/categories/ai-agents.md)

## Tags

olap, cloud-native, ai, lakehouse, bigdata, database, elasticsearch, geospatial

## Related tools

- [ECC](/tools/affaan-m-ecc.md) - The agent harness performance optimization system (★ 226,962)
- [hermes-agent](/tools/nousresearch-hermes-agent.md) - The self-improving AI agent built by Nous Research (★ 210,880)
- [AutoGPT](/tools/significant-gravitas-autogpt.md) - AutoGPT: Build, Deploy, and Run AI Agents (★ 185,417)
- [ollama](/tools/ollama-ollama.md) - Get up and running with Kimi-K2.6, GLM-5.1, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models. (★ 175,659)
- [transformers](/tools/huggingface-transformers.md) - 🤗 Transformers: the model-definition framework for state-of-the-art machine learning models (★ 162,347)
- [langflow](/tools/langflow-ai-langflow.md) - Langflow is a powerful platform for building and deploying AI-powered agents and workflows. (★ 151,298)
- [dify](/tools/langgenius-dify.md) - Production-ready platform for agentic workflow development (★ 148,070)
- [firecrawl](/tools/firecrawl-firecrawl.md) - The API to search, scrape, and interact with the web at scale. (★ 147,117)

## README (excerpt)

```text
<h1 align="center">Databend</h1>
<h3 align="center">Enterprise Data Warehouse for AI Agents</h3>
<p align="center">Large-scale analytics, vector search, full-text search — with flexible agent orchestration and secure Python UDF sandboxes. Built for enterprise AI workloads.</p>

<div align="center">

<a href="https://databend.com/">☁️ Try Cloud</a> •
<a href="#-quick-start">🚀 Quick Start</a> •
<a href="https://docs.databend.com/">📖 Documentation</a> •
<a href="https://link.databend.com/join-slack">💬 Slack</a>

<br><br>

<a href="https://github.com/databendlabs/databend/actions/workflows/release.yml">
<img src="https://img.shields.io/github/actions/workflow/status/datafuselabs/databend/release.yml?branch=main" alt="CI Status" />
</a>
<img src="https://img.shields.io/badge/Platform-Linux%2C%20macOS%2C%20ARM-green.svg?style=flat" alt="Platform" />

</div>

<br>

<img src="https://github.com/user-attachments/assets/4c288d5c-9365-44f7-8cde-b2c7ebe15622" alt="databend" width="100%" />

## 💡 Why Databend?

Databend is an open-source enterprise data warehouse built in Rust.

**Core capabilities**: Analytics, vector search, full-text search, auto schema evolution — unified in one engine.

**Agent-ready**: Sandbox UDFs for agent logic, SQL for orchestration, transactions for reliability, branching for safe experimentation on production data.

| | |
| :--- | :--- |
| **📊 Core Engine**<br>Analytics, vector search, full-text search, auto schema evolution, transactions. | **🤖 Agent-Ready**<br>Sandbox UDF + SQL orchestration. Build and run agents on your enterprise data. |
| **🏢 Enterprise Scale**<br>Elastic compute, cloud native. S3/Azure/GCS. | **🌿 Branching**<br>Git-like data versioning. Agents safely operate on production snapshots. |



## ⚡ Quick Start

### 1. Cloud (Recommended)
[Start for free on Databend Cloud](https://docs.databend.com/guides/cloud/) — Production-ready in 60 seconds.

### 2. Local (Python)
Ideal for development and testing. Requires Python 3.12 or 3.13 and `databend-driver` 0.34.0 or later:

```bash
pip install "databend-driver[local]>=0.34.0"
```

```python
from databend_driver import connect

conn = connect("databend+local:///./local-state")
print(conn.query_row("SELECT 'Hello, Databend!'").values())
```

### 3. Docker
Run the full warehouse locally:

```bash
docker run -p 8000:8000 datafuselabs/databend
```

## 🤖 Agent-Ready Architecture

Databend's **Sandbox UDF** enables flexible agent orchestration with a three-layer architecture:

- **Control Plane**: Resource scheduling, permission validation, sandbox lifecycle management
- **Execution Plane** (Databend): SQL orchestration, issues requests via Arrow Flight
- **Compute Plane** (Sandbox Workers): Isolated sandboxes running your agent logic

```sql
-- Define your agent logic
CREATE FUNCTION my_agent(input STRING) RETURNS STRING
LANGUAGE python HANDLER = 'run'
AS $$
def run(input):
    # Your agent logic: LLM calls, tool use, reasoning...
    return response
$$;

-- Orchestrate agents with SQL
SELECT my_agent(question) FROM tasks;
```

## 🚀 Use Cases

- **AI Agents**: Sandbox UDF + SQL orchestration + branching for safe operations
- **Analytics & BI**: Large-scale SQL analytics — [Learn more](https://docs.databend.com/guides/query/sql-analytics)
- **Search & RAG**: Vector + full-text search — [Learn more](https://docs.databend.com/guides/query/vector-db)

## 🤝 Community & Support

- [📖 Documentation](https://docs.databend.com/)
- [💬 Join Slack](https://link.databend.com/join-slack)
- [🐛 Issue Tracker](https://github.com/databendlabs/databend/issues)
- [🗺️ Roadmap](https://github.com/databendlabs/databend/issues/14167)

**Contributors are immortalized in the `system.contributors` table 🏆**

## 📄 License

[Apache 2.0](licenses/Apache-2.0.txt) + [Elastic 2.0](licenses/Elastic.txt) | [Licensing FAQ](https://docs.databend.com/guides/products/dee/license)

---

<div align="center">
<strong>Enterprise warehouse, agent ready</strong><br>
<a href="https:
```

---

**Machine-readable endpoints**

- JSON: [`/api/graphcanon/tools/databendlabs-databend`](/api/graphcanon/tools/databendlabs-databend)
- LLM index: [/llms.txt](/llms.txt)
- Full corpus: [/llms-full.txt](/llms-full.txt)

_GraphCanon - The knowledge graph for AI development. https://www.graphcanon.com/_
