我尝试使用EmbeddedDatabase H2测试我的代码时遇到奇怪的异常:
java.lang.RuntimeException:
java.lang.RuntimeException: org.h2.jdbc.JdbcBatchUpdateException: Timeout trying to lock table "CO_SCENARIO_1"; SQL statement:
UPDATE CO_SCENARIO_1 SET VALUE = ? WHERE ATTRIBUTE = ? AND MODIFIER = ? [50200-156]
at de.telekom.skses.test.dao.DatabaseFileConverterTest.fromFile(DatabaseFileConverterTest.java:99)
这是我尝试测试的代码的一部分:
case "overriddenVariables.txt": {
try (Scanner sc = new Scanner(bOut.toString())) {
try (Connection con = dataSource.getConnection()) {
String aQuery = "UPDATE $tableName SET VALUE = ? WHERE ATTRIBUTE = ? AND MODIFIER = ?";
String line = "";
if (sc.hasNext()) {
line = sc.nextLine();
}
while (sc.hasNext()) {
if (line.startsWith("+")) {
String setting = line.substring(1);
try (PreparedStatement ps = con.prepareStatement(aQuery.replace("$tableName", setting))) {
while (sc.hasNext() && !(line = sc.nextLine()).startsWith("+")) {
int del1 = line.indexOf(":");
int del2 = line.indexOf(':', del1 + 1);
String attr = line.substring(0, del1);
String modifier = line.substring(del1 + 1, del2);
String value = line.substring(del2 + 1, line.length());
Clob myClob = con.createClob();
myClob.setString(1, value);
ps.setClob(1, myClob);
ps.setString(2, attr);
ps.setString(3, modifier);
ps.addBatch();
}
ps.executeBatch();
}
}
}
} catch (SQLException e) {
logger.error("Error", e);
throw new RuntimeException(e);
}
} catch (Exception ex) {
logger.error("Error", ex);
throw new RuntimeException(ex);
}
break;
}
StackOverflow说我应该设置锁定超时,但我还没有找到如何为EmbeddedDatabase设置它。此外,在以前的版本中,我为每个查询打开了新的PreparedStatement,并为每个PreparedStatement打开了新的Connection,一切运行良好,我无法理解为什么它现在还没有。你能解释一下我要做些什么让它再次发挥作用吗?
如果有什么不对,我很抱歉,我是Java EE的新手。
答案 0 :(得分:1)
我记得在嵌入模式下使用H2时,它存在并发问题。这可能就是为什么你得到表上锁的超时,因为当你尝试执行下一个表时,表仍然从你的上一批更新。每次关闭连接和preparedStatement时执行时间都会缩短,因此您不会获得超时。
您是否尝试过添加到此post中所述的DatabaseURL ;MVCC=true
?如果这不能解决问题,是否真的有必要使用批次进行更新?
编辑:我之前链接的帖子,链接到h2 website,您可以在其中找到有关如何通过将;LOCK_TIMEOUT=10000
添加到数据库网址来更改锁定超时的说明。这会将其改为10秒,标准为1秒