Hi All, 1.Can you please explain what is the...

  • Thread starter Ankammarao Maddineedi
  • Start date
  • perf-test.com need your contributions to build up a strong repository of performance engineering resources.

A

Ankammarao Maddineedi

Guest
Hi All, 1.Can you please explain what is the difference between SIMULTANEOUSLY AND CONCURRENTLY 2.in correlation function put ORD=0 than what happen..? 3.
 
Q1- These are the 2 terms which often used for Performance Testing of an application. Simultaneous users are the users who have a valid session in the server. Each of the users would perform different actions like one doing one action, other doing another action. where as, concurrent users are the users who have a valid session in the server & they will perform the same operation at any point of time. All the concurrent users would perform different actions at the same point of time. simultaneous users have active connections to the same Web site, whereas concurrent users hit the site at exactly the same moment. Concurrent access is likely to occur at infrequent intervals. Your appliation may have 100 to 150 concurrent users but 1,000 to 1,500 simultaneous users. When load testing your application, you can simulate simultaneous users by including a random think time in your script such that not all the user threads from the load generators will request at the same moment. This is useful to simulate real world situations. However, if you want to stress your application, you probably want to use concurrent users. You can simulate concurrent users by standardizing the think time in your script to acheive estimted load. Simultaneous users: In this case, every user will wait for the other user to complete the entire transaction before executing any transaction. Simply, one after another. Concurrent users: There are 3 different levels of concurrency. 1. Application level 2. Business process level 3. Transaction level Bottom line- from the overall concept when we say 10 concurrent users, 10 users are currently active on the system at that point of time. When we say 10 simultaneous users which is not the case.
 
Q2- you have to be clear in what is Ordinal value?. Ordinal value refers an occurance of value. by default it always will take first occurance value. Ord=0 is not an occurance and it doesnt return any value.
 
Simultaneously means two or more users accessing a particular feature of application or same transaction together at the same time. Whereas concurrently means two more users accessing different feature or transaction at the same instant
 
In one of my interview I faced that question ord=0 , ram lekalla anyway thank you for giving answers
 
concurrent means to perform same actions during same interval of time and simultaneous means to perform different actions during same interval of time. Also, simultaneous users are always more than concurrent users
 
Error -27289: Unrecognized value ("0") for the "Ord" argument (number 4) [MsgId: MERR-27289]....We are going to see the above error message.....if we put "ord=0".if we won't give any ord value by default it will take 1st value in the array.if we mention any value for ex:"ord=5"it will pick the 5 th value from the array.if we mention "ord=all",the array will hold all the values which are present in those boundaries.but if we mention "ord=0" we are going to face above error.