Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
74827696
提交
74827696
authored
9月 07, 2010
作者:
christian.peter.io
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
New experimental feature "SHUTDOWN DEFRAG". This option optimizes the page layout so
that a full table scan is faster.
上级
d6c65c14
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
137 行增加
和
13 行删除
+137
-13
changelog.html
h2/src/docsrc/html/changelog.html
+3
-1
Parser.java
h2/src/main/org/h2/command/Parser.java
+2
-0
TransactionCommand.java
h2/src/main/org/h2/command/dml/TransactionCommand.java
+9
-3
Database.java
h2/src/main/org/h2/engine/Database.java
+4
-4
PageStore.java
h2/src/main/org/h2/store/PageStore.java
+119
-5
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
74827696
...
...
@@ -18,7 +18,9 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
When adding a comment to a column that has a check constraint,
<ul><li>
New experimental feature "SHUTDOWN DEFRAG". This option optimizes the page layout so
that a full table scan is faster.
</li><li>
When adding a comment to a column that has a check constraint,
the database couldn't be re-opened.
</li><li>
New system property h2.lobClientMaxSizeMemory to set the maximum size
of a LOB object to keep in memory on the client side when using the server mode.
...
...
h2/src/main/org/h2/command/Parser.java
浏览文件 @
74827696
...
...
@@ -520,6 +520,8 @@ public class Parser {
type
=
TransactionCommand
.
SHUTDOWN_IMMEDIATELY
;
}
else
if
(
readIf
(
"COMPACT"
))
{
type
=
TransactionCommand
.
SHUTDOWN_COMPACT
;
}
else
if
(
readIf
(
"DEFRAG"
))
{
type
=
TransactionCommand
.
SHUTDOWN_DEFRAG
;
}
else
{
readIf
(
"SCRIPT"
);
}
...
...
h2/src/main/org/h2/command/dml/TransactionCommand.java
浏览文件 @
74827696
...
...
@@ -92,6 +92,11 @@ public class TransactionCommand extends Prepared {
*/
public
static
final
int
BEGIN
=
15
;
/**
* The type of a SHUTDOWN DEFRAG statement.
*/
public
static
final
int
SHUTDOWN_DEFRAG
=
16
;
private
int
type
;
private
String
savepointName
;
private
String
transactionName
;
...
...
@@ -152,11 +157,12 @@ public class TransactionCommand extends Prepared {
session
.
getDatabase
().
shutdownImmediately
();
break
;
case
SHUTDOWN:
case
SHUTDOWN_COMPACT:
{
case
SHUTDOWN_COMPACT:
case
SHUTDOWN_DEFRAG:
{
session
.
getUser
().
checkAdmin
();
session
.
commit
(
false
);
if
(
type
==
SHUTDOWN_COMPACT
)
{
session
.
getDatabase
().
setCompact
Fully
(
tru
e
);
if
(
type
==
SHUTDOWN_COMPACT
||
type
==
SHUTDOWN_DEFRAG
)
{
session
.
getDatabase
().
setCompact
Mode
(
typ
e
);
}
// close the database, but don't update the persistent setting
session
.
getDatabase
().
setCloseDelay
(
0
);
...
...
h2/src/main/org/h2/engine/Database.java
浏览文件 @
74827696
...
...
@@ -161,7 +161,7 @@ public class Database implements DataHandler {
private
volatile
boolean
checkpointRunning
;
private
final
Object
reconnectSync
=
new
Object
();
private
int
cacheSize
;
private
boolean
compactFully
;
private
int
compactMode
=
-
1
;
private
SourceCompiler
compiler
;
private
volatile
boolean
metaTablesInitialized
;
private
boolean
flushOnEachCommit
;
...
...
@@ -1124,7 +1124,7 @@ public class Database implements DataHandler {
try
{
pageStore
.
checkpoint
();
if
(!
readOnly
)
{
pageStore
.
compact
(
compact
Fully
);
pageStore
.
compact
(
compact
Mode
);
}
}
catch
(
DbException
e
)
{
if
(
e
.
getErrorCode
()
!=
ErrorCode
.
DATABASE_IS_CLOSED
)
{
...
...
@@ -2233,8 +2233,8 @@ public class Database implements DataHandler {
this
.
readOnly
=
readOnly
;
}
public
void
setCompact
Fully
(
boolean
compactFully
)
{
this
.
compact
Fully
=
compactFully
;
public
void
setCompact
Mode
(
int
compactMode
)
{
this
.
compact
Mode
=
compactMode
;
}
public
SourceCompiler
getCompiler
()
{
...
...
h2/src/main/org/h2/store/PageStore.java
浏览文件 @
74827696
...
...
@@ -12,8 +12,10 @@ import java.util.ArrayList;
import
java.util.BitSet
;
import
java.util.Collections
;
import
java.util.HashMap
;
import
java.util.HashSet
;
import
java.util.zip.CRC32
;
import
org.h2.command.ddl.CreateTableData
;
import
org.h2.command.dml.TransactionCommand
;
import
org.h2.constant.ErrorCode
;
import
org.h2.constant.SysProperties
;
import
org.h2.engine.Constants
;
...
...
@@ -34,6 +36,7 @@ import org.h2.index.PageDelegateIndex;
import
org.h2.index.PageIndex
;
import
org.h2.message.DbException
;
import
org.h2.message.Trace
;
import
org.h2.result.ResultInterface
;
import
org.h2.result.Row
;
import
org.h2.schema.Schema
;
import
org.h2.table.Column
;
...
...
@@ -171,6 +174,10 @@ public class PageStore implements CacheWriter {
private
BitSet
freed
=
new
BitSet
();
private
ArrayList
<
PageFreeList
>
freeLists
=
New
.
arrayList
();
private
boolean
recordPageReads
;
private
ArrayList
<
Integer
>
recordedPagesList
;
private
HashSet
<
Integer
>
recordedPagesSet
;
/**
* The change count is something like a "micro-transaction-id".
* It is used to ensure that changed pages are not written to the file
...
...
@@ -430,9 +437,10 @@ public class PageStore implements CacheWriter {
/**
* Shrink the file so there are no empty pages at the end.
*
* @param fully if the database should be fully compressed
* @param compactMode != -1 if no compacting should happen, otherwise
* TransactionCommand.SHUTDOWN_COMPACT or TransactionCommand.SHUTDOWN_DEFRAG
*/
public
void
compact
(
boolean
fully
)
{
public
void
compact
(
int
compactMode
)
{
if
(!
SysProperties
.
PAGE_STORE_TRIM
)
{
return
;
}
...
...
@@ -459,13 +467,17 @@ public class PageStore implements CacheWriter {
recoveryRunning
=
false
;
}
long
start
=
System
.
currentTimeMillis
();
boolean
isCompactFully
=
compactMode
==
TransactionCommand
.
SHUTDOWN_COMPACT
;
boolean
isDefrag
=
compactMode
==
TransactionCommand
.
SHUTDOWN_DEFRAG
;
int
maxCompactTime
=
SysProperties
.
MAX_COMPACT_TIME
;
int
maxMove
=
SysProperties
.
MAX_COMPACT_COUNT
;
if
(
fully
)
{
if
(
isCompactFully
||
isDefrag
)
{
maxCompactTime
=
Integer
.
MAX_VALUE
;
maxMove
=
Integer
.
MAX_VALUE
;
}
int
blockSize
=
f
ully
?
COMPACT_BLOCK_SIZE
:
1
;
int
blockSize
=
isCompactF
ully
?
COMPACT_BLOCK_SIZE
:
1
;
for
(
int
x
=
lastUsed
,
j
=
0
;
x
>
MIN_PAGE_COUNT
&&
j
<
maxMove
;
x
-=
blockSize
)
{
for
(
int
full
=
x
-
blockSize
+
1
;
full
<=
x
;
full
++)
{
if
(
full
>
MIN_PAGE_COUNT
)
{
...
...
@@ -487,6 +499,72 @@ public class PageStore implements CacheWriter {
}
}
}
if
(
isDefrag
)
{
writeBack
();
cache
.
clear
();
ArrayList
<
Table
>
tables
=
database
.
getAllTablesAndViews
(
false
);
recordedPagesList
=
New
.
arrayList
();
recordedPagesSet
=
New
.
hashSet
();
recordPageReads
=
true
;
for
(
int
i
=
0
;
i
<
tables
.
size
();
i
++)
{
Table
table
=
tables
.
get
(
i
);
Column
[]
columns
=
table
.
getColumns
();
String
columnNames
=
""
;
for
(
Column
column
:
columns
)
{
if
(
column
.
getType
()
!=
Value
.
BLOB
)
{
if
(!
columnNames
.
equals
(
""
))
{
columnNames
+=
","
;
}
columnNames
+=
column
.
getName
();
}
}
org
.
h2
.
command
.
Prepared
pref
=
database
.
getSystemSession
().
prepare
(
"select "
+
columnNames
+
" from "
+
table
.
getName
());
ResultInterface
ri
=
pref
.
query
(
Integer
.
MAX_VALUE
);
ri
.
close
();
}
recordPageReads
=
false
;
int
currentSeqPosInDb
=
MIN_PAGE_COUNT
;
for
(
int
i
=
0
;
i
<
recordedPagesList
.
size
();
i
++)
{
writeBack
();
cache
.
clear
();
int
free
=
getFirstFree
();
int
a
=
currentSeqPosInDb
;
int
b
=
recordedPagesList
.
get
(
i
);
if
(
a
==
b
)
{
continue
;
}
boolean
swapped
=
swap
(
a
,
b
,
free
);
if
(!
swapped
)
{
DbException
.
throwInternalError
(
"swapping not possible: "
+
a
+
" with "
+
b
+
" via "
+
free
);
}
int
index
=
recordedPagesList
.
indexOf
(
a
);
if
(
index
!=
-
1
)
{
recordedPagesList
.
set
(
index
,
b
);
}
recordedPagesList
.
set
(
i
,
a
);
// Find next PageDataLeaf
while
(
true
)
{
currentSeqPosInDb
++;
if
(
currentSeqPosInDb
>=
pageCount
)
{
currentSeqPosInDb
=
-
1
;
}
Page
currentPage
=
getPage
(
currentSeqPosInDb
);
if
(
currentPage
==
null
)
{
continue
;
}
if
(
currentPage
instanceof
PageDataLeaf
)
{
break
;
}
}
}
recordedPagesList
=
null
;
recordedPagesSet
=
null
;
}
// TODO can most likely be simplified
checkpoint
();
log
.
checkpoint
();
...
...
@@ -538,6 +616,37 @@ public class PageStore implements CacheWriter {
return
free
;
}
private
boolean
swap
(
int
a
,
int
b
,
int
free
)
{
if
(
a
<
MIN_PAGE_COUNT
||
b
<
MIN_PAGE_COUNT
||
!
isUsed
(
a
)
||
!
isUsed
(
b
))
{
return
false
;
}
Page
f
=
(
Page
)
cache
.
get
(
free
);
if
(
f
!=
null
)
{
DbException
.
throwInternalError
(
"not free: "
+
f
);
}
Page
pageA
=
getPage
(
a
);
Page
pageB
=
getPage
(
b
);
if
(
pageA
==
null
)
{
freePage
(
a
);
}
else
if
(
pageB
==
null
)
{
freePage
(
b
);
}
else
{
trace
.
debug
(
"swap "
+
a
+
" with "
+
b
+
" via "
+
free
);
try
{
pageA
.
moveTo
(
systemSession
,
free
);
freePage
(
a
);
pageB
.
moveTo
(
systemSession
,
a
);
freePage
(
b
);
f
=
getPage
(
free
);
f
.
moveTo
(
systemSession
,
b
);
freePage
(
free
);
}
finally
{
changeCount
++;
}
}
return
true
;
}
private
boolean
compact
(
int
full
,
int
free
)
{
if
(
full
<
MIN_PAGE_COUNT
||
free
==
-
1
||
free
>=
full
||
!
isUsed
(
full
))
{
return
false
;
...
...
@@ -572,6 +681,7 @@ public class PageStore implements CacheWriter {
if
(
p
!=
null
)
{
return
p
;
}
Data
data
=
createData
();
readPage
(
pageId
,
data
);
int
type
=
data
.
readByte
();
...
...
@@ -601,6 +711,10 @@ public class PageStore implements CacheWriter {
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
p
=
PageDataLeaf
.
read
(
index
,
data
,
pageId
);
if
(
recordPageReads
&&
pageId
>=
MIN_PAGE_COUNT
&&
!
recordedPagesSet
.
contains
(
pageId
))
{
recordedPagesList
.
add
(
pageId
);
recordedPagesSet
.
add
(
pageId
);
}
break
;
}
case
Page
.
TYPE_DATA_NODE
:
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论