Skip to main content

How to Manage a Customer Who Is Unhappy with Software Quality?

 Many customers demand high-quality software, but do they define "quality" in measurable terms?

A few years ago, I was assisting a project team in reviewing and refining their approach when a customer from my previous organization realized—after project implementation—what they actually needed.

Understanding Quality Expectations

The customer initially expressed concerns about performance but had no concrete definition of what that meant. After some discussion, we helped him articulate a measurable requirement: the response time for the web application should be 1/10 of a second. However, this application depended on multiple external systems.

To clarify further, I asked:

  • "Do you expect this response time under a load of 10 users or 1 million users?"
  • The customer had no clear answer but optimistically responded, "Maybe more than 1 million someday."

I followed up:

  • "Are you prepared to invest in the necessary hardware to handle over 1 million user requests?"
  • He was uncertain and had no idea whether the installed infrastructure was based on capacity planning or if it was just an arbitrary setup.

Identifying Feasibility Constraints

I then inquired:

  • "Do you know the network latency between this application server and the dependent systems?"
  • "How long do those systems take to process requests?"

Initially, the customer had no data, but later, he gathered the numbers. The processing time of the dependent systems, combined with network latency, already exceeded 50 seconds—far from the 1/10 second goal.

I asked:

  • "Can you ensure that these external systems complete their processing in 1/20 of a second so the new application has enough time to meet the 1/10 second target?"

At this point, the customer realized his requirement was unrealistic. He admitted, "My requirement isn't feasible, but I’m in a tough situation—users can’t wait this long for a response."

Shifting to a Feasible Solution

I turned to the project team and asked:

  • "Did you consider handling this challenge when designing the application?"

Since the new application was essentially wrapping legacy systems, an appropriate strategy was needed to deal with long processing times. I suggested an asynchronous approach, where:

  1. The system acknowledges the request immediately.
  2. The user is notified that processing is in progress.
  3. The user can check the request status via email or a dashboard update.

At that time, asynchronous processing wasn’t widely considered, but today, it’s a common practice.

Key Takeaways

This story highlights a few important lessons:

  1. Quality must be clearly defined – Many customers demand quality but fail to specify what they need in measurable terms.
  2. Measurable requirements are essential – Ambiguous expectations lead to unrealistic demands.
  3. Testing should be derived from requirements – If something isn’t explicitly defined, it can’t be assumed or tested.
  4. Feasibility matters – Requirements must be achievable within system constraints.
  5. Development teams must take a holistic view – Instead of blindly executing customer demands, teams should educate customers, identify challenges early, and define strategies that ensure long-term success.

By guiding customers toward realistic expectations and implementing thoughtful design strategies, teams can deliver high-quality software that meets both business needs and technical feasibility.

Comments

Popular posts from this blog

Example 1: ArchiMate relationship in PlantUML code to demonstrate 15 relationship types

 Following section presents 15 types of relationships in ArchiMate and PlantUML to generate the diagram. Since this code is generated by GEN-AI it may require precision on aspects other than PlantUML syntax: Diagram Plant UML Code:  @startuml '!includeurl https://raw.githubusercontent.com/plantuml-stdlib/Archimate-PlantUML/master/Archimate.puml ' Another way of including Archimate Library (above is commented for following) !include <archimate/Archimate> !theme archimate-standard from https://raw.githubusercontent.com/plantuml-stdlib/Archimate-PlantUML/master/themes title ArchiMate Relationships Overview <style> element{     HorizontalAlignment: left;     MinimumWidth : 180;     Padding: 25; } </style> left to right direction rectangle Other {     Business_Role(Role_SeniorManager, "Senior Manager")     Business_Role(Role_Manager, "Manager") } rectangle Dynamic {     Business_Event(Event_CustomerReques...

Mastering Trade-Off Analysis in System Architecture: A Strategic Guide for Architects

 In system architecture and design, balancing conflicting system qualities is both an art and a science. Trade-off analysis is a strategic evaluation process that enables architects to make informed decisions that align with business goals and technical constraints. By prioritizing essential system attributes while acknowledging inevitable compromises, architects can craft resilient and efficient solutions. This enhanced guide provides actionable insights and recommendations for architects aiming to master trade-off analysis for impactful architectural decisions. 1. Understanding Trade-Off Analysis Trade-off analysis involves identifying and evaluating the conflicting requirements and design decisions within a system. Architects must balance critical aspects like performance, scalability, cost, security, and maintainability. Since no system can be optimized for every quality simultaneously, prioritization based on project goals is essential. Actionable Insights: Define key quality ...

Virtual environments in python

 Creating virtual environments is essential for isolating dependencies and ensuring consistency across different projects. Here are the main methods and tools available, along with their pros, cons, and recommendations : 1. venv (Built-in Python Virtual Environment) Overview: venv is a lightweight virtual environment module included in Python (since Python 3.3). It allows you to create isolated environments without additional dependencies. How to Use: python -m venv myenv source myenv/bin/activate # On macOS/Linux myenv\Scripts\activate # On Windows Pros: ✅ Built-in – No need to install anything extra. ✅ Lightweight – Minimal overhead compared to other tools. ✅ Works across all platforms . ✅ Good for simple projects . Cons: ❌ No dependency management – You still need pip and requirements.txt . ❌ Not as feature-rich as other tools . ❌ No package isolation per project directory (requires manual activation). Recommendation: Use venv if you need a simple, lightweight solut...