4

我们有一个基于 REST 的服务,它调用外部 API 并从该 API 获取响应。

我在这里提交容量请求,以确保我们的盒子在我们托管服务时能够处理流量。

所以Capacity的人问我——

Any idea what is the estimated CPU and IO time for these calls?

谁能告诉我simple language这些术语是什么意思?我应该采取什么方法来粗略估计电话?

谢谢您的帮助。

更新:-

假设这是我的程序。

public class RestLnPTest {

    private final static Logger LOG = Logger.getLogger(NokiaLnPTest.class.getName());
    private static int noOfThreads = 10;

    public static void main(String[] args) {

        ExecutorService service = Executors.newFixedThreadPool(noOfThreads);

        try {

            for (int i = 0; i < 100 * noOfThreads; i++) {
                service.submit(new ThreadTask());
            }

            service.shutdown();
            service.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS);

        } catch (InterruptedException e) {

        } catch (Exception e) {

        } finally {
            logHistogramInfo();
        }
    }

    private static void logHistogramInfo() {

     System.out.println(ThreadTask.lookupHistogram);

    }
}

class ThreadTask implements Runnable {

    public static ConcurrentHashMap<Long, AtomicLong> lookupHistogram = new ConcurrentHashMap<Long, AtomicLong>();
    private static final String URL = "SOME_URL";

    @Override
    public void run() {

        RestTemplate restTemplate = new RestTemplate();

        long start = System.nanoTime();

        String result = restTemplate.getForObject(URL, String.class);

        long end = System.nanoTime() - start;

        final AtomicLong before = lookupHistogram.putIfAbsent(end / 1000000, new AtomicLong(1L));

        if (before != null) {
            before.incrementAndGet();
        }
    }
}

那么如何计算 CPU 和 IO 时间呢?目前我正在Unix环境中工作。

4

1 回答 1

2

我相信您需要测量由您的应用程序活动引起的 CPU 消耗和 IO 负载。

如果你在类 Unix 系统上,你可以使用

  1. top手动监控命令
  2. vmstat用于整机自动监控
  3. ps有适当的选项来监控特定的过程。

在 Windows 上从使用任务管理器开始。您还可以使用 WMI 实现vbsjscript获取相同数据的脚本。

如果您需要在 java 中实现平台无关的方式,您可以使用 JMX。系统 bean 至少提供了关于 CPU 消耗的有限信息。

于 2013-03-15T19:27:31.093 回答