0
0
GCPcloud~5 mins

Health checks configuration in GCP - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the purpose of a health check in cloud infrastructure?
A health check monitors if a service or instance is working properly. It helps the system know when to send traffic to healthy instances and avoid unhealthy ones.
Click to reveal answer
beginner
Name two types of health checks commonly used in Google Cloud Platform.
TCP health checks and HTTP(S) health checks. TCP checks if the port is open, HTTP(S) checks if a web service responds correctly.
Click to reveal answer
beginner
What does the 'check interval' setting control in a health check?
It controls how often the health check runs to test the service's health, for example every 5 seconds.
Click to reveal answer
intermediate
Why is it important to configure the 'unhealthy threshold' in a health check?
It defines how many failed checks in a row mark an instance as unhealthy, preventing false alarms from temporary glitches.
Click to reveal answer
beginner
How does a health check improve the reliability of a load balancer?
The load balancer uses health checks to send traffic only to healthy instances, avoiding downtime and improving user experience.
Click to reveal answer
Which protocol can be used for a simple health check that only verifies if a port is open?
AUDP
BHTTP
CHTTPS
DTCP
What does the 'healthy threshold' setting specify in a health check?
ATimeout for each check
BNumber of failed checks before marking unhealthy
CNumber of successful checks before marking healthy
DTime between checks
If a health check timeout is too short, what might happen?
AHealth checks run less frequently
BFalse unhealthy reports due to slow responses
CMore traffic sent to unhealthy instances
DHealth checks ignore errors
Which Google Cloud service commonly uses health checks to manage traffic?
ACloud Load Balancing
BCloud Storage
CBigQuery
DCloud Functions
What is a key benefit of using HTTP(S) health checks over TCP health checks?
AThey can check the actual response content and status code
BThey are faster to run
CThey use less network bandwidth
DThey do not require a port number
Explain how health checks help maintain application availability in cloud environments.
Think about how traffic is managed when some servers fail.
You got /4 concepts.
    Describe the key configuration settings of a health check and their impact on reliability.
    Consider how often and how strictly the system tests the service.
    You got /5 concepts.