Help coderanch get a
new server
by contributing to the fundraiser
  • 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Concurrency & Scalability

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
We are using Web sphere 4.0.3 App Server and Sun Solaris 2.8 OS. Our application needs to support 1000 cocurrent user.
Our J2EE application contains Session Beans, CMP AND POJO.
Can U pls insight us:
How many Server Clones we should have to address 1000 Users Concurrently?
Should I go for vertical Cloning or Horizontal Cloning ? If Yes pls give some details ?

Thanks in Advance,
SS
 
Ranch Hand
Posts: 76
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I won't advice you to go only for Vertical cloning, as horizontal cloning gives you failover support. So the combination of 2 would be a better approach.The exact configuration depends on many aspects like your data access, dynamic stuff and appraoch followed while development. Any other ideas?
 
Siyaram Singh
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Bharat,
Thanks for suggestion!
I wanted to know the No of Concurrent Executable threads for WebSphere 4.0.3. Based on it we can analyse the concurrent users and config.

Thanks
SS
 
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
WebSphere's threads are not your problem. The problem is whether or not your HARDWARE will support the number of users you require.
You need to read (carefully, from cover to cover) the Websphere version 5.0 performance and scalability handbook redbook, and Stacy Joines' book "Performance Analysis for Java Websites". After you've read and understood those you're ready to do capacity planning and set up a scalable network.
Kyle
 
Siyaram Singh
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi kyle,
Suppose we have to support certain xxxx Councurrent users and yyyy response time for diffrent functinality for an application. Response time is based on the nature of request / transaction.
Suppose J2EE application is using three tier architecture and WebSphere App server and Oracle database. How we will plan for Hardware Config ???
Hardware system ??
No of Proceessor ?
RAM Capacity ?
Harddisk ?
to acheive the optimmum performance.
Regards,
Siyaram
 
Kyle Brown
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As I said in the previous post this is NOT something that you can answer in a single post. This is a complicated, involved subject. Luckily it has been well, and definitively covered in Stacy Joines' book.
Kyle
 
reply
    Bookmark Topic Watch Topic
  • New Topic