InfoQ

News

Article: The Box: A Shortcut to finding Performance Bottlenecks

Posted by Floyd Marinescu on Sep 24, 2007 05:29 PM

Community
Architecture
Topics
Performance & Scalability
Tags
Performance Evaluation ,
JVM ,
Threading
Quite often performance problems will be reported with some very antidotal comments that do nothing to help you understand where to start looking. Faced with this dilemma, it is not uncommon for teams to start guessing at the root cause.

Performance tuning specialist Kirk Pepperdine has shared one of his own approaches for starting to find the true cause of performance problems: "the box" - a little diagram that is an abstraction of a complete system. The box is a reminder of the true causes of performance bottlenecks.

Read  The Box: A Shortcut to finding Performance Bottlenecks.

The has 4 layers: People, Application, Java Virtual Machine, and Hardware. Each of these layers has a role in systems performance, and Kirk talks about when   The purpose of the box is to eliminate guessing by showing us how to sequence an investigation.

Kirk advocates a bottom to top investigative process, the goal of which is to eliminate as many potential sources for the bottlenecks as can possibly eliminated before we start looking at the code.
So what's new? by James Richardson Posted Sep 25, 2007 8:55 AM
Re: So what's new? by Dmytro Dyachuk Posted Sep 25, 2007 11:42 AM
Re: So what's new? by Kirk Pepperdine Posted Oct 17, 2007 12:20 PM
The box is ok, but really you shouldn't be in this position by Morten Udnæs Posted Oct 2, 2007 2:33 PM
Re: The box is ok, but really you shouldn't be in this position by Kirk Pepperdine Posted Oct 17, 2007 12:17 PM
  1. Back to top

    So what's new?

    Sep 25, 2007 8:55 AM by James Richardson

    This chat doesn't really deserve its own nomenclature does it? "The Box" == "The box of obvious stuff". - Look at system load - Use some system tools - Java has gc. - creating zillions of threads can be harmful.

  2. Back to top

    Re: So what's new?

    Sep 25, 2007 11:42 AM by Dmytro Dyachuk

    The author did not mention that using synchronized methods locks the whole instance of the class and very often causes significant performance degradation. WBR, Dmytro

  3. Handling performance requirements is vital part of any software development effort. If you end up needing the "box" someone hasn't done their job properly. In terms of fixing bad performance, I don't agree that you should go from bottom and upwards. It doesn't help to tune the hardware, VM and database of an application thats badly designed/constructed. Usually you have to work both ways (both at application level and infrastructure level) at the same time, and choose what gives most effect and lowest risk. Final advice: Get real volumes of data and measure!

  4. Handling performance requirements is vital part of any software development effort. If you end up needing the "box" someone hasn't done their job properly.
    I think this comment is a bit unfair. It is like saying that bugs are because someone hasn't done their job properly. There are many reasons why performance problems creep into for many reasons. For example, concurrency issues often can't be found until you start integration testing. At that point you maybe into a full diagnostic effort on the application. This is a normal course of development in an imperfect world
    In terms of fixing bad performance, I don't agree that you should go from bottom and upwards. It doesn't help to tune the hardware
    The article isn't about tuning, it is about a process of diagnostics, understanding that you really do have a problem with the DB as well as determining if the problem is caused by your application or by the DB its self. The process is about ensuring consistency of results in your tuning efforts so that you're not wasting time fixing phantom problems. This, IME is the lowest risk way to proceed. Kind regards, Kirk

  5. Back to top

    Re: So what's new?

    Oct 17, 2007 12:20 PM by Kirk Pepperdine

    This chat doesn't really deserve its own nomenclature does it? "The Box" == "The box of obvious stuff".
    At one time I might have agreed with this. However I have found that people have found this visualization of the *obviously* useful. It is a rough abstraction, it is flawed but even so.... Kind regards, Kirk

Educational Content

Bindings, Platforms, and Innovation

This presentation focuses on the Internet and separating myth from fact, history from the future, and the mundane from the imaginative. Bob Frankston presents a vision of what could and should be.

Orchestrating Long Running Activities with JBoss / JBPM

This article explores the use of JBoss and jBPM to implement design solutions that effectively address the issue of orchestrating long running activities.

Neo4j - The Benefits of Graph Databases

This presentation covers the use of graph databases as an optimal solution for data that is difficult to fit in static tables, rapidly evolving data or data that has a lot of optional attributes.

Realistic about Risk: Software development with Real Options

This session introduces Real Options and shows how it can help in running your project. Real Options is a decision-making process that can be used to manage risk.

Communication Flexibility Using Bindings

This article discusses the use of bindings on services and references (including the instance of non-configured bindings) as the means to implement SCA communications in a Web and SOA environment.

Writing DSLs in Groovy

After a short introduction to DSLs, Scott Davis plays with the keyboard showing how to approach the creation of a DSL by typing working snippets of Groovy code that get executed.

Scaling Agile with C/ALM (Collaborative Application Lifecycle Management)

IBM Rational and InfoQ present, Scaling Agile with C/ALM, an eBook showing organizations how to become “finely tuned software delivery machines” by enabling team integration and scaling.

Concurrent Programming with Microsoft F#

Amanda Laucher presents a real life enterprise application written in F#. She shows actual code snippets, explaining design decisions and suggesting how to use some of the F# constructs.