loading testing from a one ec2 linux/ubuntu instance to another ec2 linux/ubuntu instance
I wanna run a load/stress testing on ubuntu ec2 small instance. I could have done it using Jmeter from my laptop itself, but that would actually consume lot of bandwidth and also I feel I cant get the real the performance and stress statics.
I am looking for a either a method or a app, similar to jmeter which would bang my another ec2 ubuntu instance and I could access the load/stress it takes.
Kindly suggest me any tools
Siege
This would probably be my preference – Some of its options include the number of simultaneous requests, delay between requests, and number of times each user should make a request. Most importantly though, it lets you specify a URL list which it can be setup to access at random – this will provide a more realistic test than simply hitting the same URL multiple times.
ApacheBench (ab)
This is part of the httpd-tools package (i.e. you don’t need to install all of Apache if it isn’t your web server of choice). It lets you specify number of concurrent users and total requests – but only accesses a single URL. It provides a good breakdown of time per-request.
httperf is another choice – it tends to be better for lower concurrency tests.
If you are testing between instances you may want to have a baseline bandwidth number – iPerf should be able to provide that.
Keep in mind that only bandwidth in the same availability zone is not charged.
Check more discussion of this question.
Related posts:
- Why are ACLs not loading on ec2 instance from saved image?
- File not found error on ec2 ubuntu 10.10 instance official instance
- Test capacity of HAProxy Load Balance solution on Amazon EC2 Micro-instance
- What is the reason for scaling Amazon EC2 by instance count rather than instance parameters?
- Automated snapshots of EBS-backed EC2 instance running Ubuntu
Leave a comment
Recent Posts
- SCP transfer only modified files
- How can I automate clearing and resetting a Linux user’s home directory to a default?
- Cron expression that runs every 5 minutes from 1:30 am – 6:00 am [duplicate]
- Understanding redundant power supplies
- Is there a way for administrators to disable users from installing Firefox extensions?





