FromDual TechFeed (en)
InnoDB Flush Method has changed
The InnoDB Flush Method has changed. This can have an impact on InnoDB write Performance.
Taxonomy upgrade extras: Fpmmm Triggers and Rules Innodb Flush Innodb_flush_method Configuration Parameter Variables
The Upcoming Leap Second
The press, be it the general daily newspaper or the computer magazines, is currently informing the public about an upcoming leap second, which will be taken in the night from June 30 to July 1 at 00:00:00 UTC. While we Europeans will enjoy our well-deserved sleep then, this will be at 5 PM (17:00) local time on June 30 for Califormia people, and during the morning of July 1 for people in China, Japan, Korea, or Australia. (Other countries not mentioned for the sake of brevity.) This is different from last …
Taxonomy upgrade extras:
FromDual Backup and Recovery Manager for MySQL 1.2.2 has been released
FromDual has the pleasure to announce the release of the new version 1.2.2 of the popular Backup and Recovery Manager for MySQL and MariaDB (fromdual_bman).
You can download the FromDual Backup and Recovery Manager from here.
In the inconceivable case that you find a bug in the Backup and Recovery Manager please report it to our Bugtracker.
Any feedback, statements and testimonials are welcome as well! Please send them to feedback@fromdual.com.
Upgrade from 1.2.x to 1.2.2
# cd ${HOME}/product
# tar xf …Taxonomy upgrade extras: Backup Restore Recovery Pitr Fromdual_brman Brman Release Bman Rman
Correct mysqldump backup
Correct is a question of definition... I suggest starting with the following command for a full backup:
for my.cnf
$ BACKUP_TIMESTAMP=`date '+%Y-%m-%d_%H-%M-%S'` $ BACKUP_DIR='/mybackupdir' $ cp /etc/my.cnf $BACKUP_DIR/my_$BACKUP_TIMESTAMP.cnf
for MariaDB/MySQL databases with MyISAM/Aria tables
$ BACKUP_TIMESTAMP=`date '+%Y-%m-%d_%H-%M-%S'` $ BACKUP_DIR='/mybackupdir' $ mysqldump --user=root --all-databases --lock-all-tables --master-data=1 --flush-privileges \ --flush-logs --triggers …
Taxonomy upgrade extras:
SQL search for special characters
The following example should work for you:
CREATE TABLE spec(txt VARCHAR(255));
INSERT INTO spec values (‘bla\tbla\nbla’); INSERT INTO spec values (’\n\tb)’); INSERT INTO spec values (‘abc\n\tb)xyz’);
SELECT * FROM spec;
SELECT * FROM spec WHERE txt LIKE ‘\n\tb)’; SELECT * FROM spec WHERE txt LIKE ‘%\n\tb)%’; SELECT * FROM spec WHERE txt REGEXP ‘^\n\tb)$’; SELECT * FROM spec WHERE txt REGEXP ‘\n\tb)’;
Taxonomy upgrade extras:
Controlling worldwide manufacturing plants with MySQL
A MySQL customer of FromDual has different manufacturing plants spread across the globe. They are operated by local companies. FromDuals customer wants to maintain the manufacturing receipts centralized in a MySQL database in the Head Quarter in Europe. Each manufacturing plant should only see their specific data.

Manufacturing log information should be reported backup to European Head Quarter MySQL database.
The process was designed as follows:

Preparation of Proof of Concept (PoC)
To simulate all cases …
Taxonomy upgrade extras: Multi-Source Replication Mysql-Replication Replication Multi-Master Replication Fan-in Replication Row Filtering Gtid
Galera and tables without a Primary Key
We finally got the results. The table does NOT have a Primary Key and/or an index on lSessionId:
CREATE TABLE IF NOT EXISTS `genLogins` (
`lSessionId` varchar(128) NOT NULL,
`lUid` int(8) NOT NULL DEFAULT '0',
`lLang` char(2) NOT NULL,
`lTimeout` int(10) NOT NULL DEFAULT '0',
`lReloadsess` enum('y','n') NOT NULL DEFAULT 'n',
`lTsexpire` int(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;Please also read: Disadvantages of explicitly NOT using …
Taxonomy upgrade extras:
Logging Galera Cluster conflicts
We typically suggest our customers to use our MySQL/Galera Cluster my.cnf configuration template to avoid MySQL configuration and performance problems.
And we are paranoid as well. Thus we enable all useful logging:
wsrep_log_conflicts = 1
But this has also some consequences of more visibility…
If you monitor carefully your Galera Cluster for example with the FromDual Performance Monitor for MySQL and MariaDB, you might probably see some strange values increasing from time to time:
mysql< SHOW …Taxonomy upgrade extras: Logging Galera Cluster Conflict Deadlock Error Log Error
Galera Cluster last inactive check and VMware snapshots
From time to time we see at Galera Cluster customer engagements the following, for me scary, warning in the MySQL error log:
[Warning] WSREP: last inactive check more than PT1.5S ago (PT7.06159S), skipping check
We mostly see this in VMware set-ups. Some further enquiry with the Galera developers did not give a satisfying answer:
This can be seen on bare metal as well - with poorly configured mysqld, O/S, or simply being overloaded. All it means is that this thread could not get CPU time for 7.1 seconds. …
Taxonomy upgrade extras: Galera Snapshot Vmware
Rename MySQL Partition
Before I forget it and have to search again here a short note about how to rename a MySQL Partition:
My dream:
ALTER TABLE history RENAME PARTITION p2015_kw10 INTO p2015_kw09;
In reality:
ALTER TABLE history
REORGANIZE PARTITION p2015_kw10 INTO (
PARTITION p2015_kw09 VALUES LESS THAN (UNIX_TIMESTAMP('2015-03-02 00:00:00'))
);
Caution: REORGANIZE PARTITION causes a full copy of the whole partition!
Hint: I assume it would be very easy for MySQL or MariaDB to make this DDL command an in-place …
Taxonomy upgrade extras: Partition Rename Ddl
mpm run overpasses older one
This error is NOT serious. It happens, when one MPM run overpasses an older one or when you start a second run manually.
We will fix this issue in one of our next releases when we completely have redesigned the MPM agent…
Taxonomy upgrade extras:
MySQL Enterprise Incremental Backup simplified
MySQL Enterprise Backup (MEB) has the capability to make real incremental (differential and cumulative?) backups. The actual releases are quite cool and you should really look at it…
Unfortunately the original MySQL documentation is much too complicated for my simple mind. So I did some testing and simplified it a bit for our customers…
If you want to dive into the original documentation please look here: Making an Incremental Backup .
If you want to use MySQL Enterprise Backup please let us …
Taxonomy upgrade extras: Meb Mysql Enterprise Backup Enterprise Backup Incremental Backup
mpm/fpmmm module
Hi burps
In Zabbix we have “hosts”. In MPM a host is either a server (DBSERVER01) or a MySQL Instance (mysqld).
The host section [DBSERVER01] or [mysqld] overwrites the [default] section.
The MPM Agent is triggered by the mpm Module in the Server section. So it needs only ONE mpm module per MPM Agent.
In your case it most probably makes sense to have 2 sections: One for the Server and one for the Database:
[DBSERVER01] Modules = mpm server
[mysqld] Modules = process mysql myisam innodb …
Taxonomy upgrade extras:
Creating Event Handlers with MySQL Enterprise Monitor
MySQL Enterprise Monitor (MEM) has by default no Event Handlers created and activated. These Event Handlers you have to define yourself according to your needs.
In this article we discuss how to create MySQL Enterprise Monitor Event Handlers with MEM v.3.0.18. For other (older) versions the steps may vary…
Task: Event Handler for maximum Connections reached
We would like to be notified by MySQL Enterprise Monitor when the number of connections is near to max_connections.
For this we search first …
Taxonomy upgrade extras: Mysql Enterprise Monitor Monitoring Event Handler Performance Monitor
Nagios and Icinga plugins for MySQL 1.0.0 have been released
FromDual has the pleasure to announce the release of the new version 1.0.0 of its widely used Nagios and Icinga plugins for MySQL, Galera Cluster, MariaDB and Percona Server.
All plugins are basically renewed and should now work all correctly.
The new Nagios/Icinga plugins can be downloaded here.
In the inconceivable case that you find a bug in the Nagios/Icinga plugins please report it to our bug tracker.
Any feedback, statements and testimonials are welcome as well! Please send them to …
Taxonomy upgrade extras: Nagios Icinga Plugin Monitor Performance Alert
Linuxtag: Knowledge and People - and New Colleagues?
At FromDual, we are currently preparing for our participation in the “Chemnitzer Linux-Tage” in March.
While we don’t yet know whether the programme committee accepted our proposed talks, we will have a booth and hope for interesting exchanges with others from the MySQL, database, Linux, … world. Of course, we will also mention that we are looking for additional colleagues - there are so many tasks that we need more people to handle them all. (In case you got curious, look here: …
Taxonomy upgrade extras:
Download MySQL Enterprise Features
MySQL provides some great enterprise features beside the MySQL Server. The ones we are asked the most at customers are:
- MySQL Enterprise Backup (MEB)
- MySQL Enterprise Monitor (MEM) and
- MySQL Enterprise Workbench (MWB)
MySQL Enterprise Backup (MEB)
MySQL Enterprise Backup (MEB) is an alternative to the mysqldump backup utility. Its big advantage is its fast backup but even faster restore performance. This is a must for all MySQL users having bigger databases than let’s say 10 to 20 Gigabytes and/or …
Taxonomy upgrade extras: Enterprise Monitor Backup Workbench Enterprise
MySQL table Point-in-Time-Recovery from mysqldump backup
Sometimes we face the situation where we have a full MySQL database backup done with mysqldump and then we have to restore and recover just one single table out of our huge mysqldump file.
Further our mysqldump backup was taken hours ago so we want to recover all the changes on that table since our backup was taken up to the end.
In this blog article we cover all the steps needed to achieve this goal for MySQL and MariaDB.
Recommendation: It is recommended to do theses steps on a testing system and then …
Taxonomy upgrade extras: Backup Restore Recovery Mysqldump Point-in-Time-Recovery Pitr
Later Findings ...
… show that this is expected behavior:
- Galera will replicate a DDL statement first, before it gets executed locally.
- Local execution will fail, because the "super" privilege is a global one, it cannot be granted for a specific database "db.*" but only for all of them "*.*"
- Of course, execution on the other nodes will fail in the same way.
Taxonomy upgrade extras:
Introducing Myself: Jörg Brühe
For some time already, FromDual’s “Our Team” page lists me, and it even reveals that I joined in September, 2014. Also for some time, the list of FromDual blogs contains an entry “Jörg’s Blog”, but it doesn’t lead to any entries. It is high time to fix this and create entries, starting with an introduction of myself.
Often, in such introductions people use the phrase of “the new kid on the block”. I won’t. If I am to use those words, I will arrange …
Taxonomy upgrade extras:

