Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
b413c56a
提交
b413c56a
authored
2月 13, 2018
作者:
andrei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Propagate exception from backgound thread
Make OOME test a forked process
上级
bbbd555d
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
83 行增加
和
74 行删除
+83
-74
MVStore.java
h2/src/main/org/h2/mvstore/MVStore.java
+22
-20
TestOutOfMemory.java
h2/src/test/org/h2/test/db/TestOutOfMemory.java
+61
-54
没有找到文件。
h2/src/main/org/h2/mvstore/MVStore.java
浏览文件 @
b413c56a
...
...
@@ -2450,27 +2450,27 @@ public final class MVStore {
* needed.
*/
void
writeInBackground
()
{
if
(
closed
)
{
return
;
}
try
{
if
(
closed
)
{
return
;
}
// could also commit when there are many unsaved pages,
// but according to a test it doesn't really help
// could also commit when there are many unsaved pages,
// but according to a test it doesn't really help
long
time
=
getTimeSinceCreation
();
if
(
time
<=
lastCommitTime
+
autoCommitDelay
)
{
return
;
}
if
(
hasUnsavedChanges
())
{
try
{
commitAndSave
();
}
catch
(
Throwable
e
)
{
handleException
(
e
);
long
time
=
getTimeSinceCreation
();
if
(
time
<=
lastCommitTime
+
autoCommitDelay
)
{
return
;
}
}
if
(
autoCompactFillRate
>
0
)
{
try
{
if
(
hasUnsavedChanges
())
{
try
{
commitAndSave
();
}
catch
(
Throwable
e
)
{
handleException
(
e
);
return
;
}
}
if
(
autoCompactFillRate
>
0
)
{
// whether there were file read or write operations since
// the last time
boolean
fileOps
;
...
...
@@ -2486,9 +2486,9 @@ public final class MVStore {
// in the bookkeeping?
compact
(
fillRate
,
autoCommitMemory
);
autoCompactLastFileOpCount
=
fileStore
.
getWriteCount
()
+
fileStore
.
getReadCount
();
}
catch
(
Throwable
e
)
{
handleException
(
e
);
}
}
catch
(
Throwable
e
)
{
handleException
(
e
);
}
}
...
...
@@ -2497,7 +2497,9 @@ public final class MVStore {
try
{
backgroundExceptionHandler
.
uncaughtException
(
null
,
ex
);
}
catch
(
Throwable
ignore
)
{
ex
.
addSuppressed
(
ignore
);
if
(
ex
!=
ignore
)
{
// OOME may be the same
ex
.
addSuppressed
(
ignore
);
}
}
}
}
...
...
h2/src/test/org/h2/test/db/TestOutOfMemory.java
浏览文件 @
b413c56a
...
...
@@ -5,6 +5,7 @@
*/
package
org
.
h2
.
test
.
db
;
import
java.io.File
;
import
java.sql.Connection
;
import
java.sql.DriverManager
;
import
java.sql.PreparedStatement
;
...
...
@@ -15,12 +16,12 @@ import java.util.Map;
import
java.util.Random
;
import
java.util.concurrent.atomic.AtomicReference
;
import
org.h2.api.ErrorCode
;
import
org.h2.message.DbException
;
import
org.h2.mvstore.MVStore
;
import
org.h2.store.fs.FilePath
;
import
org.h2.store.fs.FilePathMem
;
import
org.h2.store.fs.FileUtils
;
import
org.h2.test.TestBase
;
import
org.h2.test.utils.SelfDestructor
;
/**
* Tests out of memory situations. The database must not get corrupted, and
...
...
@@ -38,7 +39,7 @@ public class TestOutOfMemory extends TestBase {
}
@Override
public
void
test
()
throws
SQLException
,
Interrupted
Exception
{
public
void
test
()
throws
Exception
{
if
(
config
.
vmlens
)
{
// running out of memory will cause the vmlens agent to stop working
return
;
...
...
@@ -147,67 +148,73 @@ public class TestOutOfMemory extends TestBase {
}
}
private
void
testUpdateWhenNearlyOutOfMemory
()
throws
SQLException
,
Interrupted
Exception
{
private
void
testUpdateWhenNearlyOutOfMemory
()
throws
Exception
{
if
(
config
.
memory
)
{
return
;
}
recoverAfterOOM
();
deleteDb
(
"outOfMemory"
);
Connection
conn
=
getConnection
(
"outOfMemory;MAX_OPERATION_MEMORY=1000000"
);
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"drop all objects"
);
stat
.
execute
(
"create table stuff (id int, text varchar as space(100) || id)"
);
stat
.
execute
(
"insert into stuff(id) select x from system_range(1, 3000)"
);
PreparedStatement
prep
=
conn
.
prepareStatement
(
"update stuff set text = text || space(1000) || id"
);
prep
.
execute
();
stat
.
execute
(
"checkpoint"
);
eatMemory
(
80
);
try
{
String
url
=
getURL
(
"outOfMemory"
,
true
);
//*
String
selfDestructor
=
SelfDestructor
.
getPropertyString
(
1
);
String
args
[]
=
{
System
.
getProperty
(
"java.home"
)
+
File
.
separatorChar
+
"bin"
+
File
.
separator
+
"java"
,
"-Xmx128m"
,
"-XX:+UseParallelGC"
,
// "-XX:+UseG1GC",
"-cp"
,
getClassPath
(),
selfDestructor
,
Child
.
class
.
getName
(),
url
};
ProcessBuilder
pb
=
new
ProcessBuilder
()
.
redirectOutput
(
ProcessBuilder
.
Redirect
.
INHERIT
)
.
redirectError
(
ProcessBuilder
.
Redirect
.
INHERIT
)
.
command
(
args
);
Process
p
=
pb
.
start
();
int
exitValue
=
p
.
waitFor
();
assertEquals
(
"Exit code"
,
0
,
exitValue
);
/*/
Child.main(url);
//*/
try
(
Connection
conn
=
getConnection
(
"outOfMemory"
))
{
Statement
stat
=
conn
.
createStatement
();
ResultSet
rs
=
stat
.
executeQuery
(
"SELECT count(*) FROM stuff"
);
assertTrue
(
rs
.
next
());
assertEquals
(
3000
,
rs
.
getInt
(
1
));
rs
=
stat
.
executeQuery
(
"SELECT * FROM stuff WHERE id = 3000"
);
assertTrue
(
rs
.
next
());
String
text
=
rs
.
getString
(
2
);
assertFalse
(
rs
.
wasNull
());
assertEquals
(
1004
,
text
.
length
());
}
finally
{
deleteDb
(
"outOfMemory"
);
}
}
public
static
final
class
Child
extends
TestBase
{
private
static
String
URL
;
public
static
void
main
(
String
...
a
)
throws
Exception
{
URL
=
a
[
0
];
TestBase
.
createCaller
().
init
().
test
();
}
@Override
public
void
test
()
throws
SQLException
{
Connection
conn
=
getConnection
(
URL
+
";MAX_OPERATION_MEMORY=1000000"
);
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"DROP ALL OBJECTS"
);
stat
.
execute
(
"CREATE TABLE stuff (id INT, text VARCHAR)"
);
stat
.
execute
(
"INSERT INTO stuff(id) SELECT x FROM system_range(1, 3000)"
);
PreparedStatement
prep
=
conn
.
prepareStatement
(
"UPDATE stuff SET text = IFNULL(text,'') || space(1000) || id"
);
prep
.
execute
();
stat
.
execute
(
"CHECKPOINT"
);
eatMemory
(
80
);
try
{
prep
.
execute
();
fail
();
}
catch
(
DbException
ex
)
{
freeMemory
();
assertTrue
(
ErrorCode
.
OUT_OF_MEMORY
==
ex
.
getErrorCode
()
||
ErrorCode
.
GENERAL_ERROR_1
==
ex
.
getErrorCode
());
}
catch
(
SQLException
ex
)
{
freeMemory
();
assertTrue
(
ErrorCode
.
OUT_OF_MEMORY
==
ex
.
getErrorCode
()
||
ErrorCode
.
GENERAL_ERROR_1
==
ex
.
getErrorCode
());
}
recoverAfterOOM
();
try
{
conn
.
close
();
fail
();
}
catch
(
DbException
ex
)
{
freeMemory
();
assertEquals
(
ErrorCode
.
DATABASE_IS_CLOSED
,
ex
.
getErrorCode
());
}
catch
(
SQLException
ex
)
{
}
catch
(
Throwable
ex
)
{
freeMemory
();
assertEquals
(
ErrorCode
.
DATABASE_IS_CLOSED
,
ex
.
getErrorCode
());
}
freeMemory
();
conn
=
null
;
conn
=
getConnection
(
"outOfMemory"
);
stat
=
conn
.
createStatement
();
ResultSet
rs
=
stat
.
executeQuery
(
"select count(*) from stuff"
);
rs
.
next
();
assertEquals
(
3000
,
rs
.
getInt
(
1
));
}
catch
(
OutOfMemoryError
e
)
{
freeMemory
();
// out of memory not detected
throw
new
AssertionError
(
"Out of memory not detected"
,
e
);
}
finally
{
freeMemory
();
if
(
conn
!=
null
)
{
try
{
conn
.
close
();
}
catch
(
SQLException
e
)
{
// out of memory will / may close the database
assertKnownException
(
e
);
}
}
finally
{
try
{
conn
.
close
();
}
catch
(
Throwable
ignore
)
{
/**/
}
}
}
deleteDb
(
"outOfMemory"
);
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论