via GIPHY I was just reading over StackOverflow’s 2017 Developer survey. As it turns out there were some surprising findings. Join 33,000 others and follow Sean Hull on twitter @hullsean. One that stood out was databases. In the media, one hears more and more about NoSQL databases like Cassandra, Dynamo & Firebase. Despite all that … Continue reading What engineering roles are most in demand at startups? →
Percona announces the GA release of Percona Server for MySQL 5.7.17-13 on April 5, 2017. Download the latest version from the Percona web site or the Percona Software Repositories. You can also run Docker containers from the images in the Docker Hub repository.
Based on MySQL 5.7.17, including all the bug fixes in it, Percona Server for MySQL 5.7.17-13 is the current GA release in the Percona Server for MySQL 5.7 series. Percona’s …
[Read more]We previously compared two high availability solutions for MySQL - MHA and MariaDB Replication Manager and looked into how they performed fail-over. In this blog post, we’ll see how ClusterControl stacks up against these solutions. Since MariaDB Replication Manager is under active development, we decided to take a look at the not yet released version 1.1.
Flapping Related resources MySQL Replication failover: MaxScale vs MHA (part 1) MySQL Replication failover: MaxScale vs MHA (part 2) MySQL …
[Read more]
The great Percona Live 2017 database conference is approaching,
and I am very excited to be there this year - not only as an
attendee, but also as a speaker!!
By the way, this will be my first public talk so please bear with
me if I'll be a bit nervous :-)
If you are attending, come see me and my colleague Andrea
speaking about how we leverage the TokuDB engine to cache our
application data using MySQL! We will show you some
interesting benchmarks, and will describe our design, setup, and
configuration in detail.
See you there!!
The mysql_sha256_password doesn't use the nonce
system which is used for mysql_new_password, but
instead forces the use of RSA or SSL.
This is how that works:
- The client connects
- The server changes authentication to sha256 password (or default?)
- The server sends the RSA public key.
- The client encrypts the password with the RSA public key and sends it to the server.
- The server decrypts the password with the private key and validates it.
The problem is that the client trusts public key of the server.
It is possible to use --server-public-key-path=file_name.
But then you need to take care of secure public key distribution
yourself.
So if we put a proxy between the client and the …
[Read more]Welcome to another post in the series of Percona Live featured session blogs! In these blogs, we’ll highlight some of the session speakers that will be at this year’s Percona Live conference. We’ll also discuss how these sessions can help you improve your database environment. Make sure to read to the end to get a special Percona Live 2017 registration bonus!
In this Percona Live featured session, we’ll meet the folks at SelectStar, a database monitoring and management tool company. SelectStar will be a sponsor at Percona Live this year.
I recently came across the SelectStar database monitoring product. There are a number of monitoring products on the market (with the evolution of various SaaS and …
[Read more]Wooohoooo ! After less than one year of dedicating my blog to MySQL, lefred.be is part of the top 10 MySQL blogs !
I’m well surrounded in the ranking by my colleagues Dave and Øystein.
Thank you to all followers
In a few days, I will start my yearly travel to North America which will bring me at Percona Live at the end of the month. But I will first stop in New York to attend the MariaDB Developer Meeting. Let's see what will happen there.
Percona Live
Booking.com is sponsoring the conference, and we will be present at the Monday Evening Reception. You do not need a tutorial pass to attend: any
In honor of the upcoming MariaDB M17 conference in New York City on April 11-12, we have enhanced Percona Monitoring and Management (PMM) Metrics Monitor with a new MariaDB Dashboard and multiple new graphs!
The Percona Monitoring and Management MariaDB Dashboard builds on the efforts of the
MariaDB development team to instrument the Aria Storage Engine Status
Variables related to Aria Pagecache and
Aria Transaction Log activity, the tracking of
Index Condition Pushdown (ICP),
InnoDB Online DDL when using ALTER TABLE
... ALGORITHM=INPLACE, InnoDB Deadlocks …
Introduction
Recently I have been involved in an effort to convert MySQL databases from a utf8 character set to utf8mb4. As a part of this effort, my team evaluated which collations would be best for facilitating a broad range of multi-lingual support.
There have been many recent posts in the MySQL community about better unicode collation support in MySQL 8 such as from the MySQL Server Team’s blog at Oracle, who have also done a good job of showing us how newer collations based on UTF8 9.0.0 will properly group and sort characters according to their case and inheritance. As the title of the latter post suggests, the “devil is” indeed “in the details”.
There is also the matter of the …
[Read more]