I have a HTTP Request in a Test Plan. I am sending a POST Request with a very large body (10 MB).
I am reading the body data from a file using ${__FileToString(data.json)}
and testing it with 300 threads
Running it is giving out of memory error
Each thread is storing the same (10 MB) file in RAM, which is causing the error.
Is it possible to make all the threads access the same copy instead of creating duplicates?