© 2023 Hashnode
#distributed-system
Introduction This post is divided into two main parts. In the first one, I'm going to introduce mathematical objects and mathematical applications. It is programmer-oriented, but I assume some level o…
Definition A distributed system is a collection of independently running computer systems that are connected through a network, with the goal of achieving a common goal or providing a common service. …
In this OpenTelemetry dotnet guide, you will learn exactly how to set up a .Net project that leverages OpenTelemetry, from scratch, and without any prior knowledge of OpenTelemetry. We will build a si…
For the first post in the paper notes series, I will go through a paper published in 2011 about the Kafka distributed messaging system. In a bit more than 10 years, Kafka has become the de-facto infra…
Git is a powerful and versatile version control system that developers and teams widely use to manage and collaborate on software projects. Whether you're working on a small personal project or a larg…
1 Introduction A distributed system is where multiple computers/systems communicate and try to achieve a task together. You could see it as a system that consists of multiple nodes/parts. Why a distri…
In a decentralized version control system, there is no central repository that contains the entire history of the codebase. Instead, each developer has a copy of the entire repository on their local m…
Scalability and dependability are two areas where distributed systems face new problems. When many services are hosted on separate computers, they must use network protocols to talk to one another. Th…
Introduction Data domiciling is the art of controlling the placement of subsets of data in specific regions or locations. This is often required by privacy regulations like GDPR and The Wire Act in th…
Today we'll be discussing an approach used in some analytical databases to speed up the execution of queries at the cost of additional HW resources, namely CPU cores and memory. The query execution mo…