If you write C applications that need to connect to MySQL, you can use the MySQL C API aka libmysqlclient. The MySQL C API replaces the outdated MySQL-Connector-C. If you want to use MySQL 8.0 as a Document Store with the X Protocol, you need then to use MySQL Connector/C++ 8.0. Some have asked how […]
The MySQL C API replaces the outdated MySQL-Connector-C. The MySQL C API is also known as libmysqlclient, this is how to use it.
Public cloud spending is slowing down. Quarter-over-quarter growth is no longer hitting 30% gains for AWS, Google, and Microsoft. This is businesses’ response to tough and uncertain macroeconomic conditions, where organizations scrutinize their public cloud spending to optimize and adjust.
In this blog post, we will see how running databases on Kubernetes with Percona Operators can reduce your cloud bill when compared to using AWS RDS.
Inputs
These are the following instances that we will start with:
- AWS
- RDS for MySQL in us-east-1
- 10 x db.r5.4xlarge
- 200 GB storage each
The cost of RDS consists mostly of two things – compute and storage. We will not consider data transfer or backup costs in this article.
- db.r5.4xlarge – $1.92/hour or …
Oracle’s MySQL 5.7 has had a good, long run, but the official End of Life is October of 2023. The Era of MySQL 5.x will be over, and only MySQL 8.0 will be officially supported. Yup, six months away. So if you are running MySQL, you need to consider upgrading to version 8.0 N-O-W!!
What does an upgrade provide?
MySQL 8.0 has many really cool features and improvements that are well worth the upgrade. The default character set of UTF8MB4 gives Unicode version 9.0 support. So you get the Umaluts, Cedils, and C-J-K Language support in your data, plus emojis. 8.0 is optimized around this character set. This gives you all the international characters you probably need to support global operations.
The Structured Query Language has been greatly enhanced. If you have trouble writing subqueries, you rejoice in lateral-derived joins and Common Table Expressions (CTEs). There is a new intersect clause to aid with sets. …
[Read more]New MySQL HeatWave capabilities released in 8.0.32-u1 MySQL HeatWave has added new capabilities on both OCI and AWS platforms. Here is the list of features introduced in 8.0.32-u1. Deployment Configurations OCI MySQL High Availability support is now available in Limited Availability (OCI only) OCI MySQL high availability consists of three MySQL instances: a primary […]
New MySQL HeatWave capabilities released in 8.0.32-u1
We are pleased to announce the general availability of Vitess 16! Documentation improvements # In this release the maintainer team has decided to put an emphasis on reviewing, editing, and rewriting the website documentation to be current with the code. With help from CNCF, we have also improved the search experience. We welcome feedback on the current incarnation of the docs. GA announcements # We are marking VDiff v2 as Generally Available or production-ready in v16.
The fourth edition of the MySQL Cookbook, solutions for database developers and administrators is a huge book, 938 pages !
And the least we can say is that you get what you pay for !
This book is an excellent resource for anyone working with MySQL, whether you’re a beginner or a seasoned developer. The book provides a comprehensive collection of recipes that address various aspects of database management using MySQL.
Sveta and Alkin made an excellent job regrouping tips collected during many years of operating MySQL and helping users through support.
The book provides a list of solutions to the problems that every DBA faces regularly.
As MySQL is improving fast with the MySQL 8.0 …
[Read more]Mobile World Congress (MWC), the world’s leading event is all set to unite the global mobile and telecoms industry in Barcelona, Spain from 27 February – 2 March 2023. In this framework, Codership is glad to announce that it has been selected by the European Innovation Council to join the EIC Pavilion. The 20 most promising EIC-funded SMEs, startups and scale ups have an unprecedented opportunity to impress the international audience with their game-changing innovations and establish business partnerships with like-minded counterparts.
The EIC Pavilion will feature a wide variety of extraordinary innovations in crucial sectors, such as Artificial Intelligence, Robotics, Machine Learning and IoT, among others. From interactive sessions and expert panel …
[Read more]When it comes to writing database integration tests with Spring Boot, there are two options: an in-memory database or Testcontaienrs. As we already covered Testing Spring Data Repositories with H2 [...]
The post Spring Boot MySQL integration tests with Testcontainers appeared first on Geeky Hacker.