> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keephq.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Databend

> Databend provider allows you to query databases

## Overview

Databend is an open-source, serverless, cloud-native data lakehouse built on object storage with a decoupled storage and compute architecture. It delivers exceptional performance and rapid elasticity, aiming to be the open-source alternative to Snowflake.

## Useful Links

* [Databend](https://www.databend.com/)

## Authentication

This provider requires authentication.

* **host\_url**: Databend host\_url (required: True, sensitive: False)
* **username**: Databend username (required: True, sensitive: False)
* **password**: Databend password (required: True, sensitive: True)

Certain scopes may be required to perform specific actions or queries via the provider. Below is a summary of relevant scopes and their use cases:

* **connect\_to\_server**: The user can connect to the server (mandatory)

## In workflows

This provider can be used in workflows.

As "step" to query data, example:

```yaml theme={null}
steps:
    - name: Query databend
      provider: databend
      config: "{{ provider.my_provider_name }}"
      with:
        query: {value}  
```

Check the following workflow example:

* [query-databend.yml](https://github.com/keephq/keep/blob/main/examples/workflows/query-databend.yml)
