Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
7f094034
提交
7f094034
authored
14 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
SHUTDOWN COMPACT is now faster.
上级
26981557
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
62 行增加
和
36 行删除
+62
-36
PageStore.java
h2/src/main/org/h2/store/PageStore.java
+62
-36
没有找到文件。
h2/src/main/org/h2/store/PageStore.java
浏览文件 @
7f094034
...
@@ -117,7 +117,7 @@ public class PageStore implements CacheWriter {
...
@@ -117,7 +117,7 @@ public class PageStore implements CacheWriter {
* This log mode means the transaction log is used and FileDescriptor.sync()
* This log mode means the transaction log is used and FileDescriptor.sync()
* is called for each checkpoint. This is the default level.
* is called for each checkpoint. This is the default level.
*/
*/
p
rivate
static
final
int
LOG_MODE_SYNC
=
2
;
p
ublic
static
final
int
LOG_MODE_SYNC
=
2
;
private
static
final
int
PAGE_ID_FREE_LIST_ROOT
=
3
;
private
static
final
int
PAGE_ID_FREE_LIST_ROOT
=
3
;
private
static
final
int
PAGE_ID_META_ROOT
=
4
;
private
static
final
int
PAGE_ID_META_ROOT
=
4
;
private
static
final
int
MIN_PAGE_COUNT
=
6
;
private
static
final
int
MIN_PAGE_COUNT
=
6
;
...
@@ -411,6 +411,7 @@ public class PageStore implements CacheWriter {
...
@@ -411,6 +411,7 @@ public class PageStore implements CacheWriter {
* @param fully if the database should be fully compressed
* @param fully if the database should be fully compressed
*/
*/
public
void
compact
(
boolean
fully
)
{
public
void
compact
(
boolean
fully
)
{
System
.
out
.
println
(
"compact"
);
if
(!
SysProperties
.
PAGE_STORE_TRIM
)
{
if
(!
SysProperties
.
PAGE_STORE_TRIM
)
{
return
;
return
;
}
}
...
@@ -434,7 +435,6 @@ public class PageStore implements CacheWriter {
...
@@ -434,7 +435,6 @@ public class PageStore implements CacheWriter {
// ensure the free list is backed up again
// ensure the free list is backed up again
log
.
checkpoint
();
log
.
checkpoint
();
}
finally
{
}
finally
{
recoveryRunning
=
false
;
recoveryRunning
=
false
;
}
}
...
@@ -445,27 +445,34 @@ public class PageStore implements CacheWriter {
...
@@ -445,27 +445,34 @@ public class PageStore implements CacheWriter {
maxCompactTime
=
Integer
.
MAX_VALUE
;
maxCompactTime
=
Integer
.
MAX_VALUE
;
maxMove
=
Integer
.
MAX_VALUE
;
maxMove
=
Integer
.
MAX_VALUE
;
}
}
int
blockSize
=
COMPACT_BLOCK_SIZE
;
int
blockSize
=
fully
?
COMPACT_BLOCK_SIZE
:
1
;
for
(
int
x
=
lastUsed
,
j
=
0
;
x
>
MIN_PAGE_COUNT
&&
j
<
maxMove
;
x
-=
blockSize
)
{
for
(
int
x
=
lastUsed
,
j
=
0
;
x
>
MIN_PAGE_COUNT
&&
j
<
maxMove
;
x
-=
blockSize
)
{
for
(
int
y
=
x
-
blockSize
+
1
;
y
<=
x
;
y
++)
{
for
(
int
full
=
x
-
blockSize
+
1
;
full
<=
x
;
full
++)
{
if
(
y
>
MIN_PAGE_COUNT
)
{
if
(
full
>
MIN_PAGE_COUNT
)
{
// ensure the page is in the disk buffer
// ensure the page is in the disk buffer
readPage
(
y
);
readPage
(
full
);
}
}
}
}
for
(
int
y
=
x
-
blockSize
+
1
;
y
<=
x
;
y
++)
{
for
(
int
full
=
x
-
blockSize
+
1
;
full
<=
x
;
full
++)
{
if
(
y
>
MIN_PAGE_COUNT
)
{
if
(
full
>
MIN_PAGE_COUNT
)
{
synchronized
(
database
)
{
synchronized
(
database
)
{
compact
(
y
);
int
free
=
getFirstFree
();
if
(
free
==
-
1
||
free
>=
full
)
{
j
=
maxMove
;
break
;
}
}
if
(
compact
(
full
,
free
))
{
j
++;
j
++;
}
}
}
}
}
long
now
=
System
.
currentTimeMillis
();
long
now
=
System
.
currentTimeMillis
();
if
(
now
>
start
+
maxCompactTime
)
{
if
(
now
>
start
+
maxCompactTime
)
{
j
=
maxMove
;
break
;
break
;
}
}
}
}
}
// TODO can most likely be simplified
// TODO can most likely be simplified
checkpoint
();
checkpoint
();
log
.
checkpoint
();
log
.
checkpoint
();
...
@@ -506,7 +513,7 @@ public class PageStore implements CacheWriter {
...
@@ -506,7 +513,7 @@ public class PageStore implements CacheWriter {
}
}
}
}
private
void
compact
(
int
full
)
{
private
int
getFirstFree
(
)
{
int
free
=
-
1
;
int
free
=
-
1
;
for
(
int
i
=
0
;
i
<
pageCount
;
i
++)
{
for
(
int
i
=
0
;
i
<
pageCount
;
i
++)
{
free
=
getFreeList
(
i
).
getFirstFree
();
free
=
getFreeList
(
i
).
getFirstFree
();
...
@@ -514,14 +521,17 @@ public class PageStore implements CacheWriter {
...
@@ -514,14 +521,17 @@ public class PageStore implements CacheWriter {
break
;
break
;
}
}
}
}
if
(
free
==
-
1
||
free
>=
full
)
{
return
free
;
return
;
}
private
boolean
compact
(
int
full
,
int
free
)
{
if
(
full
<
MIN_PAGE_COUNT
||
free
==
-
1
||
free
>=
full
||
!
isUsed
(
full
))
{
return
false
;
}
}
Page
f
=
(
Page
)
cache
.
get
(
free
);
Page
f
=
(
Page
)
cache
.
get
(
free
);
if
(
f
!=
null
)
{
if
(
f
!=
null
)
{
DbException
.
throwInternalError
(
"not free: "
+
f
);
DbException
.
throwInternalError
(
"not free: "
+
f
);
}
}
if
(
isUsed
(
full
))
{
Page
p
=
getPage
(
full
);
Page
p
=
getPage
(
full
);
if
(
p
!=
null
)
{
if
(
p
!=
null
)
{
trace
.
debug
(
"move "
+
p
.
getPos
()
+
" to "
+
free
);
trace
.
debug
(
"move "
+
p
.
getPos
()
+
" to "
+
free
);
...
@@ -533,7 +543,7 @@ public class PageStore implements CacheWriter {
...
@@ -533,7 +543,7 @@ public class PageStore implements CacheWriter {
}
else
{
}
else
{
freePage
(
full
);
freePage
(
full
);
}
}
}
return
true
;
}
}
/**
/**
...
@@ -565,10 +575,14 @@ public class PageStore implements CacheWriter {
...
@@ -565,10 +575,14 @@ public class PageStore implements CacheWriter {
break
;
break
;
case
Page
.
TYPE_DATA_LEAF
:
{
case
Page
.
TYPE_DATA_LEAF
:
{
int
indexId
=
data
.
readVarInt
();
int
indexId
=
data
.
readVarInt
();
Page
DataIndex
index
=
(
PageDataIndex
)
metaObjects
.
get
(
indexId
);
Page
Index
idx
=
metaObjects
.
get
(
indexId
);
if
(
i
nde
x
==
null
)
{
if
(
i
d
x
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
}
}
if
(!(
idx
instanceof
PageDataIndex
))
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"not a data index "
+
indexId
+
" "
+
idx
);
}
PageDataIndex
index
=
(
PageDataIndex
)
idx
;
if
(
statistics
!=
null
)
{
if
(
statistics
!=
null
)
{
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
}
...
@@ -577,10 +591,14 @@ public class PageStore implements CacheWriter {
...
@@ -577,10 +591,14 @@ public class PageStore implements CacheWriter {
}
}
case
Page
.
TYPE_DATA_NODE
:
{
case
Page
.
TYPE_DATA_NODE
:
{
int
indexId
=
data
.
readVarInt
();
int
indexId
=
data
.
readVarInt
();
Page
DataIndex
index
=
(
PageDataIndex
)
metaObjects
.
get
(
indexId
);
Page
Index
idx
=
metaObjects
.
get
(
indexId
);
if
(
i
nde
x
==
null
)
{
if
(
i
d
x
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
}
}
if
(!(
idx
instanceof
PageDataIndex
))
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"not a data index "
+
indexId
+
" "
+
idx
);
}
PageDataIndex
index
=
(
PageDataIndex
)
idx
;
if
(
statistics
!=
null
)
{
if
(
statistics
!=
null
)
{
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
}
...
@@ -596,10 +614,14 @@ public class PageStore implements CacheWriter {
...
@@ -596,10 +614,14 @@ public class PageStore implements CacheWriter {
}
}
case
Page
.
TYPE_BTREE_LEAF
:
{
case
Page
.
TYPE_BTREE_LEAF
:
{
int
indexId
=
data
.
readVarInt
();
int
indexId
=
data
.
readVarInt
();
Page
BtreeIndex
index
=
(
PageBtreeIndex
)
metaObjects
.
get
(
indexId
);
Page
Index
idx
=
metaObjects
.
get
(
indexId
);
if
(
i
nde
x
==
null
)
{
if
(
i
d
x
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
}
}
if
(!(
idx
instanceof
PageBtreeIndex
))
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"not a btree index "
+
indexId
+
" "
+
idx
);
}
PageBtreeIndex
index
=
(
PageBtreeIndex
)
idx
;
if
(
statistics
!=
null
)
{
if
(
statistics
!=
null
)
{
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
}
...
@@ -608,10 +630,14 @@ public class PageStore implements CacheWriter {
...
@@ -608,10 +630,14 @@ public class PageStore implements CacheWriter {
}
}
case
Page
.
TYPE_BTREE_NODE
:
{
case
Page
.
TYPE_BTREE_NODE
:
{
int
indexId
=
data
.
readVarInt
();
int
indexId
=
data
.
readVarInt
();
Page
BtreeIndex
index
=
(
PageBtreeIndex
)
metaObjects
.
get
(
indexId
);
Page
Index
idx
=
metaObjects
.
get
(
indexId
);
if
(
i
nde
x
==
null
)
{
if
(
i
d
x
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
}
}
if
(!(
idx
instanceof
PageBtreeIndex
))
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"not a btree index "
+
indexId
+
" "
+
idx
);
}
PageBtreeIndex
index
=
(
PageBtreeIndex
)
idx
;
if
(
statistics
!=
null
)
{
if
(
statistics
!=
null
)
{
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论