What DevOps practice should an organization use when developing their application to help minimize disruption caused by bugs?
What DevOps practice should an organization use when developing their application to help minimize disruption caused by bugs?
One of the key principles of DevOps is to release changes frequently and in small batches. This helps to reduce the risk of disruption caused by bugs. If a bug is introduced in a small change, it is easier to identify and fix the bug without affecting a large number of users. By implementing small changes incrementally, the recovery time when bugs appear is minimized.
Deploying changes to a small subset of users before rolling out to production (also known as a canary deployment) can help catch bugs before they impact the entire user subset
C, no doubt
C. Implement small changes incrementally to reduce recovery time when bugs appear One of the key principles of DevOps is to release changes frequently and in small batches. This helps to reduce the risk of disruption caused by bugs. If a bug is introduced in a small change, it is easier to identify and fix the bug without affecting a large number of users.
C is correct
C is correct
C is correct