MySQL 8.0 Database Administrator — Question 85

Examine this command, which executes successfully:
cluster.addInstance(‘<user>@<host>:<port>’, {recoveryMethod: ‘clone’})
Which three statements are true? (Choose three.)

Answer options

Correct answer: A, D, F

Explanation

The correct statements A, D, and F highlight necessary conditions and behaviors of the clone recovery process. A is correct as the BACKUP_ADMIN privilege is essential for recovery tasks. D is true because the clone method is generally slower than using incremental recovery. F correctly states that InnoDB redo logs must remain static during the operation to avoid failure. Options B, C, and E are incorrect as they either misstate the requirements or describe processes that do not pertain to the specifics of the clone recovery method.