Skip to main content

Why back-off mechanism are critical in cloud solutions

What is a back-off mechanism?
It's one of the most basic mechanism used for communication between two systems. The core idea of this mechanism is to decrease the frequency of requests send from system A to system B if there are no data or communication issues are detected.
There are multiple implementation of this system, but I'm 100% sure that you use it directly of indirectly. A retry mechanism that increase the time period is a back-off mechanism.

Why it is important in cloud solutions?
In contrast with a classical system, a cloud subscription will come at the end of the month with a bill details that will contain all the costs.
People discover often too late that there are many services where you pay also for each request (transaction) that you do on that service. For example, each request that is done to Azure Storage or to Azure Service Bus is billable. Of course the price is extremely low - Azure Service Bus costs is around 4 cents for 1.000.000 requests, but when you have a system that is not written in the right way, you'll end up adding additional costs.
I remember a few years ago, we didn't had a back-off mechanism for Azure Service Bus Queue, end even if we didn't had data we checked every 10ms. Guess what happen? At the end of the month we had around 30% of costs only from this kind of requests. Once we implemented the right back-off mechanism we reduce the cost of transaction to under 0.50$.

Where is applicable?
Don't forget that this topic is applicable not only when a cloud services is not reachable, but also for cases when you don't have data, but you make requests to often.

How we should implement it?
If you are a developer you might jump directly to whiteboard and start designing an algorithm that increase the time interval with a specific rate if there is no data or there are connection problems.
Before doing something likes this check what kind of protocol you are using and what libraries you are using.
Solved by Protocol
Nowadays, there are many communication protocols that keep an open connection between the two parties. It means that you will never specify a time interval and in the moment when there are data on the other end, your system is notified.
Solved by client libraries
All client libraries offered by Microsoft for Azure contains a retry policy mechanism, that can be used and extended with success. I seen people that were using back-off mechanism without knowing it - the client library was already using it with default values (smile).
I think that in most of the cases, the existing mechanism are enough to solve our core problems.

As we can see in the above example, even if we are increasing the time, there is a maximum threshold, that we can set based on our business needs (NFRs).

Should I ignore it?
No, you should never ignore it. But don't add extra complexity if you don't need it. Start and try a simple mechanism and based on your needs develop a more complex one.
If you need a custom back-off mechanism ask yourself why you are different from the rest of the consumers. You don't want to invest in something that you will not need or use at full capacity. It is just extra effort.

References
An extremlty useful resource for Azure clients is "Retry service specific guidance" -  https://docs.microsoft.com/en-us/azure/best-practices-retry-service-specific

 

Comments

  1. Indeed, reducing costs might be an advantage, however the backoff alghoritms are usually used to avoid congestion and contention in a system. Indeed, most of us are using it without knowing, since most of our servers are using the Ethernet protocol :)

    ReplyDelete

Post a Comment

Popular posts from this blog

Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(...

How to audit an Azure Cosmos DB

In this post, we will talk about how we can audit an Azure Cosmos DB database. Before jumping into the problem let us define the business requirement: As an Administrator I want to be able to audit all changes that were done to specific collection inside my Azure Cosmos DB. The requirement is simple, but can be a little tricky to implement fully. First of all when you are using Azure Cosmos DB or any other storage solution there are 99% odds that you’ll have more than one system that writes data to it. This means that you have or not have control on the systems that are doing any create/update/delete operations. Solution 1: Diagnostic Logs Cosmos DB allows us activate diagnostics logs and stream the output a storage account for achieving to other systems like Event Hub or Log Analytics. This would allow us to have information related to who, when, what, response code and how the access operation to our Cosmos DB was done. Beside this there is a field that specifies what was th...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...