Madhuri Jain
Madhuri Jain

Reputation: 97

Retry connection with JMeter servers (generators) in JMeter Distributed setup

I've a distributed JMeter setup with 1 client (controller) and 2 servers (generators).

  1. Now while a test is executing on the setup if a generator crashes in between, the controller gets hanged even after the test duration ends. Hanged controller

  2. Is there a way to reconnect the controller with the generator after the generator comes up again during the same test execution?

Upvotes: 1

Views: 182

Answers (1)

UBIK LOAD PACK
UBIK LOAD PACK

Reputation: 34526

No there is no such configuration option and it is advised to restart servers.

Usually this is due to connectivity issues between server and controller like port not open.

For reference properties have a look at:

For 1/ you can add this to user.properties:

client.continue_on_fail=true server.exitaftertest=true

Upvotes: 1

Related Questions