Newest news
Read all the latest blog posts

Kubernetes CPU Throttling: Why Pods Get Throttled at 40% CPU (CFS)
This is the third part of our series on Kubernetes resource management. In the first part I covered CPU request and limit in Kubernetes, and in the second I explained how requests and limits behave for memory. This article covers the topic that trips up the most engineers in production: CPU throttling. It is the reason a pod can look completely healthy on every dashboard and still miss its deadlines.

TimescaleDB Compression: Hypercore and Columnar Storage with up to 98% Ratio in PostgreSQL
TimescaleDB can achieve compression of up to 98% for typical time-series data. Compressing time-series data requires a fundamentally different approach than the general-purpose algorithms used in OLTP databases. In TimescaleDB this is handled by the hypercore engine — a hybrid row-columnar engine that uses specialized algorithms: delta encoding, delta-of-delta, Gorilla XOR and run-length encoding. This article explains how it works and how to configure compression so that you actually achieve that ratio.

OPC UA and AWS - Integrating OPC UA Server with AWS IoT SiteWise
OPC UA Integration with AWS - how to connect an OPC UA server to AWS IoT SiteWise or MQTT so that PLC data reaches the cloud and databases like TimescaleDB. The article is for people who already know what OPC UA is and need an explanation of how it can be integrated with AWS services.

Real-Time OEE – How to Build a Production Monitoring System on Grafana, TimescaleDB, and AWS
The manufacturing industry is one of the main areas of our specialization. Industrial plants today invest serious money in modern machinery, automation, and sensors, but the analysis of production data is often done manually, with significant delay and inaccuracy. OEE is an indicator that every production manager knows, but few can easily monitor. Most often, data flows in with a delay of a day or a week, in Excel spreadsheets manually filled out by foremen. Meanwhile, OEE calculated live from sensors and PLCs allows you to react to performance drops within minutes, as well as make better investment decisions.

Kubernetes Management: Memory Request and Limit in Practice
This is the second part of an article series about resource management in Kubernetes. In the first part, we discussed how Kubernetes manages CPU, and in this part we focus on memory.

Kubernetes Resource Management: CPU Request and Limit in Practice
Kubernetes has been with us for 11 years now, and resource management is one of its most fundamental functions. Yet it remains one of the most common issues we observe in projects. Many people don’t know how to properly use resource management mechanisms or use them incorrectly. It’s still one of the most discussed topics in the Kubernetes world. In this article, I’d like to explain how CPU request and CPU limit work. In this post, we’ll focus on CPU, and in the next part (Kubernetes memory request and limit), we’ll discuss memory management.