CSC/ECE 517 Fall 2010/ch7 7g ms

From Expertiza_Wiki
Jump to navigation Jump to search

Analysis Paralysis Anti-Pattern

Analysis Paralysis Anti-pattern

In software engineering, an anti-pattern is a pattern that may be commonly used but is ineffective and/or counterproductive in practice1. Specifically, the Analysis Paralysis is an anti-pattern because it is something done, but something that should be avoided. Typically, users of the Analysis Paralysis pattern do not realize it at first, if ever. This is because typical problem solving does require some analysis. However, Analysis Paralysis is the over analyzation of a problem, to the point where no movement is ever made on solving the problem. Analysis paralysis is one of the classic anti-patterns in object oriented software development. In analysis paralysis, we over analyze (or over think) a situation until no decision is ever made, which effectively paralyzes the current process' outcome. [5]


FSM Showing Analysis Paralysis. The Healthy Problem Solving FSM assumes you do eventually make progress.

Causes

In software development, analysis paralysis typically manifests itself through exceedingly long phases of project planning, requirements gathering, program design and data modeling, with little or no extra value created by those steps. When extended over too long a timeframe, such processes tend to emphasize the organizational (i.e., bureaucratic) aspect of the software project, while detracting from its functional (value-creating) portion.

Further things to minimize in the workplace in order to defeat analysis paralysis include[3]:

  • Pride
  • Narrow Mindedness
  • The lure of infinite composability and decomposability
  • Insistence on completing all analysis before beginning design.
  • Regular change of leads and their philosophies (each trashing and restarting the work of the previous)
  • Too many learning curves at once (underqualified analyst) causing incessant revisiting of prior work
  • Lack of goals
  • Increasingly conflicting goals (often political)
  • Creative speculation, when discovery and definition are required.
  • BigProjectSyndrome: this one will do it all, will use the latest tools, will use a new paradigm, will use all new developers, will start with a clean slate, will handle all use cases of two or more existing systems in the first release, etc.
  • Risk avoidance, fear of making a mistake.

Effects

One of the most harmful effects of Analysis Paralysis is extended time to market. In the case of new products, this gives competitors more time to develop products that may be better than yours, and may even be released before yours. In the case of existing products, this can cause customers to become dissatisfied because they are not receiving updates regularly. By setting deadlines, one can hope to achieve shorter time to market.[4]

Overcoming Analysis Paralysis

One simple measure to overcome Analysis Paralysis is to create small goals, and then execute them. Often times people fall into Analysis Paralysis because it seems necessary to have every minute detail planned from the start. However, this is rarely the case. Having a general view of long term plans is all that is necessary. Then, one should take a small piece of that plan and flush it out in full detail, and begin to act on it. By only taking small pieces to act on at once, one will never run into a case of being overwhelmed and thus avoid Analysis Paralysis.

Dr. Edwards Deming popularized a process called the PDCA Model. PDCA stands for: Plan, Do, Check, Act. Such a process emphasizes the necessity to keep producing output, and not just planning to produce output.

References

[1] Wikipedia. (2010, November) Wikipedia - Anti-Pattern. [Online]. http://en.wikipedia.org/wiki/Anti-pattern

[2] Analysis Paralysis. (2010, November) Analysis Paralysis. [Online]. http://c2.com/cgi/wiki?AnalysisParalysis

[3] Analysis Paralysis. (2010, November) Programming Management Anti-Patterns. [Online]. http://sourcemaking.com/antipatterns/analysis-paralysis

[4] Marelisa. (2010, November) How to Defeat Analysis Paralysis – The PDCA Model. [Online]. http://abundance-blog.marelisa-online.com/2010/06/26/defeat-analysis-paralysis/

[5] Analysis paralysis. (2010, December) http://en.wikipedia.org/wiki/Analysis_paralysis

See also

External Links