Remove articles 10-ways-to-test-your-application-server
article thumbnail

The Return of the Frame Pointers

Brendan Gregg

The problem is that this system has a default libc that has been compiled without frame pointers, so any stack walking stops at the libc layer, producing a partial stack that's missing the application frames. Apart from library code, maybe your application doesn't have frame pointers either, in which case everything is broken.

Java 145
article thumbnail

A New Pattern For The Jamstack: Segmented Rendering

Smashing Magazine

If you think that static rendering is limited to generic, public content that is the same for every user of your website, you should definitely read this article. There are many use cases: personalization, internationalization, theming, multi-tenancy, A/B tests…. Congratulations On Your New Job.

Cache 114
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

5 Changes You Should Know in MongoDB 7.0

Percona

From that, this article is born. Not only that, the idea is to present you with changes flying under the radar, which, in my understanding, can influence your daily operation. Not only that, the idea is to present you with changes flying under the radar, which, in my understanding, can influence your daily operation.

Metrics 99
article thumbnail

Fixing Errant GTID With Orchestrator: The Easy Way Out

Percona

In this article, we will discuss errant Transaction /GTID and how we can solve them with the Orchestrator tool. This could result from a mistake (the application wrote to a replica instead of writing to the source) or by design (you need additional tables for reports). What problem can errant transactions cause? 3306 0s ok 5.7.41-44-log

C++ 81
article thumbnail

Dealing With “Too Many Connections” Error in MySQL 8

Percona

Still, the users keep falling into this trap, maybe because of a poorly configured database, a change in the application components, or just because of a sudden increase of connections in the application. Your MySQL connection id is 144 Server version: 8.0.29-21 Your MySQL connection id is 145 Server version: 8.0.29-21

C++ 91
article thumbnail

Proof of Concept: Horizontal Write Scaling for MySQL With Kubernetes Operator

Percona

MySQL, as well as other RDBMS, are designed to work respecting the model and cannot scale in any way by fragmenting and distributing a schema, so what can be done to scale? Keeping in mind the example above, where we have a shop online serving multiple customers, we need to identify which is the most effective way to split the data.

Traffic 121
article thumbnail

Revamp MySQL Query Optimization and Overcome Slowness of ORDER BY with LIMIT Queries

Percona

The efficiency of database queries in MySQL can make all the difference in the performance and responsiveness of applications. While sorting may seem simple, it’s important to understand how to do it efficiently and effectively to ensure your queries are optimized and use better indexing.