Some more practical example for Cloud Service types.

Megha S Patil 1 Reputation point
2022-09-12T15:27:42.903+00:00

I read some scenarios from documents , but need some more practical knowledge on cloud service types.

Azure Cloud Services
Azure Cloud Services
An Azure platform as a service offer that is used to deploy web and cloud applications.
633 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Sam Cogan 10,082 Reputation points MVP
    2022-09-12T15:45:14.01+00:00

    Azure Cloud Services are now depricated and will be retired in 2024, see here . If you are building something new you should look at other services.

    1 person found this answer helpful.
    0 comments No comments

  2. kobulloc-MSFT 23,181 Reputation points Microsoft Employee
    2022-09-13T05:46:12.657+00:00

    Hello, @Megha S Patil !

    @Sam Cogan is correct that Azure Cloud Services (classic) will retire on August 31st, 2024 so I thought it would be useful to provide some additional information as well as next steps as you look at developing your solution with Azure.

    What are some practical examples for Azure Cloud Services (classic)?
    The example .NET Cloud Service creates an advertising bulletin board using a web role on the front-end to upload images that are stored in an Azure blob, stores ad information in a database, writes messages to a queue, and uses a worker role in the back-end.

    An example application using Azure Cloud Services (classic) with a web role on the front-end and a worker role in the back-end

    240352-image.png

    A current example in the Azure architecture guide has a similar setup with a web front-end, a queue, a worker, a database, and static content. This time, these roles are filled by Azure services such as Azure Web Apps, Azure Functions, Azure SQL and Azure Cosmos DB, and Azure Blob Storage.

    A similar, more recent example application using Azure Web Apps, Azure Functions, and other Azure services:

    240347-image.png

    240374-image.png

    Next Steps
    As Azure has grown, new services have been added offering even more choices when it comes to how you want to implement your solution. It's worth your time to take a quick look at the complete list of Azure services as well as architectural guides for implementing Azure solutions.

    Virtual machines, Azure Container Instances, and Azure Kubernetes Service are examples of services that tend to give you more control over your solution while App Service and Azure Functions can get you up and running quickly.

    I hope this has been helpful!

    0 comments No comments