我正在写一个简单的Scala& Squeryl应用程序。出于测试目的,每次在sbt中运行“test”时,都会创建一个内存中的H2 db并填充测试数据。每次运行后,我都可以看到任务管理器中java.exe(其中sbt正在运行)的内存使用量增加,直到4或5次运行后,它与OutOfMemoryError崩溃。我错过了明确释放H2或Squeryl使用的内存的东西吗?到目前为止,我只使用Session.create
,然后使用Persistence.create
。以下是我的代码的摘录:
object Persistence extends Schema {
val documents = table[IncomeEntity]
val positions = table[Position]
val documentToPositions = oneToManyRelation(documents, positions).via(_.id === _.id_income)
}
class PersistenceTests extends FunSuite with BeforeAndAfterAll {
override protected def beforeAll() {
Class.forName("org.h2.Driver")
SessionFactory.concreteFactory = Some(
() => Session.create(DriverManager.getConnection("jdbc:h2:mem:test"), new H2Adapter)
)
}
test("DDL") {
transaction {
Persistence.create
assert(Persistence.documents.size == 0)
assert(Persistence.positions.size == 0)
}
}
test("Insert") {
transaction {
Persistence.create
(1 to 100) map { _ => IncomeMapper.save(new Income) }
assert(Persistence.documents.size == 100)
}
}
}
我得到的消息只是以下内容:
[info] PersistenceTests:
sbt appears to be exiting abnormally.
The log file for this session is at C:\Users\Oleg\AppData\Local\Temp\sbt7320472784033855835.log
java.lang.OutOfMemoryError: PermGen space
Error during sbt execution: java.lang.OutOfMemoryError: PermGen space
答案 0 :(得分:3)
将以下标志添加到您的SBT启动脚本中:
-XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256m
。
这应该解决问题。
<强>更新强> 如果你还在崩溃JVM,请看一下SBT-revolver + JRebel:https://github.com/spray/sbt-revolver。它将在分叉的JVM中启动您的应用程序,因此您的SBT永远不会崩溃。
答案 1 :(得分:1)
如果没有更多细节(例如你正在使用的架构类,OOME堆栈跟踪等),很难猜到。一种可能性是你在每次测试运行时都会生成一个Schema类实例,根据我的经验,它会以非常低效/低效的方式缓存。确保您只有一个Schema实例(通常只是将其设为对象),和/或在您的问题中添加更多信息......