USER MANUALS

Azure Blob ストレージ

警告

レガシー Windows Azure Storage Blob (WASB) ドライバーは廃止されています。Azure Data Lake Storage Gen2 (ABFS) には、WASB に比べて多数の利点があり、移行をお勧めします。

Azure Kubernetes Service に Denodo 組み込み MPP をデプロイする前に、 Denodo 組み込み MPP Azure チェックリスト で必要な準備がすべて完了していることを確認します。

組み込み MPP をデプロイする前に、 kubectl create secret コマンドで Azure 資格情報 を指定します。

ENV 変数

説明

WASB_STORAGE_KEY

Azure Blob ストレージキー

   kubectl create secret generic mpp-credentials
   --from-literal=METASTORE_DB_PASSWORD=hive
   --from-literal=WASB_STORAGE_KEY=wasbstoragekey

values.yaml で、 objectStorage.azure.sharedKey.enabled プロパティを true に設定し、 objectStorage.azure.sharedKey.account プロパティに Azure Blob ストレージアカウントを追加し、 objectStorage.azure.sharedKey.blobStorage プロパティを true に設定する必要もあります。

   objectStorage:
      azure:
         sharedKey:
            enabled: true
            account: "account"
            blobStorage: true

注釈

Azure Data Lake Gen 2 を同時に使用することもできます。この場合、 kubectl create secret 文に ABFS_STORAGE_KEY ENV 変数を追加する必要があります。

   kubectl create secret generic mpp-credentials
   --from-literal=METASTORE_DB_PASSWORD=hive
   --from-literal=WASB_STORAGE_KEY=wasbstoragekey
   --from-literal=ABFS_STORAGE_KEY=abfsstoragekey

helm install 文を実行します。

helm install prestocluster prestocluster/
Add feedback