Related Posts
Why the Retailing in Shopping Season 2021 will be different, even from 2020?
In 2020 many businesses pivoted to make quick changes for survival.... read more
What makes Node.js so popular among developers and companies
There has been a lot of buzz lately about Node.js, and... read more
The Future of Education Industry with VoiceAI: An Expert Roundtable Discussion
1. Enhanced Personalized Learning VoiceAI in education has the potential to provide... read more
The ROI of VoiceAI: How Customer Service Companies Are Boosting Their Bottom Line
1. Enhanced Call Resolution Rates : Customer service companies leveraging VoiceAI technologies... read more
How Voice AI is improving safety in the transportation industry: Case-Studies and Insights
1. Driver Distraction Prevention: Voice AI systems can help reduce the risk... read more
Calculated Risks – Secret Sauce to Success
“The difference between courage and stupidity is measured by success and... read more
Designed to Scale – 3
"Won’t it make sense to build a highly scalable product right... read more
How AI Is Revolutionizing Agriculture and Boosting Food Security
Artificial intelligence (AI) has the potential to transform various industries and... read more
What really is ChatGPT?
ChatGPT is taking the whole world by storm! People from different... read more
“We will use it from next week. Will it hold well when all users log in on Monday morning?” A common concern, based on past experience.
The team had done a good job of understanding the scalability requirements, designed an architecture that will scale well. However, during the initial phase, everyone was focused on functionality. Performance was yet to be tested.
As I was reviewing, I found one thing missing – concurrency requirements.
How many users can be active at the same time?
How many requests will simultaneously reach the server?
This is an essential factor for capacity planning. Too less will mean dropped requests and too much will mean higher costs.
There is no correct answer. Concurrency keeps changing based on external events, time of the day, user behavior, etc. It can be predicted only with visibility into past data.
This is where instrumentation comes to help. Build desired counters in the system, record, monitor, and notify them regularly. Allow for the tuning of what to check, what to record, and what to notify. You are going to need regular monitoring and tweaking for the best efficiency.
Do you have the counters built in your product?