June 20, 2013

Post: High Rate insertion with MySQL and Innodb

… needs high insertion rate for data which generally fits in memory. Last time I worked with similar system it used MyISAM and… partitioning can impact performance of your select queries dramatically. The inserts in this case of course are bulk inserts… using single value inserts you would…

Post: Using Multiple Key Caches for MyISAM Scalability

… written before – MyISAM Does Not Scale, or it does quite well – two…different formula if you like. mysql> select t.table_name,index_length/(select sum(index_length) from information_schema.tables…bound workload with 16 Cores Inserting data to about 20 tables I’ve seen performance gains as much as 10x…

Post: MySQL Slow query log in the table

…you require. Doing so however may affect your performance – updating table with a lot of indexes …structure with needed index and populate it with insertselect statement as you need it. One little …found even if I convert table to MyISAM, disable concurrent inserts and run long reporting query on …

Post: Cache Performance Comparison

… Socket) 13500 Selecting from table (TCP/IP) 5100 Selecting from table (Unix Socket) 7400 Note: The test measures peak performance so I did…` varchar(255) default NULL, PRIMARY KEY (`k`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO `test` VALUES (‘test’,'MyTestString’); 3) You need all…

Post: How innodb_open_files affects performance

…Innodb data dictionary the operation is slower than MyISAM tables. Though the difference can be related to…affect performance a lot on reads – what is about writes ? I tried again very simple test inserting the…(after reading all tables once) Same as with select case I could not see any measurable …

Comment: Should you move from MyISAM to Innodb ?

… recognise the search engine (!) anymore. Removing the compression helps for insert performance. Create table and alter table statements are very slow too… partitions, the innodb plugin was o.k., slower than MYISAM (incl. inserts, selects) but still o.k. Unfortunately we need the compression because…

Post: Performance impact of complex queries

…reporting queries can affect web site performance dramatically. Sometimes instead of using slave…and write it to the master (selects often contribute most of the load… file transfer if you’re using MyISAM tables. Chop it If you … things do DELETE … LIMIT 1000 and insert sleep 10; in between. By …

Post: Test Drive of Solid

performance and scalability testing before I wanted to look at basic transactional properties such as deadlock detection, select…: mysql> insert into test2 values (4,’FEDERATED’); Session2: select * from test2; +—-+——–+ | id | names | +—-+——–+ | 1 | Mysql | | 2 | Solid | | 3 | MyISAM | …

Post: InnoDB Full-text Search in MySQL 5.6 (part 1)

… it works compared to traditional MyISAM FTS. We’ll get to performance in the third installment. … is this one, which discusses improving bulk insert performance. At the very bottom, the page claims …0.00 sec) mysql> insert into dir_test_innodb (full_name, details) SELECT reverse(full_name), details…

Post: MySQL Server Variables - SQL layer or Storage Engine specific.

inserts). Really helps if you have really bulk inserts 100-1000+ values per single insert statement. concurrent_insert – Enables concurrent insert (while Selects are running) for MyISAM