I've blogged about common_schema multiple times in the past, and it's a tool I use frequently.
Last week I had a project to delete millions of rows from
multiple rollup tables in a star schema. Since the tables are not
partitioned I needed to use DELETE instead of
DROP PARTITION, but I didn't want to delete millions
of rows in a single transaction. My first instinct was to use
common_schema's split() function to break the
deletes into chunks. So I ran a query on …
I just pushed the new Java based iiBench for MySQL (and Percona
Server and MariaDB), the code and documentation are available now
in the iibench-mysql Github repo. Pull request are
welcome!
The history of iiBench goes back to the early days of
Tokutek.
Since "indexed insertion" is a strength of Fractal Tree indexes, the first iiBench was
created by Tokutek in C++ back in 2008. Mark
Callaghan rewrote iiBench in Python, adding several features
along the way. His version of iiBench is available in …
This Log Buffer Edition covers some informative and interesting posts from Oracle, SQL Server and the MySQL.
Oracle:
If you’re not using Toad DBA Suite, it’s sometimes hard to find solutions. Somebody wanted to know how to find indexes that aren’t that aren’t indirect. Indirect indexes are those created for a primary key because a primary key column or set of columns are both not null and uniquely constrained. You can’t drop a unique index for a primary key without dropping the primary key constraint that indirectly created it.
At the NoCOUG fall conference at the eBay town hall in San Jose, we got a first-hand look at the workings of …
[Read more]Helsinki, Finland – 24 NOVEMBER 2014 – Codership, whose Galera Cluster technology brings high availability to open source databases worldwide, today announced it has been named as a Red Herring’s 2014 Top 100 Global Winner . This prestigious recognition honours the year’s most audacious and far-reaching private technology companies and entrepreneurs across the globe.
Red Herring’s Top 100 Global list has become a mark of distinction for identifying promising new companies and entrepreneurs. Red Herring editors were among the first to recognize that companies such as Facebook, Twitter, Google, Yahoo, Skype, Salesforce.com, YouTube, and eBay would change the way we live and work.
“Choosing the companies with the strongest potential …
[Read more]
Creating a simple Load Balance client for a MySQL
Cluster
There are few key points in using the Connector/J with Load
Balancing on MySQL Cluster
- Dynamic JMX with Connector/J
- loadBalanceEnableJMX=true&loadBalanceConnectionGroup=<group>
- Timeout value in the blacklist with Connector/J
The following code piece is used on my notebook with MySQL
Cluster running on 2 x VMs. IPs for accessing the 2 MySQL
Nodes on the Cluster are 192.168.56.104 and 192.168.56.105.
The port number with the 2 x MySQL Nodes are the same with
the value of "3306".
Here is the MySQL Cluster status with MySQL Cluster Manager
(MCM)
…
People using OpenStack Trove instances can hit a common issue in the MySQL world: how to perform schema change operations while minimizing the impact on the database server? Let’s explore the options that can allow online schema changes.
Summary
With MySQL 5.5, pt-online-schema-change from Percona
Toolkit is your best option for large tables while regular
ALTER TABLE statements are only acceptable for small
tables. Also beware of metadata locks.
With MySQL 5.6, almost all types of schema changes can be done
online. Metadata locks can also be an issue.
pt-online-schema-change can still be worth using as
it is also online on read replicas.
Regular ALTER TABLE with MySQL 5.5
If you are still using MySQL 5.5, almost all schema changes will require a table …
[Read more]Did you ever encounter swap space issue with MySQL ? This problem is really annoying and here are some possible solutions :
1) Track memory usage.. Try to identify the bottleneck using query below. It is not trivial job to zero in on the problem heap.. There are several temp tables being created at run time. Also estimating the OS cache being used by system MYISAM tables is not easy
SELECT ( @@key_buffer_size + @@query_cache_size + @@innodb_buffer_pool_size + @@innodb_additional_mem_pool_size + @@innodb_log_buffer_size + 80 * ( @@read_buffer_size + @@read_rnd_buffer_size + @@sort_buffer_size + @@join_buffer_size + @@binlog_cache_size + @@thread_stack + @@tmp_table_size ) ) / (1024 * 1024 * 1024) AS MAX_MEMORY_GB;
2) Configure the swappiness to 10 or 15.. By default it might be set at 60
cat /proc/sys/vm/swappiness will give the current swappiness value on your system
3) Set Numa interleaving to ON. …
[Read more]I'm happy to announce the release of mylvmbackup version 0.16. The source package is now available for download from http://lenzg.net/mylvmbackup/ and https://launchpad.net/mylvmbackup.
Installation packages for a number of platforms can be obtained from the openSUSE Build Service.
Version 0.16 adds support for sending out SNMP traps in case of backup successes or failures. I'd like to thank Alexandre Anriot for contributing this new feature and his patience with me.
Please see the ChangeLog and bzr …
[Read more]Introduction
With the introduction of Galera replication for MySQL, Codership has, in my opinion, provide the most significant support to MySQL that the community had seen in the last tree years.
Codership had filled a significant gap in MySQL replication capability, succeeding in a task where many before had failed.
Not only Codership is constantly committed in doing their solution better and more solid, and they are the most friendly and helpful team I have met in years.
In short chapeau to all of the guys! Great job, I am really proud to have the opportunity to discuss, interact with you.
Said that, no product or code around is unmingled of errors and/or issues at different level. So also if Galera help us a lot solving many replication and architectural issues it still has some limitation that must be taken in consideration.
Galera is easy to setup, especially to perform a basic setup, which …
[Read more]Performance Schema (P_S) has been available since MySQL 5.5, more than 4 years ago. It is still difficult to see production servers with P_S enabled, even with MySQL 5.6 where the feature is enabled by default. There have been several complaints like the overhead, that the fix is a work in progress, and the ease of use. 52 tables to query and 31 configuration variables is enough to scare people.
There is a solution for the second problem, the usability. It’s name is “sys schema“. It is a collection of views, functions and procedures to make P_S more user friendly.
Installation
If you are a MySQL Workbench user the installation is pretty easy because sys schema is already included. You just need to install it. Click on “Performance – Performance Reports” and there you will find the “Install Helper” button that will install sys schema. …
[Read more]