0

我正在做一个家庭作业,目的是展示增加线程数如何有助于或损害程序的性能。基本思想是对来自网站的数据的单个请求进行线程化,然后确定当一个人同时运行n 个查询时执行所有查询需要多长时间。

我想我已经正确完成了线程和时钟,但是请求发生了一些奇怪的事情。我java.net.URLConnection用来连接到数据库。我的前三千个左右连接将成功并加载。然后,数百个调用失败,没有任何证据表明 Java 已经尝试了指定的超时期限。

我在一个线程中运行的代码如下:

/* This code to get the contents from an URL was adapted from a
 * StackOverflow question found at http://goo.gl/QPqR4 .
 */
private static String loadContent(String address) throws Exception {
  String toReturn = "";

  try {
    URL url = new URL(address);
    URLConnection con = url.openConnection();
    con.setConnectTimeout(5000);
    con.setReadTimeout(5000);
    InputStream stream = con.getInputStream();
    Reader r = new InputStreamReader(stream, "ISO-8859-1");

    while (true) {
      int ch = r.read();
      if (ch < 0) {
        break;
      }
      toReturn += (char) ch;
    }

    r.close();
    stream.close();
  } catch (Exception e) {
    System.out.println(address + ": " + e.getMessage());
    throw e;
  }

  return toReturn;
}

运行线程的代码如下。该NormalPerformance课程是我为简化计算一系列观察结果的均值和方差而编写的课程。

/* This code is patterned after code provided by my professor.
 */
private static NormalPerformance performExperiment(int threads, int runs)
  throws Exception
{
  NormalPerformance toReturn = new NormalPerformance();

  for (int i = 0; i < runs; i++) {
    final List<Callable<Void>> tasks = new ArrayList<Callable<Void>>();
    for (int j = 0; j < URLS.length; j++) {
      final String url = URLS[i];
      tasks.add(new Callable<Void>() {
        public Void call() throws Exception {
          loadContent(url);
          return null;
        }
      });
    }

    long start = System.nanoTime();
    final ExecutorService exectuorPool = Executors.newFixedThreadPool(threads);
    executorPool.invokeAll(tasks);
    executorPool.shutdown();
    double time = (System.nano() - start) / 1000000000.;
    toReturn.addObservation(time);

    System.out.println("" + threads + " " + (i + 1) + ": " + time);
  }

  return toReturn;
}

为什么我会看到这种奇怪的成功和失败模式?更奇怪的是,有时杀死程序并重新启动并不能阻止失败的运行。我已经尝试过诸如强制线程休眠、调用System.gc()、增加连接和读取超时值之类的方法,但这些都没有单独或组合解决这个问题。

我如何保证我的连接有最好的连接机会?

环境:Windows 7 64 位、Eclipse Juno 64 位、JRE 7

4

0 回答 0