Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
1ca74da1
Unverified
提交
1ca74da1
authored
8月 31, 2018
作者:
Andrei Tokar
提交者:
GitHub
8月 31, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1414 from h2database/defrag-compact
DEFRAG and COMPACT mixup
上级
37131b3b
f0d230c6
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
26 行增加
和
22 行删除
+26
-22
help.csv
h2/src/docsrc/help/help.csv
+1
-1
Database.java
h2/src/main/org/h2/engine/Database.java
+15
-9
MVTableEngine.java
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
+8
-9
TestMVTableEngine.java
h2/src/test/org/h2/test/store/TestMVTableEngine.java
+2
-3
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
1ca74da1
...
...
@@ -1839,7 +1839,7 @@ but only for at most the time defined by the database setting ""h2.maxCompactTim
SHUTDOWN IMMEDIATELY closes the database files without any cleanup and without compacting.
SHUTDOWN DEFRAG re-orders the pages when closing the database so that table scans are faster.
SHUTDOWN DEFRAG re-orders the pages when closing the database so that table scans are faster.
In case of MVStore it is currently equvalent to COMPACT.
Admin rights are required to execute this command.
","
...
...
h2/src/main/org/h2/engine/Database.java
浏览文件 @
1ca74da1
...
...
@@ -1519,16 +1519,22 @@ public class Database implements DataHandler {
}
}
reconnectModified
(
false
);
if
(
store
!=
null
&&
store
.
getMvStore
()
!=
null
&&
!
store
.
getMvStore
().
isClosed
())
{
long
maxCompactTime
=
dbSettings
.
maxCompactTime
;
if
(
compactMode
==
CommandInterface
.
SHUTDOWN_COMPACT
)
{
store
.
compactFile
(
dbSettings
.
maxCompactTime
);
}
else
if
(
compactMode
==
CommandInterface
.
SHUTDOWN_DEFRAG
)
{
maxCompactTime
=
Long
.
MAX_VALUE
;
}
else
if
(
getSettings
().
defragAlways
)
{
maxCompactTime
=
Long
.
MAX_VALUE
;
if
(
store
!=
null
)
{
MVStore
mvStore
=
store
.
getMvStore
();
if
(
mvStore
!=
null
&&
!
mvStore
.
isClosed
())
{
boolean
compactFully
=
compactMode
==
CommandInterface
.
SHUTDOWN_COMPACT
||
compactMode
==
CommandInterface
.
SHUTDOWN_DEFRAG
||
getSettings
().
defragAlways
;
if
(!
compactFully
&&
!
mvStore
.
isReadOnly
())
{
try
{
store
.
compactFile
(
dbSettings
.
maxCompactTime
);
}
catch
(
Throwable
t
)
{
trace
.
error
(
t
,
"compactFile"
);
}
}
store
.
close
(
compactFully
);
}
store
.
close
(
maxCompactTime
);
}
if
(
systemSession
!=
null
)
{
systemSession
.
close
();
...
...
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
浏览文件 @
1ca74da1
...
...
@@ -360,19 +360,18 @@ public class MVTableEngine implements TableEngine {
* fill rate are compacted, but old chunks are kept for some time, so
* most likely the database file will not shrink.
*
* @param
maxCompactTime the maximum time in milliseconds to compact
* @param
compactFully true if storage need to be compacted after closer
*/
public
void
close
(
long
maxCompactTime
)
{
public
void
close
(
boolean
compactFully
)
{
try
{
if
(!
mvStore
.
isClosed
()
&&
mvStore
.
getFileStore
()
!=
null
)
{
boolean
compactFully
=
false
;
if
(!
mvStore
.
getFileStore
().
isReadOnly
())
{
FileStore
fileStore
=
mvStore
.
getFileStore
();
if
(!
mvStore
.
isClosed
()
&&
fileStore
!=
null
)
{
if
(
fileStore
.
isReadOnly
())
{
compactFully
=
false
;
}
else
{
transactionStore
.
close
();
if
(
maxCompactTime
==
Long
.
MAX_VALUE
)
{
compactFully
=
true
;
}
}
String
fileName
=
mvStore
.
getFileStore
()
.
getFileName
();
String
fileName
=
fileStore
.
getFileName
();
mvStore
.
close
();
if
(
compactFully
&&
FileUtils
.
exists
(
fileName
))
{
// the file could have been deleted concurrently,
...
...
h2/src/test/org/h2/test/store/TestMVTableEngine.java
浏览文件 @
1ca74da1
...
...
@@ -740,8 +740,7 @@ public class TestMVTableEngine extends TestDb {
conn
.
close
();
long
sizeNew
=
FileUtils
.
size
(
getBaseDir
()
+
"/"
+
getTestName
()
+
Constants
.
SUFFIX_MV_FILE
);
println
(
"new: "
+
sizeNew
+
" old: "
+
sizeOld
);
// assertTrue("new: " + sizeNew + " old: " + sizeOld, sizeNew < sizeOld);
assertTrue
(
"new: "
+
sizeNew
+
" old: "
+
sizeOld
,
sizeNew
<
sizeOld
);
}
private
void
testTwoPhaseCommit
()
throws
Exception
{
...
...
@@ -1436,7 +1435,7 @@ public class TestMVTableEngine extends TestDb {
reverse
+=
testReverseDeletePerformance
(
true
);
direct
+=
testReverseDeletePerformance
(
false
);
}
assertTrue
(
"direct: "
+
direct
+
", reverse: "
+
reverse
,
2
*
Math
.
abs
(
reverse
-
direct
)
<
reverse
+
direct
);
assertTrue
(
"direct: "
+
direct
+
", reverse: "
+
reverse
,
3
*
Math
.
abs
(
reverse
-
direct
)
<
2
*
(
reverse
+
direct
)
);
}
private
long
testReverseDeletePerformance
(
boolean
reverse
)
throws
Exception
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论