Nj-kol commented on issue #57980: URL: https://github.com/apache/doris/issues/57980#issuecomment-3546840659
Hello @morrySnow, Could you please show an example on how to use an Azure Storage vault? Does this doc still hold - https://doris.apache.org/docs/dev/sql-manual/sql-statements/cluster-management/storage-management/CREATE-STORAGE-VAULT#8-create-azure-storage-vault? I just tried to run Doris 4.0.1 on Azure Kubernetes Service with Azure Vault as a storage in storage computed decoupled mode. ```sql CREATE STORAGE VAULT IF NOT EXISTS azure_vault PROPERTIES ( "type" = "S3", "s3.endpoint" = "mystorageaccount.blob.core.windows.net", "s3.access_key" = "mystorageaccount", "s3.secret_key" = "myaccountkey", "s3.root.path" = "doris", "s3.region" = "eu-west-1", "s3.bucket" = "mystorageaccount", "provider" = "azure" ); ``` After, I added azure vault, the compute group crashes with the following error log : ```shell F20251118 10:19:04.645164 209 s3_util.cpp:255] BE is not compiled with azure support, export BUILD_AZURE=ON before building I20251118 10:19:05.449136 209 daemon.cpp:231] sys physical memory 3.00 GB. process memory used 1.11 GB(= 1.11 GB[vm/rss] + 0[reserved] + 0B[waiting_refresh]), limit 2.70 GB, soft limit 2.43 GB. sys available memory 2.16 GB(= 2.16 GB[proc/available] - 0[reserved] - 0B[waiting_refresh]), low water mark 153.60 MB, ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
