gpt4 book ai didi

java - hibernate 内存堆不足错误

转载 作者:行者123 更新时间:2023-12-05 00:39:49 25 4
gpt4 key购买 nike

我有一个 Java 应用程序,除其他外,它每小时都会访问我们的 Active Directory 服务器,并拉下所有帐户的列表,并将它们转储到数据库中;这项工作是通过一个每小时产生新线程的线程完成的,数据库接口(interface)是通过 Hibernate 完成的。线程的运行方法(本质上是该线程唯一做的事情)如下所示:

public void run() {
try {
Thread.sleep(3600000); //we run once an hour, so we sleep for an hour
Thread newHourlyRunThread = new Thread(new HourlyRunThread());
newHourlyRunThread.start();
LDAPNewUsersReport report = new LDAPNewUsersReport();
Calendar calendar = Calendar.getInstance();
calendar.set(0, 0, 0, 0, 0); //We tell the report to look for everything from 12AM Jan 1 0 AD, which should be sufficient to find all created AD objects.
report.runReport(calendar.getTime(), new Date());
HashSet<LDAPEntry> allEntries = report.getAllEntries();
Iterator it = allEntries.iterator();
while (it.hasNext()) {
ContactParser.parseContact((LDAPEntry) it.next());
}
}

ContactParser的相关方法如下:

public static void parseContact(LDAPEntry entry) {
Contact chosenContact = null;
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();

List contacts = session.getNamedQuery("ContactByCanonicalName").setString(0, entry.getDN()).list();
Iterator it = contacts.iterator();
if (it.hasNext()) {
chosenContact = (Contact) it.next();
chosenContact = ContactParser.fillContactFields(chosenContact, entry);
} else {
chosenContact = ContactParser.fillContactFields(new Contact(), entry);
}
session.saveOrUpdate(chosenContact);
session.getTransaction().commit();
}

private static Contact fillContactFields(Contact chosenContact, LDAPEntry entry) {
chosenContact.setCanonicalName(entry.getDN());
chosenContact.setFirstName(ContactParser.getEntryField(entry, "givenName"));
chosenContact.setLastName(ContactParser.getEntryField(entry, "sn"));
chosenContact.setUserName(ContactParser.getEntryField(entry, "sAMAccountname"));
chosenContact.setEmployeeID(ContactParser.getEntryField(entry, "employeeID"));
chosenContact.setMiddleName(ContactParser.getEntryField(entry, "initials"));
chosenContact.setEmail(ContactParser.getEntryField(entry, "mail"));
if(chosenContact.getFirstSeen() == null){
chosenContact.setFirstSeen(new Date());
}
chosenContact.setLastSeen(new Date());
return chosenContact;
}

private static String getEntryField(LDAPEntry entry, String fieldName){
String returnString = "";
if(entry.getAttribute(fieldName) != null){
returnString = entry.getAttribute(fieldName).getStringValue();
}
return returnString;
}

如果我们只运行一个实例,这一切都很好地工作(因此,事后不会产生新线程),但如果我们多次运行这个线程(IE,我将执行速度加快到约 30 秒这样我就可以看到问题),Hibernate 报告缺少堆空间。这看起来不像是一组特别密集的数据(只有大约 6K 个条目),但是当我们将代码转移到暂存错误以准备推送到生产环境时,我看到了同样的错误。我在编写有效线程方面缺乏经验,在 Hibernate 方面也非常缺乏经验,所以如果有人知道什么可能会耗尽我们的堆空间(这个应用程序中的另一个主要线程没有同时运行,并且总共占用了几百 KB 的内存)从查看代码,我将不胜感激任何建议。

提前致谢。

最佳答案

您可以使用 ScheduledExecutorService 重写它,我怀疑部分问题是您创建了很多 HourlyRunThread 对象,而您只需要一个对象。

例如,这个测试说明了如何安排一个线程每秒运行 10 秒

@Test(expected = TimeoutException.class)
public void testScheduledExecutorService() throws InterruptedException, ExecutionException, TimeoutException {
final AtomicInteger id = new AtomicInteger();
final ScheduledExecutorService service = Executors.newScheduledThreadPool(1);
service.scheduleAtFixedRate(new Runnable() {
public void run() {
System.out.println("Thread" + id.incrementAndGet());
}
}, 1, 1, TimeUnit.SECONDS).get(10, TimeUnit.SECONDS);
}

这会给出您在运行时期望的输出,因为此测试在其 10 秒运行时内创建了将近 10k 个线程

private static final class HourlyRunThread extends Thread {
private static final AtomicInteger id = new AtomicInteger();
private final int seconds;

private HourlyRunThread(final int seconds) {
super("Thread" + id.incrementAndGet());
this.seconds = seconds;
}

public void run() {
try {
Thread.sleep(seconds);
if (seconds < 10) {
Thread newHourlyRunThread = new Thread(new HourlyRunThread(seconds));
newHourlyRunThread.start();
}
// do stuff
System.out.println(getName());
} catch (InterruptedException e) {
}
}
}

@Test
public void testThreading() {
final Thread t = new HourlyRunThread(1);
t.start();
}

关于java - hibernate 内存堆不足错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3864704/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com