Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d6ad398c
Unverified
提交
d6ad398c
authored
4月 14, 2018
作者:
Andrei Tokar
提交者:
GitHub
4月 14, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1058 from h2database/txcommit-atomic
Txcommit atomic
上级
3c94d6cc
0a958dd0
全部展开
显示空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
465 行增加
和
205 行删除
+465
-205
Database.java
h2/src/main/org/h2/engine/Database.java
+5
-0
Session.java
h2/src/main/org/h2/engine/Session.java
+89
-49
MVStore.java
h2/src/main/org/h2/mvstore/MVStore.java
+5
-5
MVTableEngine.java
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
+3
-3
Transaction.java
h2/src/main/org/h2/mvstore/tx/Transaction.java
+32
-11
TransactionMap.java
h2/src/main/org/h2/mvstore/tx/TransactionMap.java
+1
-1
TransactionStore.java
h2/src/main/org/h2/mvstore/tx/TransactionStore.java
+261
-104
VersionedBitSet.java
h2/src/main/org/h2/mvstore/tx/VersionedBitSet.java
+32
-0
VersionedValue.java
h2/src/main/org/h2/mvstore/tx/VersionedValue.java
+1
-1
Table.java
h2/src/main/org/h2/table/Table.java
+5
-1
TestMVStoreTool.java
h2/src/test/org/h2/test/store/TestMVStoreTool.java
+1
-1
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+30
-29
没有找到文件。
h2/src/main/org/h2/engine/Database.java
浏览文件 @
d6ad398c
...
...
@@ -737,6 +737,9 @@ public class Database implements DataHandler {
systemUser
.
setAdmin
(
true
);
systemSession
=
new
Session
(
this
,
systemUser
,
++
nextSessionId
);
lobSession
=
new
Session
(
this
,
systemUser
,
++
nextSessionId
);
if
(
mvStore
!=
null
)
{
mvStore
.
getTransactionStore
().
init
(
systemSession
);
}
CreateTableData
data
=
new
CreateTableData
();
ArrayList
<
Column
>
cols
=
data
.
columns
;
Column
columnId
=
new
Column
(
"ID"
,
Value
.
INT
);
...
...
@@ -762,6 +765,7 @@ public class Database implements DataHandler {
metaIdIndex
=
meta
.
addIndex
(
systemSession
,
"SYS_ID"
,
0
,
pkCols
,
IndexType
.
createPrimaryKey
(
false
,
false
),
true
,
null
);
systemSession
.
commit
(
true
);
objectIds
.
set
(
0
);
starting
=
true
;
Cursor
cursor
=
metaIdIndex
.
find
(
systemSession
,
null
,
null
);
...
...
@@ -777,6 +781,7 @@ public class Database implements DataHandler {
rec
.
execute
(
this
,
systemSession
,
eventListener
);
}
}
systemSession
.
commit
(
true
);
if
(
mvStore
!=
null
)
{
mvStore
.
initTransactions
();
mvStore
.
removeTemporaryMaps
(
objectIds
);
...
...
h2/src/main/org/h2/engine/Session.java
浏览文件 @
d6ad398c
...
...
@@ -30,10 +30,12 @@ import org.h2.jdbc.JdbcConnection;
import
org.h2.message.DbException
;
import
org.h2.message.Trace
;
import
org.h2.message.TraceSystem
;
import
org.h2.mvstore.MVMap
;
import
org.h2.mvstore.db.MVTable
;
import
org.h2.mvstore.db.MVTableEngine
;
import
org.h2.mvstore.tx.TransactionStore
.Change
;
import
org.h2.mvstore.tx.TransactionStore
;
import
org.h2.mvstore.tx.Transaction
;
import
org.h2.mvstore.tx.VersionedValue
;
import
org.h2.result.ResultInterface
;
import
org.h2.result.Row
;
import
org.h2.result.SortOrder
;
...
...
@@ -59,7 +61,7 @@ import org.h2.value.ValueString;
* mode, this object resides on the server side and communicates with a
* SessionRemote object on the client side.
*/
public
class
Session
extends
SessionWithState
{
public
class
Session
extends
SessionWithState
implements
TransactionStore
.
RollbackListener
{
/**
* This special log position means that the log entry has been written.
...
...
@@ -649,6 +651,7 @@ public class Session extends SessionWithState {
currentTransactionName
=
null
;
transactionStart
=
0
;
if
(
transaction
!=
null
)
{
try
{
// increment the data mod count, so that other sessions
// see the changes
// TODO should not rely on locking
...
...
@@ -660,9 +663,10 @@ public class Session extends SessionWithState {
}
}
transaction
.
commit
();
}
finally
{
transaction
=
null
;
}
if
(
containsUncommitted
())
{
}
else
if
(
containsUncommitted
())
{
// need to commit even if rollback is not possible
// (create/drop table and so on)
database
.
commit
(
this
);
...
...
@@ -768,18 +772,9 @@ public class Session extends SessionWithState {
checkCommitRollback
();
currentTransactionName
=
null
;
transactionStart
=
0
;
boolean
needCommit
=
false
;
if
(
undoLog
.
size
()
>
0
)
{
rollbackTo
(
null
,
false
);
needCommit
=
true
;
}
if
(
transaction
!=
null
)
{
boolean
needCommit
=
undoLog
.
size
()
>
0
||
transaction
!=
null
;
if
(
needCommit
)
{
rollbackTo
(
null
,
false
);
needCommit
=
true
;
// rollback stored the undo operations in the transaction
// committing will end the transaction
transaction
.
commit
();
transaction
=
null
;
}
if
(!
locks
.
isEmpty
()
||
needCommit
)
{
database
.
commit
(
this
);
...
...
@@ -806,29 +801,11 @@ public class Session extends SessionWithState {
undoLog
.
removeLast
(
trimToSize
);
}
if
(
transaction
!=
null
)
{
long
savepointId
=
savepoint
==
null
?
0
:
savepoint
.
transactionSavepoint
;
HashMap
<
String
,
MVTable
>
tableMap
=
database
.
getMvStore
().
getTables
();
Iterator
<
Change
>
it
=
transaction
.
getChanges
(
savepointId
);
while
(
it
.
hasNext
())
{
Change
c
=
it
.
next
();
MVTable
t
=
tableMap
.
get
(
c
.
mapName
);
if
(
t
!=
null
)
{
long
key
=
((
ValueLong
)
c
.
key
).
getLong
();
ValueArray
value
=
(
ValueArray
)
c
.
value
;
short
op
;
Row
row
;
if
(
value
==
null
)
{
op
=
UndoLogRecord
.
INSERT
;
row
=
t
.
getRow
(
this
,
key
);
if
(
savepoint
==
null
)
{
transaction
.
rollback
();
transaction
=
null
;
}
else
{
op
=
UndoLogRecord
.
DELETE
;
row
=
createRow
(
value
.
getList
(),
Row
.
MEMORY_CALCULATE
);
}
row
.
setKey
(
key
);
UndoLogRecord
log
=
new
UndoLogRecord
(
t
,
op
,
row
);
log
.
undo
(
this
);
}
transaction
.
rollbackToSavepoint
(
savepoint
.
transactionSavepoint
);
}
}
if
(
savepoints
!=
null
)
{
...
...
@@ -841,6 +818,13 @@ public class Session extends SessionWithState {
}
}
}
// Because cache may have captured query result (in Query.lastResult),
// which is based on data from uncommitted transaction.,
// It is not valid after rollback, therefore cache has to be cleared.
if
(
queryCache
!=
null
)
{
queryCache
.
clear
();
}
}
@Override
...
...
@@ -1112,7 +1096,7 @@ public class Session extends SessionWithState {
*/
public
boolean
containsUncommitted
()
{
if
(
database
.
getMvStore
()
!=
null
)
{
return
transaction
!=
null
;
return
transaction
!=
null
&&
transaction
.
hasChanges
()
;
}
return
firstUncommittedLog
!=
Session
.
LOG_WRITTEN
;
}
...
...
@@ -1688,7 +1672,7 @@ public class Session extends SessionWithState {
database
.
shutdownImmediately
();
throw
DbException
.
get
(
ErrorCode
.
DATABASE_IS_CLOSED
);
}
transaction
=
store
.
getTransactionStore
().
begin
();
transaction
=
store
.
getTransactionStore
().
begin
(
this
);
}
startStatement
=
-
1
;
}
...
...
@@ -1768,6 +1752,62 @@ public class Session extends SessionWithState {
tablesToAnalyze
.
add
(
table
);
}
@Override
public
void
onRollback
(
MVMap
<
Object
,
VersionedValue
>
map
,
Object
key
,
VersionedValue
existingValue
,
VersionedValue
restoredValue
)
{
// Here we are relying on the fact that map which backs table's primary index
// has the same name as the table itself
MVTableEngine
.
Store
store
=
database
.
getMvStore
();
if
(
store
!=
null
)
{
MVTable
table
=
store
.
getTable
(
map
.
getName
());
if
(
table
!=
null
)
{
long
recKey
=
((
ValueLong
)
key
).
getLong
();
Row
oldRow
=
getRowFromVersionedValue
(
table
,
recKey
,
existingValue
);
Row
newRow
=
getRowFromVersionedValue
(
table
,
recKey
,
restoredValue
);
table
.
fireAfterRow
(
this
,
oldRow
,
newRow
,
true
);
if
(
table
.
getContainsLargeObject
())
{
if
(
oldRow
!=
null
)
{
for
(
int
i
=
0
,
len
=
oldRow
.
getColumnCount
();
i
<
len
;
i
++)
{
Value
v
=
oldRow
.
getValue
(
i
);
if
(
v
.
isLinkedToTable
())
{
removeAtCommit
(
v
);
}
}
}
if
(
newRow
!=
null
)
{
for
(
int
i
=
0
,
len
=
newRow
.
getColumnCount
();
i
<
len
;
i
++)
{
Value
v
=
newRow
.
getValue
(
i
);
if
(
v
.
isLinkedToTable
())
{
removeAtCommitStop
(
v
);
}
}
}
}
}
}
}
private
static
Row
getRowFromVersionedValue
(
MVTable
table
,
long
recKey
,
VersionedValue
versionedValue
)
{
Object
value
=
versionedValue
==
null
?
null
:
versionedValue
.
value
;
if
(
value
==
null
)
{
return
null
;
}
Row
result
;
if
(
value
instanceof
Row
)
{
result
=
(
Row
)
value
;
assert
result
.
getKey
()
==
recKey
:
result
.
getKey
()
+
" != "
+
recKey
;
}
else
{
ValueArray
array
=
(
ValueArray
)
value
;
result
=
table
.
createRow
(
array
.
getList
(),
0
);
result
.
setKey
(
recKey
);
}
return
result
;
}
/**
* Represents a savepoint (a position in a transaction to where one can roll
* back to).
...
...
h2/src/main/org/h2/mvstore/MVStore.java
浏览文件 @
d6ad398c
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
浏览文件 @
d6ad398c
...
...
@@ -162,7 +162,7 @@ public class MVTableEngine implements TableEngine {
this
.
transactionStore
=
new
TransactionStore
(
store
,
new
ValueDataType
(
db
.
getCompareMode
(),
db
,
null
));
transactionStore
.
init
();
//
transactionStore.init();
}
catch
(
IllegalStateException
e
)
{
throw
convertIllegalStateException
(
e
);
}
...
...
@@ -206,8 +206,8 @@ public class MVTableEngine implements TableEngine {
return
transactionStore
;
}
public
HashMap
<
String
,
MVTable
>
getTables
(
)
{
return
new
HashMap
<>(
tableMap
);
public
MVTable
getTable
(
String
tableName
)
{
return
tableMap
.
get
(
tableName
);
}
/**
...
...
h2/src/main/org/h2/mvstore/tx/Transaction.java
浏览文件 @
d6ad398c
...
...
@@ -81,13 +81,24 @@ public class Transaction {
*/
final
TransactionStore
store
;
/**
* Listener for this transaction's rollback changes.
*/
final
TransactionStore
.
RollbackListener
listener
;
/**
* The transaction id.
* More appropriate name for this field would be "slotId"
*/
final
int
transactionId
;
/**
* This is really a transaction identity, because it's not re-used.
*/
public
final
long
sequenceNum
;
/*
* Transation state is an atomic composite field:
* Transa
c
tion state is an atomic composite field:
* bit 45 : flag whether transaction had rollback(s)
* bits 44-41 : status
* bits 40 : overflow control bit, 1 indicates overflow
...
...
@@ -99,12 +110,16 @@ public class Transaction {
private
String
name
;
Transaction
(
TransactionStore
store
,
int
transactionId
,
int
status
,
String
name
,
long
logId
)
{
boolean
wasStored
;
Transaction
(
TransactionStore
store
,
int
transactionId
,
long
sequenceNum
,
int
status
,
String
name
,
long
logId
,
TransactionStore
.
RollbackListener
listener
)
{
this
.
store
=
store
;
this
.
transactionId
=
transactionId
;
this
.
sequenceNum
=
sequenceNum
;
this
.
statusAndLogId
=
new
AtomicLong
(
composeState
(
status
,
logId
,
false
));
this
.
name
=
name
;
this
.
listener
=
listener
;
}
public
int
getId
()
{
...
...
@@ -168,6 +183,10 @@ public class Transaction {
}
}
public
boolean
hasChanges
()
{
return
hasChanges
(
statusAndLogId
.
get
());
}
public
void
setName
(
String
name
)
{
checkNotClosed
();
this
.
name
=
name
;
...
...
@@ -289,10 +308,12 @@ public class Transaction {
* Commit the transaction. Afterwards, this transaction is closed.
*/
public
void
commit
()
{
assert
store
.
openTransactions
.
get
().
get
(
transactionId
);
long
state
=
setStatus
(
STATUS_COMMITTING
);
long
logId
=
Transaction
.
getLogId
(
state
);
int
oldStatus
=
Transaction
.
getStatus
(
state
);
store
.
commit
(
this
,
logId
,
oldStatus
);
boolean
hasChanges
=
hasChanges
(
state
);
store
.
commit
(
this
,
logId
,
hasChanges
);
}
/**
...
...
@@ -330,7 +351,7 @@ public class Transaction {
store
.
rollbackTo
(
this
,
logId
,
0
);
}
}
finally
{
store
.
endTransaction
(
this
,
STATUS_ROLLED_BACK
);
store
.
endTransaction
(
this
,
true
);
}
}
...
...
@@ -373,7 +394,7 @@ public class Transaction {
@Override
public
String
toString
()
{
long
state
=
statusAndLogId
.
get
();
return
transactionId
+
"
"
+
STATUS_NAMES
[
getStatus
(
state
)]
+
" "
+
getLogId
(
state
);
return
transactionId
+
"
("
+
sequenceNum
+
") "
+
STATUS_NAMES
[
getStatus
(
state
)]
+
" "
+
getLogId
(
state
);
}
...
...
h2/src/main/org/h2/mvstore/tx/TransactionMap.java
浏览文件 @
d6ad398c
h2/src/main/org/h2/mvstore/tx/TransactionStore.java
浏览文件 @
d6ad398c
差异被折叠。
点击展开。
h2/src/main/org/h2/mvstore/tx/VersionedBitSet.java
0 → 100644
浏览文件 @
d6ad398c
/*
* Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
mvstore
.
tx
;
import
java.util.BitSet
;
/**
* Class VersionedBitSet extends standard BitSet to add a version field.
* This will allow bit set and version to be changed atomically.
*/
final
class
VersionedBitSet
extends
BitSet
{
private
long
version
;
public
VersionedBitSet
()
{}
public
long
getVersion
()
{
return
version
;
}
public
void
setVersion
(
long
version
)
{
this
.
version
=
version
;
}
@Override
public
VersionedBitSet
clone
()
{
return
(
VersionedBitSet
)
super
.
clone
();
}
}
h2/src/main/org/h2/mvstore/tx/VersionedValue.java
浏览文件 @
d6ad398c
...
...
@@ -24,7 +24,7 @@ public class VersionedValue {
/**
* The value.
*/
final
Object
value
;
public
final
Object
value
;
VersionedValue
(
long
operationId
,
Object
value
)
{
this
.
operationId
=
operationId
;
...
...
h2/src/main/org/h2/table/Table.java
浏览文件 @
d6ad398c
...
...
@@ -621,8 +621,12 @@ public abstract class Table extends SchemaObjectBase {
}
}
public
Row
createRow
(
Value
[]
data
,
int
memory
)
{
return
database
.
createRow
(
data
,
memory
);
}
public
Row
getTemplateRow
()
{
return
database
.
createRow
(
new
Value
[
columns
.
length
],
Row
.
MEMORY_CALCULATE
);
return
createRow
(
new
Value
[
columns
.
length
],
Row
.
MEMORY_CALCULATE
);
}
/**
...
...
h2/src/test/org/h2/test/store/TestMVStoreTool.java
浏览文件 @
d6ad398c
...
...
@@ -107,7 +107,7 @@ public class TestMVStoreTool extends TestBase {
assertEquals
(
size2
,
FileUtils
.
size
(
fileNameNew
));
MVStoreTool
.
compact
(
fileNameCompressed
,
true
);
assertEquals
(
size3
,
FileUtils
.
size
(
fileNameCompressed
));
trace
(
"Recompacted in "
+
(
System
.
currentTimeMillis
()
-
start
)
+
" ms."
);
trace
(
"Re
-
compacted in "
+
(
System
.
currentTimeMillis
()
-
start
)
+
" ms."
);
start
=
System
.
currentTimeMillis
();
MVStore
s1
=
new
MVStore
.
Builder
().
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
d6ad398c
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论