skip to Main Content

Azure – Failed to provision revision for container app 'app-name'. Error details: Opearation expired. (Code: ContainerAppOperationError)

I am trying to create a new Azure container apps using ARM template. When deployment, I face this issue {"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-deployment-operations for usage details.","details":[{"code":"ContainerAppOperationError","message":"Failed to provision…

VIEW QUESTION

Azure – to change the tier of blob using web activity

I'm trying to change the tier of a blob in storage account through ADF using Web Activity: I am refering to this link - https://learn.microsoft.com/en-us/rest/api/storageservices/set-blob-tier?tabs=azure-ad The required values used are as below: URL :https://myaccount.blob.core.windows.net/mycontainer/myblob?comp=tier (modified to my account and blob…

VIEW QUESTION

Set time to live in Azure Blob containers created using BlobServiceClient

I'm currently using the following setup to create containers in an Azure Storage Account, and writing blobs to those containers: from azure.storage.blob import BlobServiceClient connstr = "..." bsc = BlobServiceClient.from_connection_string(connstr) container_client = bsc.create_container(name="some_container") blob_client = container_client.upload_blob("some_blob", data="data_item", metadata={}) but nowhere…

VIEW QUESTION

Azure – cosmos Point Read

My cosmos db query SELECT * FROM c WHERE c.id = "1437156155" AND c.npi = 1437156155 npi is partition key It is consuming 2.83 RUS how to perform Point read so that it consume 1RU sample document { "npi": 1518966761,…

VIEW QUESTION
Back To Top
Search