• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

how to address QoS requirements

 
Ranch Hand
Posts: 149
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How do you address QoS requirements (performance and reliability) in Part II ?

I think that the only thing we can do is to write some reasons why system would satisfy those requirements. We can repose only on software design.
For example, don't use EJBs for bulk updates , use JNDI cache and things like that.

any ideas ?
 
Maris Orbidans
Ranch Hand
Posts: 149
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
does anyone has an opinion about this question ?
 
Ranch Hand
Posts: 84
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Performance and reliability are both complex topics. Here are only a few points to keep in mind when reviewing the system architecture and design. I am not sure how this fits in with your exam, but when I audit or troubleshoot real systems these are some of the things I look for.

In terms of performance, look at how the system scales. Can it scale horizontally? Can the application be clustered? Basically look through the whole design and see if there is anything fundamentally flawed from a performance point of view. Where would the bottlenecks be? How do you plan to test to verify your suspicions? How does performance degrade with load? How long does it take to process a request, under normal conditions, versus under a heavy load? Think about disk I/O, network I/O, and threading and concurrency to ensure requests can be handled in parallel. Occasionally it pays to think about the algorithms used (remember big "O"?).

In terms of reliability, review the design and look for single points of failure. Does the design support redundancy at each layer, including the database, appliation server and webserver? If a disk fails on one of the machines, or a janitor accidentally knocks out the power cord, will it shut down your system?
 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Guys,
I've similar problem of representing QoS parameters as part of design. We cannot include this as part of list of deliverables (for SCEA). I'm not sure how to go about it. Maris Orbidans.. did you get to any approach?

Thanks
Suman.
 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Suman/Maris,

As for me, I have mentioned some points about non-func requirements in my assignment. I have not submitted assignment yet. but i guess it's ok to mention some of these points like security, performance etc.

Lokesh
 
Maris Orbidans
Ranch Hand
Posts: 149
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanx for you'r expert opinion Don,

regarding assignment I think we can go thru a list of anti-patterns (that affect performance) and do some short analysis
 
Can you smell this for me? I think this tiny ad smells like blueberry pie!
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic