Advertisement
Guest User

mySql Tunner

a guest
Apr 28th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. -------- General Statistics --------------------------------------------------
  2. [--] Skipped version check for MySQLTuner script
  3. [OK] Currently running supported MySQL version 5.1.73-cll
  4. [OK] Operating on 64-bit architecture
  5.  
  6. -------- Storage Engine Statistics -------------------------------------------
  7. [--] Status: +Archive -BDB -Federated +InnoDB -ISAM -NDBCluster
  8. [--] Data in MyISAM tables: 334M (Tables: 106)
  9. [--] Data in InnoDB tables: 24M (Tables: 92)
  10. [!!] Total fragmented tables: 83
  11.  
  12. -------- Security Recommendations -------------------------------------------
  13. [OK] All database users have passwords assigned
  14.  
  15. -------- Performance Metrics -------------------------------------------------
  16. [--] Up for: 8d 14h 55m 33s (21M q [28.749 qps], 509K conn, TX: 339B, RX: 3B)
  17. [--] Reads / Writes: 99% / 1%
  18. [--] Total buffers: 74.0M global + 7.5M per thread (500 max threads)
  19. [!!] Maximum possible memory usage: 3.7G (93% of installed RAM)
  20. [OK] Slow queries: 0% (31/21M)
  21. [OK] Highest usage of available connections: 21% (108/500)
  22. [OK] Key buffer size / total MyISAM indexes: 32.0M/73.4M
  23. [OK] Key buffer hit rate: 100.0% (797M cached / 18K reads)
  24. [OK] Query cache efficiency: 24.6% (4M cached / 19M selects)
  25. [!!] Query cache prunes per day: 1299011
  26. [OK] Sorts requiring temporary tables: 0% (0 temp sorts / 6M sorts)
  27. [!!] Temporary tables created on disk: 47% (2M on disk / 4M total)
  28. [OK] Thread cache hit rate: 99% (108 created / 509K connections)
  29. [OK] Table cache hit rate: 64% (411 open / 634 opened)
  30. [OK] Open file limit used: 16% (423/2K)
  31. [OK] Table locks acquired immediately: 99% (20M immediate / 20M locks)
  32. [!!] InnoDB data size / buffer pool: 24.8M/8.0M
  33.  
  34. -------- Recommendations -----------------------------------------------------
  35. General recommendations:
  36. Run OPTIMIZE TABLE to defragment tables for better performance
  37. Reduce your overall MySQL memory footprint for system stability
  38. When making adjustments, make tmp_table_size/max_heap_table_size equal
  39. Reduce your SELECT DISTINCT queries without LIMIT clauses
  40. Variables to adjust:
  41. *** MySQL's maximum memory usage is dangerously high ***
  42. *** Add RAM before increasing MySQL buffer variables ***
  43. query_cache_size (> 16M)
  44. tmp_table_size (> 16M)
  45. max_heap_table_size (> 16M)
  46. innodb_buffer_pool_size (>= 24M)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement