exam questions

Exam AZ-204 All Questions

View all questions & answers for the AZ-204 exam

Exam AZ-204 topic 2 question 76 discussion

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

You are developing a microservices-based application that uses Azure Container Apps. The application consists of several containerized services that handle tasks, such as processing orders, managing inventory, and generating reports. You deploy a new revision of the processing orders app.

Processing orders must be triggered by a web request and must always be available based on incoming web requests.

You need to validate that the replica is ready to handle incoming requests.

What should you implement?

  • A. HTTP readiness probe
  • B. TCP readiness probe
  • C. HTTP startup probe
  • D. TCP liveness probe
  • E. HTTP liveness probe
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

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
peterbuza
6 days, 22 hours ago
Selected Answer: A
HTTP liveness probe checks if the app should be restarted, so it is used for detecting app failures instead of traffic readiness. Correct answer is "HTTP readiness probe" - A
upvoted 1 times
...
Caalos4
1 week, 1 day ago
Selected Answer: A
The correct answer is: A. HTTP readiness probe Explanation: To ensure that a replica is ready to handle incoming HTTP requests, you should implement a readiness probe. Here's a breakdown of the options: A. HTTP readiness probe ✅ This checks whether the container is ready to serve traffic. It’s ideal for web applications like your order processing service that must be available based on incoming HTTP requests. B. TCP readiness probe Similar to HTTP readiness, but uses TCP. HTTP is more appropriate for web-based services where you want to check a specific endpoint. C. HTTP startup probe Used to determine if the application has started. It’s useful for slow-starting apps but not specifically for checking readiness to serve traffic. D. TCP liveness probe Checks if the container is still running, not whether it’s ready to serve traffic. E. HTTP liveness probe Also checks if the container is alive, not whether it’s ready to handle requests.
upvoted 2 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 ...