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

> Azure 데이터를 ClickHouse로 가져오기 - 개요

# Azure 데이터를 ClickHouse로 가져오기

export const ClickHouseSupportedBadge = () => {
  return <div className="ClickHouseSupportedBadge">
            <div className="ClickHouseSupportedIcon">
                <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <path d="M1.30762 1.39073C1.30762 1.3103 1.37465 1.22986 1.46849 1.22986H2.64824C2.72868 1.22986 2.80912 1.29689 2.80912 1.39073V14.4886C2.80912 14.5691 2.74209 14.6495 2.64824 14.6495H1.46849C1.38805 14.6495 1.30762 14.5825 1.30762 14.4886V1.39073Z" fill="currentColor" />
                    <path d="M4.2832 1.39073C4.2832 1.3103 4.35023 1.22986 4.44408 1.22986H5.62383C5.70427 1.22986 5.7847 1.29689 5.7847 1.39073V14.4886C5.7847 14.5691 5.71767 14.6495 5.62383 14.6495H4.44408C4.36364 14.6495 4.2832 14.5825 4.2832 14.4886V1.39073Z" fill="currentColor" />
                    <path d="M7.25977 1.39073C7.25977 1.3103 7.3268 1.22986 7.42064 1.22986H8.60039C8.68083 1.22986 8.76127 1.29689 8.76127 1.39073V14.4886C8.76127 14.5691 8.69423 14.6495 8.60039 14.6495H7.42064C7.3402 14.6495 7.25977 14.5825 7.25977 14.4886V1.39073Z" fill="currentColor" />
                    <path d="M10.2354 1.39073C10.2354 1.3103 10.3024 1.22986 10.3962 1.22986H11.576C11.6564 1.22986 11.7369 1.29689 11.7369 1.39073V14.4886C11.7369 14.5691 11.6698 14.6495 11.576 14.6495H10.3962C10.3158 14.6495 10.2354 14.5825 10.2354 14.4886V1.39073Z" fill="currentColor" />
                    <path d="M13.2256 6.6057C13.2256 6.52526 13.2926 6.44482 13.3865 6.44482H14.5662C14.6466 6.44482 14.7271 6.51186 14.7271 6.6057V9.27354C14.7271 9.35398 14.6601 9.43442 14.5662 9.43442H13.3865C13.306 9.43442 13.2256 9.36739 13.2256 9.27354V6.6057Z" fill="currentColor" />
                </svg>
            </div>
            ClickHouse 지원
        </div>;
};

<ClickHouseSupportedBadge />

Microsoft Azure는 데이터를 저장, 변환, 분석하는 다양한 도구를 제공합니다. 하지만 많은 경우 ClickHouse가 대규모 데이터셋에 대한 저지연 쿼리 및 처리 성능에서 훨씬 더 뛰어난 성능을 제공합니다. 또한 ClickHouse의 열 지향 스토리지와 압축 기능은 범용 Azure 데이터베이스와 비교해 대용량 분석 데이터 쿼리 비용을 크게 줄여줍니다.

이 문서 섹션에서는 Microsoft Azure에서 ClickHouse로 데이터를 수집하는 두 가지 방법을 살펴봅니다.

| 방법                                                                                                                         | 설명                                                                                                                                                  |
| -------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`azureBlobStorage` 테이블 함수 사용](/docs/ko/integrations/connectors/data-ingestion/azure/azure-data-factory/using-azureblobstorage) | Azure Blob Storage에서 데이터를 직접 전송하기 위해 ClickHouse의 [`azureBlobStorage` 테이블 함수](/docs/ko/reference/functions/table-functions/azureBlobStorage)를 사용하는 방법입니다. |
| [ClickHouse HTTP 인터페이스 사용](/docs/ko/integrations/connectors/data-ingestion/azure/azure-data-factory/using-http-interface)       | Azure Data Factory에서 [ClickHouse HTTP 인터페이스](/docs/ko/concepts/features/interfaces/http)를 데이터 소스로 사용해 데이터를 복사하거나, 파이프라인의 일부로 데이터 흐름 작업에 활용할 수 있습니다.      |
