An etcd cluster can automatically recover from any number of temporary failures (for example, machine reboots). How many permanent failures can a cluster of N members tolerate, where a member can no longer access the cluster, due to hardware failure or disk corruption?
WHY A IS False? | CONCEPT: - |
- |
|
---|---|---|---|
WHY B IS True? | CONCEPT: Permanent & Temporary Failures of etcd |
etcd is designed to withstand(resilient) machine failures. An etcd cluster automatically recovers from any number of temporary failures (e.g., machine reboots) and tolerates up to (N-1)/2 permanent failures for a cluster of N members. When a member permanently fails, whether due to hardware failure or disk corruption, it loses access to the cluster. If the cluster permanently loses more than (N-1)/2 members then it disastrously fails, irrevocably losing quorum. For example, if a three-node cluster suffered two simultaneous and unrecoverable machine failures, it would be normally impossible for the cluster to restore quorum and continue functioning. Once a quorum is lost, the cluster cannot reach consensus and therefore cannot continue accepting updates. |
|
WHY C IS False? | CONCEPT: - |
- |
|
WHY D IS False? | CONCEPT: - |
- |
|
Short Trick |
It is a straightforward theoretical question. If the question is asked for "temporary failures" - Then etcd cluster can automatically recover from it any no. of times. Here the question is asked for "permanent failures" - An etcd cluster automatically recovers from temporary failures (e.g., machine reboots) and tolerates up to (N-1)/2 permanent failures for a cluster of N members. |
||
References: | REFERNCED DOCS |
What command is used to delete a Service in Kubernetes?
WHY A IS True? | CONCEPT: Service |
|
|
---|---|---|---|
WHY B IS False? | CONCEPT: Deployment |
|
|
WHY C IS False? | CONCEPT: Pod |
|
|
WHY D IS False? | CONCEPT: Replication Controller |
|
|
Short Trick |
"Service" - clearly signifies for svc command. |
||
References: | REFERNCED DOCS |
Ingress Controller creates a Load Balancer, which is based on ____________ . Select the correct answer.
WHY A IS False? | CONCEPT: Layer 2 - Data Link Layer |
|
|
---|---|---|---|
WHY B IS False? | CONCEPT: Layer 3 - Network Layer |
|
|
WHY C IS False? | CONCEPT: Layer 5 - Session Layer |
|
|
WHY D IS True? | CONCEPT: Layer 7 - Application Layer |
|
|
Short Trick |
|
||
References: | REFERNCED DOCS |