Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
344 views

DB (SQL) automated stress/load tools?

I want to measure the performance and scalability of my DB application. I am looking for a tool that would allow me to run many SQL statements against my DB, taking the DB and script (SQL) file as ...
4
votes
4answers
1k views

Best tool to Stress Test a dynamic website?

We're looking for a cheapish, easy-to-use stress testing tool to record a user's flow through our website and then hammer it with that script until it falls over. Our requirements are: 1) Certain ...
3
votes
4answers
253 views

Enterprise Server WCF Stress/Harness Testing

I am writing in order to ask a question on WCF performance. 1. Background We have a client-server system that runs on .NET 3.5. The server is a C# service and the client is a silverlight app. I ...
2
votes
5answers
70 views

php + mysql to insert many rows with incremental ids and different values

I'm trying to stress my application to see if the mysql queries are OK for a large set of records. As many developers, I wrote the PHP/MySQL application having a small range of records and adding ...
2
votes
6answers
243 views

Can we create 300,000 threads in a C# application and run it on a PC?

I am trying to immitate a scenario where 3Lakh conusmers are accessing a server. So i am trying to create the pseudo clients, by repeatedly querying the server from the concurrent threads. But the ...
2
votes
5answers
208 views

Logging mysql queries

I am about to begin developing a logging system for future implementation in a current PHP application to get load and usage statistics from a MYSQL database. The statistic will later on be used to ...
2
votes
1answer
2k views

Check load on mysql database

What would be the best ways to monitor mysql performance and load, queries per second, total queries over a hour etc? Thanks!
2
votes
2answers
85 views

Open Source testing for SQL Server 2000 and 2005

Are there any open source testing tools for testing the Sql Server 2000 stress .
1
vote
0answers
25 views

Load / Performance tests (HTTP and Web)

I'm looking for a load test tool, the main features that I need is: Distribution (very important) - I need to be able to run something like 20,000 - 30,000 request per seconds (and more), so one ...
1
vote
1answer
59 views

Stress test in a Silverlight application, which consumes data from a WCF DataService then exposes data from a SQLServer Database

I´m deploying a Silverlight application, which consumes data from a WCF DataService then exposes data from a SQLServer Database. Everytyhing works fine, but I´d like to make some stress tests. It´s ...
1
vote
1answer
311 views

Stress - Load testing a web application

I have a web application deployed on a tomcat server. I upload files via a POST method and then the uploaded files are transcoded to another type (e.g. 3gp to flv). How can I test, how many concurrent ...
1
vote
2answers
149 views

UDP Broadcast stress

I am writing an application that relies on UDP Broadcasting. Does anyone know what kind of stress this puts on your network? I would like to have multiple clients on the same network broadcasting ...
1
vote
1answer
210 views

Java Gridgain application starts to fail after 1 day of stress testing

So I have a an application which is running on top of gridgain and does so quite successfully for about 12-24 hours of stress testing before it starts to act funny. After this period of time the ...
1
vote
1answer
78 views

Multithreaded stress tests fail

I am doing a stress test of a web service by running many threads of the same process, but the second thread always stops in the middle of running without throwing an exception. How do you figure out ...
0
votes
2answers
122 views

UI Stress Testing on Android

is there a way for me to do a sort of UI Stress test, similar to that of monkey runner. I want my stress tester to click randomly on the screen until something is prompted. however, i want to be ...
0
votes
1answer
82 views

Interpreting and evaluating Jmeter output

I am using Jmeter to carry out load and stress tests on a RESTful web service for a university project. I have used JMeter to successfully return results but I am not sure what constitutes an ...
0
votes
2answers
53 views

Handling that need to RAGE quit [closed]

I really just am curious how people out there suppress their nerd rage while at work. I think I am about to make a scene and that would be very bad...
0
votes
1answer
257 views

IHS/Websphere 6.1.31 on AIX - Heavy Load - Stop accepting request afet 170 concurrent users - Connection Refused on same server

I was wondering if someone could point me out into the right direction. Right now our IHS / Websphere Server is unable to handle more than 170 concurrent users. We have tuned the IHS, Websphere ...
0
votes
1answer
144 views

Ad hoc distribution issues with iTunes 10+ (Xcode 3.1.4, Leopard)

I have an old version of Xcode so have been unable to create an .ipa file. I also only have leopard installed as the company I work for does not wish to purchase an upgrade so close to a new version ...
0
votes
2answers
75 views

How do Torrent Servers Maintain Connections to reduce server load

I understand that a torrent minimizes the server load by using other participating members to fetch content. One thing I am confused about is, the different parties are connected through the server ...
0
votes
2answers
125 views

VSTS Loadrunner or something better?

I am looking to get a comparison between stress testing tools that are available today. The options put forward to us are either VSTS or Loadrunner. As of now, the inclination is towards Loadrunner, ...
0
votes
3answers
225 views

Good math functions that stress the CPU

Anyone know any good math functions that causes a lot of load on the CPU. I am wanting to create a simple program the just creates load for X amount of seconds while another program monitors it. I'm ...
0
votes
2answers
56 views

how can i get to know about my web site maximum capacity for the visitors at the same time

how can i get to know about my web site maximum capacity for the visitors at the same time? -kind of stress test for unexpected situations-
0
votes
1answer
31 views

what is operating system requirement for microsoft stress tools

what is operating system requirement and hardware requirement for microsoft stress tools
0
votes
3answers
827 views

how to create simulator for web application for load test and stress test

how can i record the web server log files and replay the the recorded server logs so that i can latter run the logs and check the load on sql server. ex. number of request on and the number of ...
0
votes
1answer
89 views

How many objects can LINQ used to create per second?

I used Linq to insert objects into database.But if i used threads to simultanously create 20 object within 1 second, then system will fail to add 20 objects into database. And I found it is not ...
0
votes
1answer
2k views

Average max concurrent users on Tomcat

I am doing stress tests with JMeter on web application (built with Spring, Struts2 REST, uses PostgreSQL). I am simulating typical user's scenario with my app - 4 GET, 3 INSERT, 20 UPDATE calls. ...