我正在从存储在我机器上的文本文件中填充一个表。到此结束时将有大约一百万条记录,但填充速度太慢,实际上需要 12 个小时才能达到 140000 条记录。使用 while 循环,我提取每条记录所需的信息,然后调用此函数:
public void populateDB(int pid, String id, String title, String yearPublished, String author, String summary) {
Papers p = new Papers();
p.setPid(pid);
p.setPaperId(id);
p.setTitle(title);
p.setYearPublished(yearPublished);
p.setAuthor(author);
p.setSummary(summary);
em.persist(p);
em.flush();
System.out.println("Populated paper " + id);
}
但是随着迭代次数的增加,这会显着减慢。我认为这与 cpu 使用率有关,似乎限制在 50%。但我不知道如何增加这个。最大和最小线程池设置为 10。如何阻止它变慢?
玻璃鱼 3.1.2.2