Reputation: 457
I'm setting up a Distributed Load Test (DLT) in AWS using JMeter. My test configuration requires loading data from an Avro .bin file. Locally, I simply specify the local file's path in JMeter, and it works as expected. However, I am struggling to figure out how to handle this in the AWS DLT environment. https://aws.amazon.com/solutions/implementations/distributed-load-testing-on-aws/
Here are my specific concerns:
I’ve considered the following approaches but need guidance:
All of them seems to be kind of complicated. And I am not sure it could work.
If you’ve faced a similar situation or have a best-practice recommendation for handling external resource files like this in AWS DLT, I’d appreciate your help!
Update I read in another post that we can attach a file packaged in a ZIP file together with the JMeter config. I tried but still it is not able to run the test.
<elementProp name="HTTPsampler.Files" elementType="HTTPFileArgs">
<collectionProp name="HTTPFileArgs.files">
<elementProp name="LscTestEvent.bin" elementType="HTTPFileArg">
<stringProp name="File.mimetype">application/octet-stream</stringProp>
<stringProp name="File.path">LscTestEvent.bin</stringProp>
<stringProp name="File.paramname"></stringProp>
</elementProp>
</collectionProp>
</elementProp>
Upvotes: 0
Views: 30