Advertisement
Guest User

Untitled

a guest
Aug 24th, 2011
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. -------- General Statistics --------------------------------------------------
  2. [--] Skipped version check for MySQLTuner script
  3. [OK] Currently running supported MySQL version 5.1.41-3ubuntu12.6
  4. [OK] Operating on 32-bit architecture with less than 2GB RAM
  5.  
  6. -------- Storage Engine Statistics -------------------------------------------
  7. [--] Status: +Archive -BDB -Federated +InnoDB -ISAM -NDBCluster
  8. [--] Data in MyISAM tables: 160M (Tables: 109)
  9. [--] Data in InnoDB tables: 48K (Tables: 3)
  10. [!!] Total fragmented tables: 29
  11.  
  12.  
  13. -------- Performance Metrics -------------------------------------------------
  14. [--] Up for: 20d 14h 37m 58s (70M q [39.495 qps], 4K conn, TX: 42B, RX: 3B)
  15. [--] Reads / Writes: 93% / 7%
  16. [--] Total buffers: 42.0M global + 1.6M per thread (151 max threads)
  17. [OK] Maximum possible memory usage: 277.9M (27% of installed RAM)
  18. [OK] Slow queries: 0% (111/70M)
  19. [OK] Highest usage of available connections: 13% (21/151)
  20. [OK] Key buffer size / total MyISAM indexes: 16.0M/156.7M
  21. [OK] Key buffer hit rate: 99.8% (321M cached / 710K reads)
  22. [!!] Query cache is disabled
  23. [OK] Sorts requiring temporary tables: 0% (97 temp sorts / 181K sorts)
  24. [!!] Joins performed without indexes: 61386806
  25. [!!] Temporary tables created on disk: 43% (161K on disk / 373K total)
  26. [!!] Thread cache is disabled
  27. [!!] Table cache hit rate: 0% (64 open / 180K opened)
  28. [OK] Open file limit used: 11% (116/1K)
  29. [OK] Table locks acquired immediately: 99% (137M immediate / 137M locks)
  30. [OK] InnoDB data size / buffer pool: 48.0K/8.0M
  31.  
  32. -------- Recommendations -----------------------------------------------------
  33. General recommendations:
  34. Run OPTIMIZE TABLE to defragment tables for better performance
  35. Enable the slow query log to troubleshoot bad queries
  36. Adjust your join queries to always utilize indexes
  37. When making adjustments, make tmp_table_size/max_heap_table_size equal
  38. Reduce your SELECT DISTINCT queries without LIMIT clauses
  39. Set thread_cache_size to 4 as a starting value
  40. Increase table_cache gradually to avoid file descriptor limits
  41. Variables to adjust:
  42. query_cache_size (>= 8M)
  43. join_buffer_size (> 128.0K, or always use indexes with joins)
  44. tmp_table_size (> 16M)
  45. max_heap_table_size (> 16M)
  46. thread_cache_size (start at 4)
  47. table_cache (> 64)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement