Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. # 5.6
  2. index_merge=on
  3. index_merge_union=on
  4. index_merge_sort_union=on
  5. index_merge_intersection=on
  6. engine_condition_pushdown=on
  7. index_condition_pushdown=on
  8. mrr=on
  9. mrr_cost_based=on
  10. block_nested_loop=on
  11. batched_key_access=off
  12. materialization=on
  13. semijoin=on
  14. loosescan=on
  15. firstmatch=on
  16. subquery_materialization_cost_based=on
  17. use_index_extensions=on
  18.  
  19. # 5.7
  20. Optimizer settings in 5.7:
  21. index_merge=on
  22. index_merge_union=on
  23. index_merge_sort_union=on
  24. index_merge_intersection=on
  25. engine_condition_pushdown=on
  26. index_condition_pushdown=on
  27. mrr=on
  28. mrr_cost_based=on
  29. block_nested_loop=on
  30. batched_key_access=off
  31. materialization=on
  32. semijoin=on
  33. loosescan=on
  34. firstmatch=on
  35. subquery_materialization_cost_based=on
  36. use_index_extensions=on
  37. condition_fanout_filter=on
  38. derived_merge=on
  39. duplicateweedout=on
  40.  
  41. # my innodb changes 5.6 -> 5.7
  42. innodb_adaptive_hash_index_parts added in 5.7, set to ‘8’
  43. innodb_additional_mem_pool_size set to 8388608 in 5.6, removed in 5.7
  44. innodb_buffer_pool_dump_at_shutdown changed from ‘OFF’ to ‘ON’
  45. innodb_buffer_pool_dump_pct added in 5.7, set to ’25’
  46. innodb_buffer_pool_load_at_startup changed from ‘OFF’ to ‘ON’
  47. innodb_buffer_pool_size changed from 2,804,940,800 to 11,811,160,064
  48. innodb_checksum_algorithm changed from ‘innodb’ to ‘crc32’
  49. innodb_deadlock_detect added in 5.7, set to ‘ON’
  50. innodb_default_row_format added in 5.7, set to ‘dynamic’
  51. innodb_file_format changed from ‘Antelope’ to ‘Barracuda’
  52. innodb_file_format_max changed from ‘Antelope’ to ‘Barracuda’
  53. innodb_fill_factor added in 5.7 set to ‘100’
  54. innodb_flush_sync added in 5.7 set to ‘ON’
  55. innodb_log_checksums added in 5.7 set to ‘ON’
  56. innodb_log_write_ahead_size added in 5.7 set to 8192
  57. innodb_max_undo_log_size added in 5.7 set to 1,073,741,824
  58. innodb_mirrored_log_groups removed in 5.7, set to ‘1’ in 5.6
  59. innodb_numa_interleave added in 5.7 set to ‘OFF’
  60. innodb_page_cleaners added in 5.7 set to ‘4’
  61. innodb_purge_rseg_truncate_frequency added in 5.7 set to ‘128’
  62. innodb_strict_mode changed from ‘OFF’ to ‘ON’
  63. innodb_temp_data_file_path added in 5.7, set to 'ibtmp1:12M:autoextend'
  64. innodb_undo_log_truncate added in 5.7, set to ‘OFF’
  65.  
  66. innodb_strict_mode=‘OFF’
  67. innodb_deadlock_detect=‘OFF’
  68. innodb_flush_sync=‘OFF’
  69. innodb_log_checksums=‘OFF’
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement