All Posts
Performance Engineering: Series II
In this series, we are going to look at throughput optimization. Just to recap, throuhput is measured as the number of requests an app can handle in a second without compromising on the latency sla. Before we go deep into how to improve the performance let’s look at the flow in a typical web service. Most of the webservices, pull data from a data store, then processes it and serves it as part of the response. Serialization is involved in reading the request and serving the resopnse back. To understand better, let’s take a look at how a single request flows through.
Performance Engineering: Series I
Software is often delivered in different ways to different set of users. Some get it via the web, others access it through the cloud, and some get it on specific device like a smartphone or personal computer. All users have different expectations of how they use the software and it has impact on how they perceive performance of the software. From a product angle, a software meets the performance expectations of the user if it delivers the function/feature promised within the agreed time. From an engineering perspective, a software is seen as performant if it makes the most use of the resources (cpu/memory/nodes/network).
Running Grafana On Docker
Grafana is a popular opensource tool for visualizing metrics from various data sources. We have the popular alpine docker build available from dockerhub itself. Like any other tool that requires persistent volume (if you want the data to be saved across restarts), we need to have a local volume created. This blog is all about starting Grafana with persistent volume mount configured against a postgres datasource.
Types Of Software Bugs
As software developers, we often encounter peculiar bugs that seem to defy logic. Recently I came across an Heisenbug while investigating an issue and realized that there were other jargons used for denoting the elusive variety of software bugs. These elusive issues have inspired a colorful vocabulary within the programming community. Here are the widely used ones.
Investigating CPU Contention In A Java Process
More often than not, we would be in a situation where we have to investigate cpu starvation. While it is easy to find the process consuming the most cpu cycles, it gets difficult to identify the specific thread that is consuming the memory. Identifying the thread helps in taking correcttive action on logic causing it. In this article, I am outlining the procedure to find the specific jvm thread that is using the cpu.
Start Postgres On Ubuntu (Using Docker)
Docker enables engineers to start the service with ease. In a tradition installation, developers had to go though the specific documentation and follow the step by step guide for installation. This takes typically 30-60 mins depending on the software. With docker, starting a service is all about pulling the docker file corresponding to the service and running it.