2

我想用 Java 构建自己的负载测试工具,目标是能够对我在整个开发周期中构建的 Web 应用程序进行负载测试。Web 应用程序将接收服务器到服务器的 HTTP Post 请求,我想找到它的每秒起始事务 (TPS) 容量以及平均响应时间。

Post 请求和响应消息将采用 XML 格式(但我认为这并不适用 :))。

我编写了一个非常简单的 Java 应用程序来发送事务并计算它在一秒钟(1000 毫秒)内能够发送多少事务但是我认为这不是加载测试的最佳方式。我真正想要的是在完全相同的时间发送任意数量的交易 - 即 10、50、100 等。

任何帮助,将不胜感激!

哦,这是我当前的测试应用程序代码:

    Thread[] t = new Thread[1];

    for (int a = 0; a < t.length; a++) {
        t[a] = new Thread(new MessageLoop());
    }
    startTime = System.currentTimeMillis();
    System.out.println(startTime);
    for (int a = 0; a < t.length; a++) {
        t[a].start();
    }
    while ((System.currentTimeMillis() - startTime) < 1000 ) {

    }

    if ((System.currentTimeMillis() - startTime) > 1000 ) {
        for (int a = 0; a < t.length; a++) {
            t[a].interrupt();
        }
    }
    long endTime = System.currentTimeMillis();
    System.out.println(endTime);
    System.out.println("Total time: " + (endTime - startTime));
    System.out.println("Total transactions: " + count);

private static class MessageLoop implements Runnable {
    public void run() {
        try {
            //Test Number of transactions

            while ((System.currentTimeMillis() - startTime) < 1000 ) {
                // SEND TRANSACTION HERE
                count++;
            }
        }
        catch (Exception e) {

        }
    }
}
4

1 回答 1

1

您的代码中存在一些问题。这是一个不好的选择,System.currentTimeMillis()因为它使用精度为 1 毫秒,但精度约为 10-20 毫秒的系统计时器。您应该System.nanoTime()用于此测量。并且负载测试工具应该能够在多线程环境中测试代码。

所以,你应该使用开源工具:)

于 2010-04-21T09:08:49.497 回答