I've been very busy testing and testing MySQL 5.1.12-beta and on
the surface, it passes my tests. But first, let me set the stage
as far as what we are trying to accomplish at RightMedia...
All of our adserving data is aggregated into our reporting
database, which runs MySQL version 5.0.22. The database is so
large, that we split it across 6 machines. Each of these machines
has a similar configuration: 2 Dual core Opteron CPUs, 16GB of
memory and 3 146GB 15k RPM SCSI drives in a RAID-0 set.
Here is what one of our typical tables looks like:
[Read more]
CREATE TABLE `network_daily` (
`entity_id` int(11) NOT NULL default '0',
`buyer_entity_id` int(11) NOT NULL default '0',
`buyer_line_item_id` int(11) NOT NULL default '0',
`seller_entity_id` int(11) NOT NULL default '0',
`seller_line_item_id` int(11) NOT NULL default '0',
`size_id` int(11) NOT NULL default '0',
`pop_type_id` …