News
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
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:
FromDual Performance Monitor for MySQL and MariaDB 0.10.4 has been released
FromDual has the pleasure to announce the release of the new version 0.10.4 of its popular Database Performance Monitor for MySQL, MariaDB, Galera Cluster and Percona Server fpmmm.
You can download fpmmm from here.
In the inconceivable case that you find a bug in fpmmm please report it to our Bug-tracker.
Any feedback, statements and testimonials are welcome as well! Please send them to feedback@fromdual.com.
This release contains various minor bug fixes and improvements.
New installation of fpmmm v0.10.4 …
Taxonomy upgrade extras: Mysql Performance Monitor Monitoring Fpmmm Maas Performance Monitor Release
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
FromDual Performance Monitor for MySQL and MariaDB 0.10.1 has been released
FromDual has the pleasure to announce the release of the new version 0.10.1 of its popular Database Performance Monitor for MySQL, MariaDB, Galera Cluster and Percona Server fpmmm.
You can download fpmmm from here.
In the inconceivable case that you find a bug in fpmmm please report it to our Bug-tracker.
Any feedback, statements and testimonials are welcome as well! Please send them to feedback@fromdual.com.
This release contains various minor bug fixes and improvements. Mainly it was a rewrite from Perl …
Taxonomy upgrade extras: Mysql Performance Monitor Monitoring Fpmmm Maas Performance Monitor Release
MySQL Environment MyEnv 1.2.0 has been released
FromDual has the pleasure to announce the release of the new version 1.2.0 of its popular MySQL, Galera Cluster, MariaDB and Percona Server multi-instance environment MyEnv.
The new MyEnv can be downloaded here.
In the inconceivable case that you find a bug in the MyEnv please report it to our bug tracker.
Any feedback, statements and testimonials are welcome as well! Please send them to [feedback@fromdual.com](mailto:feedback@fromdual.com?Subject=Feedback for MyEnv).
Upgrade from 1.1.x to 1.2.0
# cd …Taxonomy upgrade extras: Myenv Operation Mysql Operations Multi Instance Consolidation Testing Release
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:
Nagios and Icinga plugins for MySQL/MariaDB released
FromDual is pleased to announce the release of a new version 1.0.0 of the Nagios and Icinga plugins for MySQL, MariaDB, Percona Server and Galera Cluster.
Any information about the changes and the new functions of the Nagios and Icinga plugins you can find here.
If you have any problems with the new version you can reach us by e-mail at: contact@fromdual.com or by phone on +41 44 500 58 20.
Your FromDual Team
Taxonomy upgrade extras: Nagios Icinga Plugin Mysql Mariadb Percona Server Galera Cluster Release
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
MySQL Environment MyEnv 1.1.4 has been released
FromDual has the pleasure to announce the release of the new version 1.1.4 of its popular MySQL, Galera Cluster, MariaDB and Percona Server multi-instance environment MyEnv.
The new MyEnv can be downloaded here.
In the inconceivable case that you find a bug in the MyEnv please report it to our bug tracker.
Any feedback, statements and testimonials are welcome as well! Please send them to [feedback@fromdual.com](mailto:feedback@fromdual.com?Subject=Feedback for MyEnv).
Upgrade from 1.1.x to 1.1.4
# cd …Taxonomy upgrade extras: Myenv Operation Mysql Operations Multi Instance Consolidation Testing Release
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

