How To Fortify MySQL Replication | 5 Best Ways

How To Fortify MySQL Replication | 5 Best Ways

MySQL replication technology is powerful and flexible. But it doesn’t do everything perfectly all the time. You may experience trouble with the slaves falling behind the master or want to scale horizontally by building new slaves automatically. Or you might need to build a slave without blocking the master database. All of these goals can…

How to Troubleshoot MySQL? 7 Best Ways

How to Troubleshoot MySQL? 7 Best Ways

MySQL databases are great workhorses of the internet. They back tons of modern websites, from blogs and checkout carts to huge sites like Facebook. But these technologies don’t run themselves. When you’re faced with a system that is slowing down, you’ll need the right tools to diagnose and troubleshoot the problem.  MySQL has a huge community following…

How to Avoid Trouble in Database Operations | 10 Effective Ways

How to Avoid Trouble in Database Operations | 10 Effective Ways

While working with database operations, it is common to face a variety of errors. But when the error occurs, it gives us a lot of pain in the head. Fortunately, there are some tricks to avoid these troubles in database operations. So, why you should face trouble when you have options in your hand to…

30 Questions To Ask A Serverless Fanboy
|

30 Questions To Ask A Serverless Fanboy

Everyone is hot under the collar again. So-called serverless or no-ops services are popping up everywhere allowing you to deploy “just code” into the cloud. Not only won’t you have to login to a server, you won’t even have to know they’re there. In this guide, I’m going to provide you with 30 questions that…

Beware The Client

Beware The Client

Recently I was searching Google for “startup consultant” to see what I might find. I came across this article by John Greathouse titled Beware the Consultant. No self-respecting, hard-working consultant would sit back and take hits without defense, so in true poetry slam style, I thought I’d write a quick retort. Beware the Client… Truth Is…

Effective MySQL | Optimizing SQL Statements

Effective MySQL | Optimizing SQL Statements

I like that this book is small; 150 pages means you can carry it easily.  It’s also very no-nonsense.  It does not dig too deeply into theory unless it directly relates to your day-to-day needs.  And those needs probably cluster heavily around optimizing SQL queries, as those pesky developers are always breaking things  Jokes aside,…

Bulletproofing MySQL Replication with Checksums
|

Bulletproofing MySQL Replication with Checksums

Are your MySQL replicas running well?  You might not even know if they aren’t. One of the scariest things about MySQL replication is that it can drift out of sync with the master “silently”. No errors, no warnings.In this article, we have explained bulletproofing MySQL replication with checksums. Let’s check them out! What Is MySQL…