question

NOwhyNO-8442 avatar image
0 Votes"
NOwhyNO-8442 asked ryanchill answered

General question about azure

Hi,

In the last few days I wanted to save and visualize the weather data that I have uploaded to a website in Azure.
But now I have the problem that I don't know which Azure services are best suited for this. (there are so many!).
The data has a CSV format.

In summary: I would like to know which services are best suited for a project and how I get the CSV data from the website into Azure.


Thanks!

azure-webapps
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

ryanchill avatar image
0 Votes"
ryanchill answered

Hi @NOwhyNO-8442,

You are right, there are LOT of services to be choose from 😊. It really depends on what you need and are comfortable with implementing. I've listed some docs below with some ideas.

  • Logic Apps are easy to get started. They provide numerous connectors and integrations, so you can say have your CSV file sitting on cloud storage, FTP, etc., read that file in and process it.

  • Azure Functions provide a fair amount more customization from a code perspective and offers scalability that's based off consumption. You can take advantage of similar triggers, like in Logic Apps and expose your function like a REST API

  • App Service is another offering; however, since all you're doing is processing a CSV file I would lean more towards functions Your app service can utilize a web job, be triggered just like an Azure Function.

Regards,
Ryan





5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.