June 18, 2013

Post: Analyzing air traffic performance with InfoBright and MonetDB

… bigger than original data. LucidDB Here it took time to find how to execute command from command line using included sqlline… am using c*1000/c2 here, because MonetDB seems using integer arithmetic and, with c/c2 I received just 1. So… if you want to compare or get info about air performance.

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

… bit of simplification but it should be enough to understand performance implications of this approach. Note trailing spaces for strings are… need to scan keyblock from the start uncompressing keys to find matching key value. This means the following will apply: Forward… times faster. With PACK_KEYS=1 we got join by integer key performing almost 5 times slower than it was – this is…

Post: Using CHAR keys for joins, how much is the overhead ?

… avoid sending data to the client Do not try to find any good meaning for query or schema. For joins which… keys. The performance dropped down to 6.1 seconds which makes it over 2 times slower compared to integer based join. So how do I read these results ? CHAR keys are indeed slower for joins compared to integer keys Performance

Post: To UUID or not to UUID ?

…the same point – be careful applying benchmarks you find in the Internet to your own case, it…are: I’ve created MyISAM tables containing just integer auto_increment primary key and containing char(36)… this little case we have about 200 times performance difference which is worth to consider Can UUID…

Post: Falcon Storage Engine Design Review

… are done specially for Falcon you might find those aspects positive. [-] No Spinlocks Falcon does … Huge indexes is where large portion of Innodb performance problems come however. We should however see how … for example using only as many bytes for integer as it requires, not storing column value …

Post: InnoDB Full-text Search in MySQL 5.6: Part 2, The Queries!

…will be exactly identical to the same query when performed against InnoDB data, OR that the results returned by…a second column to the table which was an integer PK, and in another attempt, I tried just making…MyISAM able to locate this record but InnoDB cannot find it at all? I suspect that the “B” …

Comment: How to find wrong indexing with glance view

… – gender, has_foto; enums – available, looking_for, location; integer – age 3) All queries fall into X IN …understand that mysql finds one set using an index, another set and then finds records which exist … If you’re smart enough and read mysql performance related articles then you’ll store all …

Post: Common MySQL traps webinar questions followup

… indexing Q: Is there a Percona recommendation for finding Hot Spots in a high load application? Or …archived’), the values will be stored internally as an integer and they will only need 1 byte per value…or practices. Of course I’m biased but High Performance MySQL 3rd edition is a very good book. …

Post: Quick comparison of MyISAM, Infobright, and MonetDB

… same one Peter wrote about recently). The client’s performance is suffering in part because of the number of…MonetDB for it). I created a table with 200 integer columns and loaded it with random numbers between 0… I had to go to the mailing lists to find the correct COPY syntax — it wasn’t that …

Post: Edge-case behavior of INSERT...ODKU

…on a customer issue wherein they were observing database performance that dropped through the floor (to the point … was a single table with an auto-incrementing integer PK and a secondary UNIQUE KEY. The queries …, but then it checks the UNIQUE KEY and finds a violation, so instead it does an UPDATE. …