Questions tagged [azure]

Microsoft Azure is a Platform as a Service and Infrastructure as a Service cloud computing platform. Use this tag for programming questions concerning Azure. General server help can be obtained at Super User or Server Fault.

If you need help setting up Azure resources, ask those questions on Server Fault or Super User.

Microsoft Azure (formerly Windows Azure) is Microsoft's application platform for the public cloud. Microsoft Azure can be used to build web applications or services that run and store data in Microsoft data centres. It can connect on-premises applications with each other or map between different sets of identity information.

Azure offers several high-level services

Azure offers several services currently in preview

Intro to Azure

Each of these services offers the ability to scale up or down based on demand using predetermined virtual machine sizes to run the services.

Use this tag for questions relating to applications hosted on Azure.

Beginners' resources

Related Tags

134275 questions
14
votes
2 answers

Authenticating with Azure Active Directory on powershell

I am attempting to explore the features of the Azure Active Directory V2 PowerShell Module I have an Azure Account, and I have set up an Active Directory with multiple users. My first goal is simple: show me the list of users. So I…
Andrew Shepherd
  • 44,254
  • 30
  • 139
  • 205
14
votes
1 answer

Azure App Insights Sampling (ItemCount)

I have a question about Azure App Insights Sampling. If itemCount field is greater than 1 for a log item, does it mean that there was an exactly the SAME request and it was sampled? My logs have one request that sends this message with itemCount =…
Oksana Serdiuk
  • 143
  • 1
  • 7
14
votes
0 answers

Memory Usage Issue

We have observed memory usage graph on Azure Portal for redis cache. Can someone help? What happened? Why sudden spike in memory usage?
14
votes
4 answers

Hosting WCF service on azure

I got a wcf service which I'd like to run on azure, but I got several problems: First: do I choose a web role or a worker role for running the wcf service? Second: The client uses a call to log into the service, afterwards the service should…
Sam
  • 28,421
  • 49
  • 167
  • 247
14
votes
5 answers

Can't find node_modules after deployment

This title might be a bit misleading but please bear with me for a while. I have made a simple Angular2 app on visual studio 2015 and now I have published it on Azure. Having node_modules in the development environment was perfect but after…
Aakash Thakur
  • 3,837
  • 10
  • 33
  • 64
14
votes
2 answers

Azure Functions and Azure Application Gateway or API Management

I have several Microsoft Azure functions developed. I would like to use a gateway with firewall to make my Azure functions available and protected using one public IP only. Is there way to use Azure Functions with Azure Application Gateway or API…
14
votes
3 answers

Getting exception - "The property value is larger than allowed by the Table Service", what is the max size of a row in azure storage table

Getting exception "The property value is larger than allowed by the Table Service" while trying to insert a record in azure table storage. Follwing is my table structure, string PartitionKey,String RowKey,string Id , string site, string name , byte[…
James Gopinath
  • 183
  • 1
  • 9
14
votes
6 answers

Load Connection String from Config File in Azure Functions

In my Azure Function I am using a Library which establishes a connection to an SQL server via the ConnectionString from the ConfigurationManager like this: var cs =…
officer
  • 2,080
  • 1
  • 20
  • 29
14
votes
4 answers

Can I loop over properties in ARM templates?

I have an ARM template where I set up a load balancer and I want to add a number of port openings by adding rules and probes to the LB. This is the template I have so far: { "type": "Microsoft.Network/loadBalancers", "name":…
Lee G.
  • 173
  • 1
  • 1
  • 7
14
votes
1 answer

Running Service Fabric on non-Azure clouds

I have just started exploring Azure Service Fabric & I'm finding the concepts involved a little overwhelming Consider these 2 statements - "Service Fabric is agnostic to the underlying hosting provider. You can run it in Azure, you can run it on…
mvark
  • 2,105
  • 2
  • 21
  • 36
14
votes
2 answers

Azure: DocumentDB Mongo $group is not supported

After migrating my Mongo app to DocumentDB on Azure the $group queries are no longer working and are throwing the following error: { MongoError: '$group' is not supported', name: 'MongoError', message: '\'$group\' is not supported', _t:…
Anshuul Kai
  • 3,876
  • 2
  • 27
  • 48
14
votes
4 answers

500 - The request timed out

I have a script that runs for about 4mins30seconds and I have changed the default timeout time to 3600 seconds in the config page of my aspx webpage It didn't return the 500 - The request timed out error on the development version and the uploaded…
LuxuryWaffles
  • 1,518
  • 4
  • 27
  • 50
14
votes
1 answer

What is the difference between Microsoft.Spatial and System.Spatial libraries

I would like to know what is the difference between two spatial libraries - Microsoft.Spatial and System.Spatial? When I'm looking into the code of those two I see almost the same classes. Both has for example GeographyPoint or Geography abstract…
Dawid Rutkowski
  • 2,658
  • 1
  • 29
  • 36
14
votes
1 answer

Output Azure SQL Database ConnectionString after template deployment

I have an ARM template that (among others) creates a database on an Azure SQL server (which is also created by the template). I need to output the database ADO.NET connectionstring. Becuase I wasn't sure what the key is called, I am outputting the…
Mickey Cohen
  • 997
  • 7
  • 23
14
votes
2 answers

Service Fabric Actor or Service Becomes Inaccessible at Random after Upgrading to SDK 2.3.301

After upgrading from Service Fabric SDK 2.0.135 to 2.3.301, we have started encountering situations where a Service Fabric actor or service is inaccessible in spite of showing as healthy in Service Fabric Explorer. Once in this state, any call to…