Posts tagged 'distributed-systems'

Evolution of an Azure Function App

Problem Statement: Extract information from a JSON file containg an array of objects. For this article, each object in the file is as follows:

{
    "id": 1,
    "name": "Bilbo",
    "age": 111
}

and we want to extract the name and age information. We will also assume that each extraction take about 1s …

Majordomo Management Interface

In my last post, we saw an example of the majordomo protocol (MDP) in action. MDP is a reliable service oriented protocol. It can be become the single point to server different services to any user. The broker implementation in the example also has a special feature, called the majordomo …