Skip to main content

Azure Development Environment - Costs and Optimization

Azure Development Environment Series:
The story started  in the moment when the team size started to increase. Working with a cloud solution like Azure requires you to be aware of the costs.
When I say costs I'm not referring to the cost of running of the system in cloud. Each environment that you need to have will generate an extra cost. This doesn't means that you shouldn't have multiple environments. But you should keep an eye on the costs and try to make a good estimation from the beginning.
In general you would have the following environments:
  • Development
  • Testing
  • Integration
  • Staging
  • Production
First of all, you might have different needs for each environment. For Development, Testing and Integration you don't need the same power (CPU, DB size and so on) like in Staging and Production. This means that you could have less resources allocated to them - less costs.
In general this should be true. The only thing that we didn't take into account in the above diagram is the team size. 
Why?
In general where you design a solution that runs on cloud, you will also use SaaS services like storage, database, cache and so on, not only PaaS services. This means, that each developer will require an isolated environment (extra cost for each developer).
Of course there are some services that you could 'share', once you have a stable wrapper over them. Services that can could be shared are storage accounts, Azure Redis Cache and other services. The exact services that you can share between developers may vary, based on what your system does and how you use cloud services. 
For example if you cannot configure or control two different instances of your application to store a specific information in the Azure Redis Cache with different key name, than you might not be able to share the cache layer. Similar thing is applicable to storage, DB, and so on. 

We can have a case, where your products requires two different databases for each instance of your product. This means that if you have 4 developers, than you would need 8 instances of SQL Azure. If you would have 10 developers, you would need 20 DBs.
The cheapest tier (DB size) that is available now is B (Basic), that costs 4.21EUR/M.
4 DEV x 2 DB x 4.21EUR/M = 33.64 EUR/M
10 DEV x 2 DB x 4.21EUR/M = 84.2 EUR/M 

But what if the Basic one cannot be used because you are missing some feature or, like in our case we need at least 3 DB instances. Things will be a little more complicated in this case. If you need at least S0, you will pay 376 EUR/M for 3 DB per developer (with 10 developers).
You might try to optimize the cost, buy using only one DB per developer or on DB for all the team, but it will not be so easy. When you have the tables with the same name on all 3 DBs than merging all of them in only one DB is not easily. A suffix could be used for each tables, based on where the table is (DB1, DB2, DB3), but you affect the table name and not all the time you want to do this.

Another solution that you might want to try is to use an Azure VM where you install SQL Server. Developers would be able to create as many databases they would want and you would pay only for VM (especially when you don't do to many actions at DB level and you already have a SQL Server licence). If you don't have you can use directly a VM with SQL Azure included (the licence price will be directly in the cost of VM. When you need more power, you can change the tier (size) of the VM.
A VM with 2 cores will cost you 97 EUR/M.
  
Conclusion
The best thing that you can do is to not optimize costs from this point of view. If you really need to do this try to share resources, but take into account that this might increase DEV environment complexity and decrease team productivity. 
If you need to optimize costs of DEV env. at DB level, I would try to suffix the DBs in a way that each developer would need only one DB instance. The last resort should be sharing the same DB between different developers or us a VM like in the above example.
Try to keep the env. as close as possible as in production. Try to keep the complexity of the DEV env. as low as possible.

Comments

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...