MySQL Forums
Forum List  »  Performance

Re: RAM requirements- new server
Posted by: Rick James
Date: April 02, 2009 01:17AM

13/18 -- fine.
Other ram things -- not much.

40GB table -- if randomly accessed, you will be effectively I/O bound in spite of your big RAM.

file-per-table -- desirable.

innodb_flush_method = O_DIRECT -- desirable, especially if you have good buffering in the Disk controller.

innodb_flush_log_at_trx_commit -- this can make the biggest diff in performance.
More info: http://forums.mysql.com/read.php?24,213851,214241

Check the details of your RAID.
* Controller or software? (hdw is better)
* Onboard write cache? (very desirable)
* Write caching on drives, themselves? (probably should turn off)

For many queries, RAID-5 is as fast as RAID-10.

Your overnight stuff could probably be turned into summary tables that can be maintained "up to the minute" without noticeable performance hit. But that is another discussion.

Options: ReplyQuote


Subject
Views
Written By
Posted
12816
A B
April 02, 2009 12:15AM
Re: RAM requirements- new server
3839
April 02, 2009 01:17AM
3211
A B
April 02, 2009 03:27PM
2731
April 02, 2009 09:02PM
2499
A B
April 03, 2009 12:54AM
2501
April 03, 2009 10:06AM
2430
A B
April 05, 2009 09:49PM
2455
April 07, 2009 08:18AM
2392
A B
April 08, 2009 05:40PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.