メインコンテンツまでスキップ
バージョン: 2.1

Azure Blob

バージョン 3.1.3 以降、Doris は Azure Blob ストレージへのアクセスをサポートしています。

本文書では、Microsoft Azure Blob ストレージにアクセスするために必要なパラメータについて説明します。これらのパラメータは以下のシナリオに適用されます:

  • カタログ properties
  • Table Valued ファンクション properties
  • Broker Load properties
  • Export properties
  • Outfile properties
  • Backup / Restore properties

Azure Blob Storage は現在 ARM アーキテクチャをサポートしていません。

パラメータ概要

Property Name旧称デスクリプションデフォルト値Required
azure.account_nameAzure ストレージアカウント名(Account Name)。Azure ポータルで作成されたストレージアカウント名です。Yes
azure.account_keyAzure Blob ストレージの Account KeyYes
azure.endpointAzure Blob ストレージのアクセスエンドポイント。通常は https://<account_name>.blob.core.windows.net の形式ですYes
fs.azure.supportAzure Blob ストレージを有効にするかどうかtrueYes
  • Azure Blob Storage の有効化

    Azure Blob ストレージが有効であることを示すために、"provider" = "AZURE" または "fs.azure.support" = "true" を明示的に設定する必要があります。

  • azure.account_name の取得

    1. Azure Portal にログインします
    2. Storage Accounts を開き、対象のアカウントを選択します
    3. 概要 ページで Storage Account Name を確認できます
    "azure.account_name" = "myblobstorage"
  • azure.account_keyを取得する

    1. Azure Portalにログインする
    2. Storage Accountsを開き、対象のアカウントを選択する
    3. 左のナビゲーションバーでAccess keysを選択する
    4. key1またはkey2の「Show key」をクリックし、Key valueをコピーする
    "azure.account_key" = "EXAMPLE_I_A...=="
このページでは