金牛座分布式jmeter测试模拟保持

金牛座分布式jmeter测试模拟保持,jmeter,load-testing,taurus,Jmeter,Load Testing,Taurus,在taurus中,如何为分布式测试设置用于并发测试的hold这样的参数: 说吧,我想 execution: - distributed: - host1.mynet.com - host2.mynet.com - host3.mynet.com scenario: some_scenario hold-for: 2m scenarios: some_scenario: script: my-test.jmx 仅在所有节点上加载2分钟,而不考虑my-test.

在taurus中,如何为分布式测试设置用于并发测试的hold这样的参数: 说吧,我想

execution:
- distributed: 
  - host1.mynet.com
  - host2.mynet.com
  - host3.mynet.com
  scenario: some_scenario
  hold-for: 2m

scenarios:
  some_scenario:
    script: my-test.jmx

仅在所有节点上加载2分钟,而不考虑my-test.jmx中的测试计时。我该怎么做?仅适用于cuncurrency设置,不适用于分布式阅读金牛座代码,看起来可能是这样的:

 execution:
   - concurrency: ${__P(my_conc,3)}    # use `my_conc` prop or default=3 if property isn't found
        ramp-up: 30
       hold-for: 2m
       scenario: some_scenario

   - distributed: 
       - host1.mynet.com
       - host2.mynet.com
       - host3.mynet.com

 scenarios:
      some_scenario:
          script: my-test.jmx