+

Search Tips   |   Advanced Search

  • Previous Topic
  • Next Topic
  • Book Index
  • Configure the scenarios

    NeoLoad scenarios are the first place to consider for time-saving mechanisms that can help achieve heavy loads.

    It is recommended to special attention to the accuracy of the scenarios: Useless elements in scenarios must be removed or reconfigured. A proper sizing of the Load Generators helps check the scenarios are ready for heavy tests, as described in Cloud credits only: Size Cloud Load Generators.

    In This Section

  • Minimize the number of validations
  • Control variables value distribution
  • Avoid XPath expressions in variable extractors
  • Optimize regular expressions
  • Minimize the use of JavaScript actions
  • See Also

  • Test in full Cloud
  • Before you begin testing from the Cloud
  • How to load test in full Cloud
  • Reserve the NeoLoad Cloud Controller
  • Configure the Controller
  • Configure the network
  • Cloud credits only: Size Cloud Load Generators
  • Reserve IP addresses
  • Reserve the Cloud Load Generators
  • Start the test
  • Read and retrieve results

  • Minimize the number of validations

    The validations defined in the scenarios make sure that scenarios work as expected, and also that the load imposed by the test prevents errors in the application. Scenario validation is definitely an utmost useful operation when testing an application under heavy loads. However, validation is resource-hungry (for both CPU and memory).

    It is necessary to find a trade-off between comprehensive results validation and excessive resource consumption. To achieve this balance, it is recommended that, for heavy load testing, validation is restricted to key pages only. For example, pages that provide access to a database, or pages more likely to produce errors.

    A good practice includes setting up numerous, fine-grained validations during the first phase of the testing process. It is useful to acquire sufficient confidence in the application to restrict validations to those strictly necessary during the heavy load test phase. See Global validation.


    Control variables value distribution

    Variables are useful to add dynamic content to a scenario components, such as in form parameter values. Although variables are powerful features in NeoLoad, they are resource-consuming. For large tests, the number of variables must be under control. Irrelevant variables must be removed.

    It is necessary to avoid variables that are Controller-based and require an excessive number of transactions between the Controller and the Load Generators.

    When creating or editing a variable, the recommended policies are:


    Avoid XPath expressions in variable extractors

    A variable extractor extracts a string from the server response to the request and assigns the string to a variable. The variable extractor can use an XPath expression that points to a portion of an XML document. However extracting data from XML responses is a CPU-intensive operation, particularly when working on large amounts of data.

    It is strongly advised to check the accuracy of all variable extractors, avoid XPath expressions, and favor conventional variable extractors whenever possible.


    Optimize regular expressions

    Even if regular expressions are powerful tools, they are often the cause of performance issues. Most of the time, regular slowly-running expressions can be dramatically improved when optimized for efficiency. Optimizing regular expression centers around controlling/minimizing backtracking and the number of steps it takes the regex engine to match or fail.

    At its heart, the regex engine uses backtracking. Usually, there are a number of ways to apply a regular expression on a given string, and the pattern-matching engine tries to exhaust all possibilities until it declares failure. To better understand backtracking, consider the following example can be considered:

    The regular expression is sc(ored|ared|oring)x The input string is scared. First, the engine looks for sc and finds it immediately as the first two characters in the input string. It then tries to match ored starting from the third character in the input string. That does not match, and it goes back to the third character and tries ared. This does match, and it goes forward and tries to match x. Finding no match there, it goes back again to the third character and searches for oring. This does not match either, and it goes back to the second character in the input string and tries to search for another sc. Upon reaching the end of the input string, it declares failure.

    An important part of optimizing a regular expression is minimizing the amount of backtracking it does. Due to backtracking, regular expressions encountered in real-world application scenarios can sometimes take a long time to completely match. Worse, it takes much longer for the engine to declare that a regular expression did not match an input string than it does to find a successful match. This is an important fact to remember.

    Understanding and optimizing greedy and reluctant quantifiers in a regular expression are essential. A greedy quantifier such as "*" or "+" first tries to match as many characters as possible from an input string, even if this means that the input string does not have sufficient characters left in it to match the rest of the regular expression. When this happens, the greedy quantifier backtracks, returning characters until an overall match is found or until there are no more characters. A reluctant (or lazy) quantifier on the other hand first tries to match as few characters in the input string as possible. For example:

    To optimize a sub-expression like ".*a":


    Minimize the use of JavaScript actions

    JavaScript actions included in Virtual User behavior are CPU-intensive for the Load Generators. Minimizing these actions, and in some cases altogether removing them (particularly for logging code), make heavy load tests all the more efficient. It is also advised to pay particular attention to the JavaScript code itself: avoid nested loops, make sure code is optimized, and so on.


    Home