> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 数据目录

> ClickHouse Cloud 的数据目录集成

export const galaxyOnClick = eventName => () => {
  try {
    if (typeof window !== "undefined" && window.galaxy && eventName) {
      window.galaxy.track(eventName, {
        interaction: "click"
      });
    }
  } catch (e) {}
};

export const BetaBadge = ({link, galaxyTrack, galaxyEvent}) => {
  if (link) {
    return <a href={link} target="_blank" rel="noopener noreferrer" className="betaBadge" onClick={galaxyTrack && galaxyEvent ? galaxyOnClick(galaxyEvent) : undefined}>
                <Icon />
                <span>Beta</span>
            </a>;
  }
  return <div className="betaBadge">
            <Icon />
            <span>
                Beta feature. 
                <u>
                    <a href="/docs/beta-and-experimental-features#beta-features">
                        Learn more.
                    </a>
                </u>
            </span>
        </div>;
};

export const Image = ({img, alt, size}) => {
  return <Frame>
      <img src={img} alt={alt} />
    </Frame>;
};

ClickHouse Cloud 可直接连接到开放表格式数据目录，让您无需复制数据即可访问数据湖中的表。
通过此集成，数据目录中的表会作为可查询的数据库显示在 ClickHouse 中。
可通过 SQL 命令 ([DataLakeCatalog](/zh/reference/engines/database-engines/datalake)) 或 ClickHouse Cloud UI 的“数据源”选项卡进行设置。

使用 UI：

* 通过使用与 Data Catalog 对象一致字段的表单，简化设置流程
* 为已启用的数据目录集成提供统一界面
* 保存时测试连接和凭证

<Image img="https://mintcdn.com/private-7c7dfe99-fix-nav-issues/lbl07JY-gN--jKuL/images/cloud/features/data-catalogs-ui.png?fit=max&auto=format&n=lbl07JY-gN--jKuL&q=85&s=ddadb11f52becc8e2b66b20ce209cc53" size="md" alt="带有数据目录集成的 ClickHouse Cloud UI" width="1024" height="601" data-path="images/cloud/features/data-catalogs-ui.png" />

| 名称                   | 支持的开放表格式                           | 认证方式                         | 支持                                                                              | 版本     |
| -------------------- | ---------------------------------- | ---------------------------- | ------------------------------------------------------------------------------- | ------ |
| AWS Glue Catalog     | Iceberg                            | IAM/访问密钥                     | Cloud & [Core](/zh/guides/use-cases/data-warehousing/glue-catalog)              | 25.10+ |
| Lakekeeper           | Iceberg                            | OAuth 客户端凭证                  | [Core](/zh/guides/use-cases/data-warehousing/lakekeeper-catalog)                | 25.10+ |
| Microsoft OneLake    | Iceberg                            | Azure Active Directory (AAD) | Cloud & [Core](/zh/guides/use-cases/data-warehousing/onelake-catalog)           | 25.12+ |
| Nessie               | Iceberg                            | OAuth 客户端凭证                  | [Core](/zh/guides/use-cases/data-warehousing/nessie-catalog)                    | 25.10+ |
| Polaris/Open Catalog | Iceberg                            | OAuth 客户端凭证                  | [Core](/zh/guides/use-cases/data-warehousing/polaris-catalog)                   | 26.1+  |
| REST catalog         | Iceberg                            | OAuth 客户端凭证、Bearer 令牌        | Cloud & [Core](/zh/guides/use-cases/data-warehousing/rest-catalog)              | 25.10+ |
| Unity Catalog        | Iceberg (启用 UniForm 且由系统托管) 、Delta | OAuth 客户端凭证                  | Cloud (仅 Iceberg) & [Core](/zh/guides/use-cases/data-warehousing/unity-catalog) | 25.10+ |

我们计划支持更多目录，包括 Horizon 和 S3 Tables REST 端点。
