Advanced Total found: 17
Posts (17) Pages (0) Comments (0)

June 17, 2006

Post: Using MyISAM in production

Posted by peter |
…to keep into account while using MyISAM tables. Recovery. MySQL was running stable…and go for long unnoticed with MyISAM storage engine. This hidden corruption may… further data corruption. Partial updates. MyISAM is does not have transactions …

January 8, 2007

Post: InnoDB vs MyISAM vs Falcon benchmarks - part 1

Posted by Vadim |
…next releases) Compilation parameters: For MyISAM / InnoDB ./configure –prefix=/usr/local…mysqlperformanceblog.com/files/benchmarks/innodb-myisam-falcon.html (Note: This benchmark…will be fixed before release. MyISAM shows stable result. InnoDB is…

January 12, 2009

Post: Should you move from MyISAM to Innodb ?

Posted by peter |
…move to Innodb and when staying on MyISAM is preferred ? I generally prefer to see…for all long reporting queries. In case MyISAM was chosen not just happened to … Innodb tuning. Innodb needs tuning. Really. MyISAM for many applications can work well …

September 3, 2008

Post: ANALYZE: MyISAM vs Innodb

Posted by peter |
… computing stats: mysql> show variables like “myisam_stats_method”; +———————+—————+ | Variable_name | Value | … dropped significantly. This means Innodb and MyISAM have different stats computation method by …

November 5, 2009

Post: Air traffic queries in MyISAM and Tokutek (TokuDB)

Posted by Vadim |
… created indexes. Load time for MyISAM: 16608 sec For TokuDB: 19131 … data TokuDB will be faster MyISAM. Now to queries. Bradley pointed…you are interested to compare MyISAM with previous engines: QueryMyISAMMonetDBInfoBrightLucidDBInfiniDB Q072…

October 12, 2007

Post: MyISAM Scalability and Innodb, Falcon Benchmarks

Posted by Vadim |
…’s why we did not escalate MyISAM scalability question. This time working on …id`), KEY `id` (`id`,`stat`) ) ENGINE=MyISAM; CREATE TABLE `t2` ( `id` int(11… (`id`), KEY `val` (`val`) ) ENGINE=MyISAM AUTO_INCREMENT=4097 Table t1 contains…

May 29, 2006

Post: Join performance of MyISAM and Innodb

Posted by peter |
…` (`i`), KEY `c` (`c`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; select count(t1…and using hash, which is faster MyISAM does compression for character keys which…it perform slower for random lookups MyISAM generally has lower processing overhead due…

May 13, 2006

Post: To pack or not to pack - MyISAM Key compression

Posted by peter |
…bit longer rows is frequent reason of MyISAM performing better than Innodb. In this article…some kind of special hack The fact MyISAM will by default compress string keys …` (`c`), KEY `id` (`id`) ) ENGINE=MyISAM Index size: PACK_KEYS=DEFAULT – …

September 29, 2009

Post: Quick comparison of MyISAM, Infobright, and MonetDB

Posted by Baron Schwartz |
…. I wanted to see how fast MyISAM vs. MonetDB would interpret really large INSERT …a graph of the times (smaller is better): MyISAM took 88 seconds, MonetDB took 200, … table on disk (smaller is better): MyISAM is 787MB, MonetDB is 791MB, and …

May 26, 2006

Post: MyISAM mmap feature (5.1)

Posted by Vadim |
… know MyISAM does not cache data, only indexes. MyISAM assumes OS cache is good enough and uses …for the datafiles. That can be enabled by –myisam_use_mmap=1 startup option. In this case instead of systems call MyISAM will use memcpy function. There is a …