June 20, 2013

Post: Choosing a MySQL HA Solution - Post-Webinar Q&A

… which will allow you to stripe a TCP connection over multiple ports, and with a two-NIC bonded pair you’ll… described in the MySQL manual. You can configure the slave to only replicate a specific database, a set of databases, or specific tables; you can also configure the slave to replicate everything EXCEPT a specified set of databases

Comment: ZFS on Linux and MySQL

… on Data Virtualization for Databases meaning using a single set of datafiles that support multiple copies of the source database. Would be interested if someone wanted to contribute on the MySQL side. Interesting that…

Post: Percona Live MySQL Conference 2013 wrap-up

…summary of 451 Research’s database survey by viewing the research report “451 Research database survey points to MySQL gravitational tug of war… Kortney could not have succeeded without the support of our multiple service vendors including Ireland Presentations, Carleson Production Group, Tricord, …

Post: Is Synchronous Replication right for your app?

…always obvious how they will affect your database workload.  For example: Transaction commit takes … MySQL replication from this instance, since MySQL replication is asynchronous. What about semi-sync MySQL replication… mean you can’t modify data on multiple cluster nodes simultaneously.  You can. It …

Post: Why use encrypted backup with Percona XtraBackup 2.1 for MySQL?

…first alpha of Percona XtraBackup 2.1 for MySQL and with it we included the ability … can also combine compression and encryption, each using multiple CPU cores. One advantage of encrypting your backups…the place where you store your backups. Our databases hold a variety of information, some of which…

Post: Why MySQL Performance at Low Concurrency is Important

… important baseline that offers the best response times (MySQL server does not use multiple threads to execute query in parallel at this… jobs are written to be single-threaded. MySQL replication is single-thread too, and MySQL 5.6 brings some abilities of parallel replication but these apply only to some use cases. Many database maintenance operations…

Comment: Is Synchronous Replication right for your app?

… uses a separate service for a message queue, not MySQL at all. E.g. ActiveMQ, RabbitMQ, Resque, etc. All… the MQ in lieu of writing directly to the database. Sometime later (asynchronously), a worker app would read items … how useful it is to update the same row multiple times in a single transaction…

Post: Database problems in MySQL/PHP Applications

multiple databases Honestly I do not see application using one database per table that often. I however often see applications using multiple databases…is frequently told by people with traditional database background. Things are different with MySQL. There are many successful applications, using…

Post: Two Types of MySQL Users

… post I got number number of comments saying if MySQL would not have multiple storage engine interface it would not allow people… want your database operation to be ? Visiting customers I see 2 very distinct groups of MySQL Users Users what want cool database This…. Because of them MySQL got popularity and market position it has today. Users what want boring database What database did Marten Mickos sell…

Post: MySQL Limitations Part 4: One thread per connection

… way MySQL handles connections, allocating one thread per connection to the server. MySQL is a single process with multiple threads. Not all databases are architected this way; some have multiple processes that communicate…