Questions tagged [azure-app-service-plans]

594 questions
7
votes
3 answers

Create Azure website with Standard pricing tier via Powershell

I'm trying to fix my continious deployment scenario and for this to work an Azure website has to exist and be able to swap between the Staging and Production. We want this website to work in the Standard pricing tier. The script I have at the moment…
Jan_V
  • 4,244
  • 1
  • 40
  • 64
6
votes
2 answers

Intermittent 503 Service Unavailable responses in azure app services

I tried reading all the possible articles about this topic but haven't seen any good solutions. On Microsoft site they mention scaling up or turning on auto-heal functionality (those seem a little more like a workaround). Our solution consists of…
cah1r
  • 1,751
  • 6
  • 28
  • 47
6
votes
1 answer

Why is Azure App Services is not evenly distributing traffic across instances?

Our issue is that Azure App Service (S3 x 5 Instances) is not evenly distributing requests across the 5 instances. The result is that one instance is getting swamped with requests and our overall P50 & P95 response time SLA for that app service is…
6
votes
2 answers

Can't ssh into linux container on Azure App Service - "SSH CONNECTION CLOSE - Error: connect ECONNREFUSED"

I'm trying to ssh into a container for Azure app service. I have followed the instructions for configuring my container here: https://learn.microsoft.com/en-gb/azure/app-service/containers/configure-custom-container#enable-ssh and the instructions…
6
votes
2 answers

Unable to create file in Azure Functions

I have an Azure function running on App service plan. This Function app downloads the file from sftp and do some process/validation and then uploads to blob storage. This was working code and I had to make some changes so that I will have to save…
dejjub-AIS
  • 1,501
  • 2
  • 24
  • 50
6
votes
1 answer

How long does it take for an Azure App Service instance to be available after a scale out?

Context: I am designing the auto-scaling (scale out) configuration for my .NET Framework 4.7 web app hosted on a Microsoft Azure App Service. I am using the P3V2 pricing tier. The application is CPU-bound. The app's 30 day CPU average is 30% usage…
6
votes
4 answers

Azure WebApp Static Outbound IP

I am trying to solve a problem. I have to access APIs that are hosted on my on premises server (on-prem) from Azure hosted Web API. The problem is that my on-prem server only allows white listed IPs. I know we can get outbound IPs from our Web App…
6
votes
0 answers

Azure App Service: "There is not enough space on the disk." Although 300MB/50GB

We have an app service running in a service plan which has a storage limit of 50GB. The app service is the only one part of the service plan. We have a .NET web service running on D:\home\site\services> with an folder where we periodically create…
Mason
  • 1,007
  • 1
  • 13
  • 31
6
votes
2 answers

Turn off AwaysOn in Azure Function to get a free App Service Plan?

I made an Azure function, which made me an App Service Plan. I noticed my bill started going up, so I tried to change my app service plan to the free pricing tier. It rejected with the reason: Cannot update the site 'my-site' because it uses…
AskYous
  • 4,332
  • 9
  • 46
  • 82
6
votes
3 answers

Azure App Service Autoscale Fails to Scale In

My app service has failed to scale-in after scaling-out. This seems to be a pattern I've been trying to troubleshoot for several months. I've tried the following but none have worked: My scale condition is based on CPU and memory. However, I've…
6
votes
2 answers

Max Pool Size ignored working with Azure SQL and Azure AppServices

I'm working in a ASP.NET Web API project (Full .NET Framework 4.6.1) and using Azure SQL Database, the API is deployed on an Azure AppService. Regarding the service tiers, we are using S2 in the case of the Azure SQL Database (50 DTU) and B1 in the…
6
votes
2 answers

Scaled out Azure App Service too slow

When I try to scale out my Azure Web App I experience very slow response times for requests on the second or third instance of the app. This seems to happen because the other instances were in cold mode and had to switch into hot mode once the load…
6
votes
1 answer

Right way to create staging and Prod environment in Azure

We want to create two environments on Azure. These two environments will be used as Staging and Production, but we want to be able swap between them very easily, so staging can act like prod and vice versa. These two environments will contain Azure…
5
votes
0 answers

Azure Linux web app - Error eisdir illegal operation on a directory read

I am getting an issue with my web app hosted on linux app service plan. It is a static gatsby site and is running perfectly fine in kubernetes. I want to run this in Azure web app (Linux app service plan) but the refresh is not working except for…
5
votes
1 answer

Azure Function - App service plan - Installing git package

I have written an Azure Funciton API(using python runtime) to automate the git checkin process(usin gitPython) for some the work which we are doing. It works fine in my local environment. However, when i tried publishing it to azure function, the…