Home > Enterprise >  How to delay between assertions in jmeter?
How to delay between assertions in jmeter?

Time:09-01

I am making a call to DynamoDB to get number of items from it using JDBC connection configuration, JDBC request-before. Than there is http request which creates few items in DynamoDB. This takes from few seconds to a minute. At the end there is again JDBC request and JSR223 assertion. Any way to make the second JDBC request delayed? Right now the number of items always end up being same being because it is being queued up in DynamoDB and takes time to increase # of items. I have tried adding constant timer but it delays everything within that thread group. enter image description here

CodePudding user response:

Try to add Constant Timer(Cut > Paste Or Drag and Drop) inside JDBC Request and check.

CodePudding user response:

  1. Timers obey JMeter Scoping Rules
  2. Timers create delay before each Sampler in their scope

In order to create the delay before the JDBC Request you need to make time a child of the JDBC Request.

Alternatively you can replace it with Flow Control Action sampler

More information: A Comprehensive Guide to Using JMeter Timers

  • Related