exam questions

Exam AZ-204 All Questions

View all questions & answers for the AZ-204 exam

Exam AZ-204 topic 2 question 74 discussion

Actual exam question from Microsoft's AZ-204
Question #: 74
Topic #: 2
[All AZ-204 Questions]

HOTSPOT
-

You are developing a microservices-based application by using Azure Container Apps. The application consists of several containerized services that handle tasks, such as processing orders, managing inventory, and generating reports.

Processing orders has the following requirements:

• Orders must be triggered by a web request.
• Additional replicas must be added when the total number of web requests exceeds 300 for at least 15 seconds.
• Processing orders must always be available based on incoming web requests.
• Costs must be minimized for the Azure Container Apps instance.

You need to configure scaling.

How should you complete the CLI command? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
neil1985_jy
3 weeks, 4 days ago
Answers 1. Create Answers 2. 1
upvoted 1 times
neil1985_jy
3 weeks, 4 days ago
az containerapp create \ --name order-processor \ --resource-group my-rg \ --environment my-env \ --image myregistry.azurecr.io/order-processor:latest \ --target-port 80 \ --ingress external \ --min-replicas 1 \ --max-replicas 10 \ --scale-rule-name http-orders \ --scale-rule-type http \ --scale-rule-http-concurrency 300
upvoted 1 times
...
...
kyka
1 month, 3 weeks ago
• Processing orders must always be available based on incoming web requests. So should be --min-replicas 1
upvoted 1 times
...
Fadoua24
2 months ago
Primer dropdown (comando base): create Segundo dropdown (--min-replicas): 1
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...