A wildlife monitoring project uses IoT cameras to capture images of animals in remote areas. The project team needs to run a custom Python script that analyzes each uploaded image to identify the species. The analysis must execute only when a new image is uploaded, and the compute resources must scale automatically based on the volume of incoming images. Which Azure service is best suited for executing the image analysis script?
- Azure FunctionsCevap
- BAzure Logic Apps
- CAzure Virtual Machines
- DMicrosoft 365
Cevap
Azure Functions is the correct choice because it is a serverless, event-driven compute service that can run custom code (such as a Python script) and automatically scale resources to meet demand.
Azure Functions is a code-first, event-driven serverless compute service. It allows you to run custom code (such as a Python script) in response to events (such as an image upload to storage) without managing underlying infrastructure. It automatically scales compute resources based on demand, which matches the project requirements.
Adım Adım Çözüm
Anahtar Kavram
Distinction between Azure serverless compute services (Functions) and workflow orchestrators (Logic Apps).
Tahmini Süre:1m 0s