1z0-908 Exam QuestionsBrowse all questions from this exam

1z0-908 Exam - Question 5


Which statement is true about InnoDB persistent index statistics?

Show Answer
Correct Answer: AD

Updating index statistics can be an I/O expensive operation because the process often involves reading a significant amount of data from storage to gather the necessary statistics, which can lead to high input/output operations, especially for large tables.

Discussion

7 comments
Sign in to comment
marklv
Sep 29, 2023

D is not about persistent indexed. E might be the answer but not sure

nkanike1Option: D
Oct 2, 2023

D is correct according to me.

boyjhantanOption: C
Oct 10, 2023

C is correct

boyjhantanOption: C
Oct 10, 2023

C is Correct https://dev.mysql.com/doc/refman/8.0/en/innodb-performance-optimizer-statistics.html

ZehirOption: A
Nov 3, 2023

A. C is not correct because it mentions: "The innodb_stats_auto_recalc variable, which is enabled by default, controls whether statistics are calculated automatically when a table undergoes changes to more than 10% of its rows, not when new indexes are created.

jackymakOption: D
Feb 1, 2024

D https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_stats_persistent_sample_pages The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by ANALYZE TABLE. [Increasing the value improves the accuracy of index statistics, which can improve the query execution plan], at the expense of increased I/O during the execution of ANALYZE TABLE for an InnoDB table. Not C https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_stats_auto_recalc This setting applies to tables created when the innodb_stats_persistent option is enabled.

7206e44Option: A
Jul 11, 2024

A. Correct D. it has to be innodb_stats_transient_sample_pages for this to be correct