venkat sai
venkat sai

Reputation: 475

How many instances of same jmx file can we run in parallel in non gui mode

I have a jmx file that contain a property called FILE_NAME Now in non gui mode if i run same jmx file in say 20 instances with separate FILE_NAMES in parallel will it work

I have tried with 2 it is working, but want to make sure that it works with large number of instances in parallel

Upvotes: 1

Views: 42

Answers (1)

UBIK LOAD PACK
UBIK LOAD PACK

Reputation: 34566

If by instance you mean JVM, then yes there is no problem provided the value of property is difference per instances.

Note you can pass property from command line using:

-JFILE_NAME=value

And get it in JMeter using __P function:

${__P(FILE_NAME)}

Upvotes: 1

Related Questions