1

How long Innodb Shutdown may take

http://www.mysqlperformanceblog.com

How long it may take MySQL with Innodb tables to shut down ? It can be quite a while.

Read more »
admin's picture
Created by admin 4 days 4 hours ago – Made popular 4 days 4 hours ago
Category: Databases   Tags:
1

Introducing tcprstat, a TCP response time tool

http://www.mysqlperformanceblog.com

Ignacio Nin and I (mostly Ignacio) have worked together to create tcprstat[1], a new tool that times TCP requests and prints out statistics on them. The output looks somewhat like vmstat or iostat, but we’ve chosen the statistics carefully so you can compute meaningful things about your TCP traffic.
What is this good for? In a nutshell, it is a lightweight way to measure response times on a server such as a database, memcached, Apache, and so on. You can use this information for historical metrics, capacity planning, troubleshooting, and monitoring to name just a few.

Read more »
admin's picture
Created by admin 6 days 15 min ago – Made popular 6 days 13 min ago
Category: Databases   Tags:
1

InnoDB memory allocation, ulimit, and OpenSUSE

http://www.mysqlperformanceblog.com

I recently encountered an interesting case. A customer reported that mysqld crashed on start on OpenSUSE 11.2 kernel 2.6.31.12-0.2-desktop x86_64   with 96 GB RAM when the innodb_buffer_pool_size was set to anything more than 62 GB. I decided to try it with 76 GB. The error message was an assert due to a failed malloc() in ut_malloc_low() in ut/ut0mem.c inside InnoDB source code.

Read more »
admin's picture
Created by admin 2 weeks 13 hours ago – Made popular 2 weeks 13 hours ago
Category: Databases   Tags:
1

High availability for MySQL on Amazon EC2 – Part 4 – The instance restart script

http://www.mysqlperformanceblog.com

This post is the fourth of a series that started here.
From the previous of this series, we now have resources configured but instead of starting MySQL, Pacemaker invokes a script to start (or restart) the EC2 instance running MySQL. This blog post describes the instance restart script. Remember, I am more a DBA than a script writer so it might not be written in the most optimal way.

Read more »
admin's picture
Created by admin 2 weeks 4 days ago – Made popular 2 weeks 4 days ago
Category: Databases   Tags:
1

Percona talks at OpenSQL Camp this weekend

http://www.mysqlperformanceblog.com

Four Perconians (perconites?) will be at OpenSQL Camp in Sankt Augustin, Germany this weekend presenting talks on:

  • Recovery of Lost or Corrupted InnoDB Tables
  • Keep your MySQL backend online no matter what
  • XtraDB -- InnoDB on steroids
  • Xtrabackup for MySQL

If you would like to stop by and say hello, we are Aleksandr, Istvan, Morgan and Aurimas (pictures here).

Read more »
admin's picture
Created by admin 2 weeks 4 days ago – Made popular 2 weeks 4 days ago
Category: Databases   Tags:
1

Announcing Training for Operations Teams

http://www.mysqlperformanceblog.com

We’re opening up registration for our new training courses today.  In short: we are moving from two days to a new four-day format.  The new additions are created by:

Read more »
admin's picture
Created by admin 2 weeks 5 days ago – Made popular 2 weeks 5 days ago
Category: Databases   Tags:
1

Testing MySQL column stores

http://www.mysqlperformanceblog.com

Recently I had the opportunity to do some testing on a large data set against two MySQL column-store storage engines. I’d like to note that this effort was sponsored by Infobright, but this analysis reflects my independent testing from an objective viewpoint.
I performed two different types of testing. The first focused on core functionality and compatibility of ICE (Infobright Community Edition) compared with MyISAM on a small data set. The second part of my testing compared the performance and accuracy of ICE with InfiniDB Community Edition on a 950GB data set.

Read more »
admin's picture
Created by admin 3 weeks 14 hours ago – Made popular 3 weeks 14 hours ago
Category: Databases   Tags:
1

Why message queues and offline processing are so important

http://www.mysqlperformanceblog.com

If you read Percona’s whitepaper on Goal-Driven Performance Optimization, you will notice that we define performance using the combination of three separate terms. You really want to read the paper, but let me summarize it here:

Read more »
admin's picture
Created by admin 3 weeks 6 days ago – Made popular 3 weeks 6 days ago
Category: Databases   Tags:
1

dissertation writing

http://uk-dissertation.com

Choosing the right essay topic is a step in the right direction when it comes to essay writing. Essay writing involves the use of well constructed sentences that have a logical meaning to pass across a certain message or information. Normally, essay topics are chosen depending on the type of essay you are planning to write.

Read more »
Created by JamieJoesph 4 weeks 5 days ago – Made popular 4 weeks 5 days ago
Category: Databases   Tags:
1

Why you can’t rely on a replica for disaster recovery

http://www.mysqlperformanceblog.com

A couple of weeks ago one of my colleagues and I worked on a data corruption case that reminded me that sometimes people make unsafe assumptions without knowing it. This one involved SAN snapshotting that was unsafe.
In a nutshell, the client used SAN block-level replication to maintain a standby/failover MySQL system, and there was a failover that didn’t work; both the primary and fallback machine had identically corrupted data files. After running fsck on the replica, the InnoDB data files were entirely deleted.

Read more »
admin's picture
Created by admin 5 weeks 1 day ago – Made popular 5 weeks 1 day ago
Category: Databases   Tags:
1

Storing MySQL Binary logs on NFS Volume

http://www.mysqlperformanceblog.com

There is a lot of discussions whenever running MySQL storing data on NFS is a good idea. There is a lot of things for and against this and this post is not about them.
The fact is number of people run their databases on NetApp and other forms of NFS storage and this post is about one of discoveries in such setup.
There are good reasons to have binary logs on NFS volume - binary logs is exactly the thing you want to survive the server crash - using them you can do point in time recovery from backup.
I was testing high volume replication today using Sysbench:

Read more »
admin's picture
Created by admin 5 weeks 2 days ago – Made popular 5 weeks 2 days ago
Category: Databases   Tags:
1

Caching could be the last thing you want to do

http://www.mysqlperformanceblog.com

I recently had a run-in with very popular PHP ecommerce package which makes me want to voice a recurring mistake I see in how many web applications are architected.
What is that mistake?

The ecommerce package I was working with depended on caching.  Out of the box it couldn’t serve 10 pages/second unless I enabled some features which were designed to be “optional” (but clearly they weren’t).

Read more »
admin's picture
Created by admin 6 weeks 1 day ago – Made popular 6 weeks 1 day ago
Category: Databases   Tags:
1

Estimating Replication Capacity

http://www.mysqlperformanceblog.com

It is easy for MySQL replication to become bottleneck when Master server is not seriously loaded and the more cores and hard drives the get the larger the difference becomes, as long as replication

Read more »
admin's picture
Created by admin 6 weeks 6 days ago – Made popular 6 weeks 6 days ago
Category: Databases   Tags:
1

SSD: Free space and write performance

http://www.mysqlperformanceblog.com

( cross posting from SSD Performance Blog )

Read more »
admin's picture
Created by admin 7 weeks 1 day ago – Made popular 7 weeks 1 day ago
Category: Databases   Tags:
1

Analyzing the distribution of InnoDB log file writes

http://www.mysqlperformanceblog.com

I recently did a quick analysis of the distribution of writes to InnoDB’s log files. On a high-traffic commodity MySQL server running Percona XtraDB for a gaming workload (mostly inserts to the “moves” table), I used strace to gather statistics about how the log file writes are distributed in terms of write size. InnoDB writes to the log files in multiples of 512 bytes. Mark Callaghan explained this and some of its performance implications here.

Read more »
admin's picture
Created by admin 7 weeks 2 days ago – Made popular 7 weeks 2 days ago
Category: Databases   Tags:
1

Data mart or data warehouse?

http://www.mysqlperformanceblog.com

This is part two in my six part series on business intelligence, with a focus on OLAP analysis.

Read more »
admin's picture
Created by admin 7 weeks 3 days ago – Made popular 7 weeks 3 days ago
Category: Databases   Tags:
1

On Benchmarks on SSD

http://www.mysqlperformanceblog.com

(cross post from SSD Performance Blog )
To get meaningful performance results on SSD storage is not easy task, let’s see why.
There is graph from sysbench fileio random write benchmark with 4 threads. The results were taken on PCI-E SSD card ( I do not want to name vendor here, as the problem is the same for any card).

Read more »
admin's picture
Created by admin 7 weeks 5 days ago – Made popular 7 weeks 5 days ago
Category: Databases   Tags:
1

SLC vs MLC

http://www.mysqlperformanceblog.com

(cross posting from SSDPeformanceBlog.com )
All modern solid state drives use NAND memory based on SLC (single level cell) or MLC (multi level cell) technologies.
Not going into physical details – SLC basically stores 1 bit of information, while MLC can do more. Most popular option for MLC is 2 bit, and there is movement into 3 bit direction.
This fact gives us next characteristics:

Read more »
admin's picture
Created by admin 7 weeks 5 days ago – Made popular 7 weeks 5 days ago
Category: Databases   Tags:
1

Scaling: Consider both Size and Load

http://www.mysqlperformanceblog.com

So lets imagine you have the server handling 100.000 user accounts. You can see the CPU,IO and Network usage is below 10% of capacity – does it mean you can count on server being able to
handle 1.000.000 of accounts ? Not really, and there are few reasons why, I’ll name most important of them:

Read more »
admin's picture
Created by admin 7 weeks 5 days ago – Made popular 7 weeks 5 days ago
Category: Databases   Tags:
1

Percona at OSCON 2010

http://www.mysqlperformanceblog.com

This year we’re participating in OSCON as a Sponsor and organizing some BOFs. I will be on the conference 21 and 22 if you’re interested to chat.
Here is the list of currently scheduled BOFs which I’ll be hosting:
Running Databases on Flash Storage
Sphinx Search 2010
XtraDB, XtraBackup, Maatkit, Percona Server

Read more »
admin's picture
Created by admin 7 weeks 5 days ago – Made popular 7 weeks 5 days ago
Category: Databases   Tags:

Your Ad Here

User login

Who's online

There are currently 0 users and 1 guest online.