Does complexity kill?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Brett

    #1

    Does complexity kill?

    This statement mentions that complexity kills but can it be avoided?

    "The kind of scalability I'm talking about is styem scale and compliexity. Anyone who has written large scale systems knows that compliexity kills (hint: if you don't count lines of code or use other formal metrics then you're porbably not writing a big system)."

    Also, what good does counting lines of code do? What are the other formal metrics?

    Thanks,
    Brett
  • chanmmn

    #2
    Re: Does complexity kill?

    More line doesn't mean complex. Go to:

    http://msdn.microsoft.com/architecture/

    chanmm
    "Brett" <Brett@discussi ons.microsoft.c om> wrote in message
    news:F4EC9296-7A5B-4A6B-8DBA-8112B2E83EF6@mi crosoft.com...[color=blue]
    > This statement mentions that complexity kills but can it be avoided?
    >
    > "The kind of scalability I'm talking about is styem scale and compliexity.[/color]
    Anyone who has written large scale systems knows that compliexity kills
    (hint: if you don't count lines of code or use other formal metrics then
    you're porbably not writing a big system)."[color=blue]
    >
    > Also, what good does counting lines of code do? What are the other formal[/color]
    metrics?[color=blue]
    >
    > Thanks,
    > Brett[/color]


    Comment

    • Nick Malik

      #3
      Re: Does complexity kill?

      I don't know where your statement comes from, but Complexity does kill.

      Applications that attempt to control more details of interaction are more
      complex to write and debug. They are harder to update and replace. They
      are more expensive to integrate with. Just observe the complexity of a
      human resources application in large organizations and you will usually find
      a large group of individuals who do nothing but implement systems like
      Peoplesoft and Oracle, for years on end. These organizations are the
      victims of the failure of our industry to correctly partition accounting,
      Human Resources, document and records management, and workflow systems in a
      standardized manner. This makes integration into a nightmare that never
      ends.

      Much better, in current thinking, is to have smaller applications that
      communicate asynchronously using a managed message-passing structure (MSMQ,
      UDDI/SOAP, MQ Series, Sonic ESB, Santeon XIP, WebLogic, etc). This is
      called Service Oriented Architecture. Each application can be seperately
      measured, developed, managed, and replaced, without affecting others. This
      creates more of an "ecosystem" of applications, not just a heaping pile of
      spaghetti.

      Formal measurements for application size include Function Point Analysis
      (www.ifpug.org) and measurements based on lines of code (called KLOC). See
      discussions of COCOMO to get more information on turning these measurements
      into cost estimates.

      I am working on a way to make use of Function Point Analysis in an Agile
      Model. Stay tuned.

      --- Nick

      "Brett" <Brett@discussi ons.microsoft.c om> wrote in message
      news:F4EC9296-7A5B-4A6B-8DBA-8112B2E83EF6@mi crosoft.com...[color=blue]
      > This statement mentions that complexity kills but can it be avoided?
      >
      > "The kind of scalability I'm talking about is styem scale and compliexity.[/color]
      Anyone who has written large scale systems knows that compliexity kills
      (hint: if you don't count lines of code or use other formal metrics then
      you're porbably not writing a big system)."[color=blue]
      >
      > Also, what good does counting lines of code do? What are the other formal[/color]
      metrics?[color=blue]
      >
      > Thanks,
      > Brett[/color]


      Comment

      Working...