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

# データベースの紹介

## Helmチャートの値を表示

```bash theme={null}
helm show values dify/dify
```

## Helmチャートの値中からベクトルデータベースの設定を見つける

これはHelmチャートの値におけるベクトルデータベースの設定の例です。

```yaml theme={null}
ベクトルデータベース:
  useExternal: true
  externalType: "qdrant"
  externalQdrant:
    endpoint: "http://your-qdrant-cluster-url.qdrant.tech/"
    apiKey: "#REPLACE_ME#"
  ... ...
```

## `ベクトルデータベース.externalType` フィールドのオプション

### 公式サポートされているDB

Difyエンタープライズ版では、以下のベクトルデータベースを公式にサポートしております。

* qdrant（推奨）
* weaviate（オプション）
* elasticsearch（オプション）

### コミュニティでサポートされているタイプ

Difyコミュニティ版でも以下のベクトルデータベースをご利用いただけます。エンタープライズ版でも同様に利用可能ですが、公式サポートの対象外となりますのでご了承ください。

* milvus
* relyt
* pgvecto-rs
* tencent
* analyticdb
* opensearch

> 詳細につきましては、[Dify Vector Type](https://github.com/langgenius/dify/blob/main/api/core/rag/datasource/vdb/vector_type.py)のドキュメントをご参照ください。
