Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
a5587284
提交
a5587284
authored
6月 30, 2017
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
attempt to speed up parallel selects
by using reader-writer lock, reported issue #538
上级
e0c13513
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
47 行增加
和
18 行删除
+47
-18
TransactionStore.java
h2/src/main/org/h2/mvstore/db/TransactionStore.java
+47
-18
没有找到文件。
h2/src/main/org/h2/mvstore/db/TransactionStore.java
浏览文件 @
a5587284
...
...
@@ -12,7 +12,7 @@ import java.util.HashMap;
import
java.util.Iterator
;
import
java.util.List
;
import
java.util.Map.Entry
;
import
java.util.concurrent.locks.ReentrantReadWriteLock
;
import
org.h2.mvstore.Cursor
;
import
org.h2.mvstore.DataUtils
;
import
org.h2.mvstore.MVMap
;
...
...
@@ -50,6 +50,12 @@ public class TransactionStore {
*/
final
MVMap
<
Long
,
Object
[]>
undoLog
;
/**
* the reader/writer lock for the undo-log. Allows us to process multiple
* selects in parallel.
*/
final
ReentrantReadWriteLock
rwLock
=
new
ReentrantReadWriteLock
();
/**
* The map of maps.
*/
...
...
@@ -118,13 +124,16 @@ public class TransactionStore {
store
.
removeMap
(
temp
);
}
}
synchronized
(
undoLog
)
{
rwLock
.
writeLock
().
lock
();
try
{
if
(
undoLog
.
size
()
>
0
)
{
for
(
Long
key
:
undoLog
.
keySet
())
{
int
transactionId
=
getTransactionId
(
key
);
openTransactions
.
set
(
transactionId
);
}
}
}
finally
{
rwLock
.
writeLock
().
unlock
();
}
}
...
...
@@ -180,7 +189,8 @@ public class TransactionStore {
* @return the list of transactions (sorted by id)
*/
public
List
<
Transaction
>
getOpenTransactions
()
{
synchronized
(
undoLog
)
{
rwLock
.
readLock
().
lock
();
try
{
ArrayList
<
Transaction
>
list
=
New
.
arrayList
();
Long
key
=
undoLog
.
firstKey
();
while
(
key
!=
null
)
{
...
...
@@ -207,6 +217,8 @@ public class TransactionStore {
key
=
undoLog
.
ceilingKey
(
getOperationId
(
transactionId
+
1
,
0
));
}
return
list
;
}
finally
{
rwLock
.
readLock
().
unlock
();
}
}
...
...
@@ -269,7 +281,8 @@ public class TransactionStore {
Object
key
,
Object
oldValue
)
{
Long
undoKey
=
getOperationId
(
t
.
getId
(),
logId
);
Object
[]
log
=
new
Object
[]
{
mapId
,
key
,
oldValue
};
synchronized
(
undoLog
)
{
rwLock
.
writeLock
().
lock
();
try
{
if
(
logId
==
0
)
{
if
(
undoLog
.
containsKey
(
undoKey
))
{
throw
DataUtils
.
newIllegalStateException
(
...
...
@@ -280,6 +293,8 @@ public class TransactionStore {
}
}
undoLog
.
put
(
undoKey
,
log
);
}
finally
{
rwLock
.
writeLock
().
unlock
();
}
}
...
...
@@ -291,7 +306,8 @@ public class TransactionStore {
*/
public
void
logUndo
(
Transaction
t
,
long
logId
)
{
Long
undoKey
=
getOperationId
(
t
.
getId
(),
logId
);
synchronized
(
undoLog
)
{
rwLock
.
writeLock
().
lock
();
try
{
Object
[]
old
=
undoLog
.
remove
(
undoKey
);
if
(
old
==
null
)
{
throw
DataUtils
.
newIllegalStateException
(
...
...
@@ -299,6 +315,8 @@ public class TransactionStore {
"Transaction {0} was concurrently rolled back"
,
t
.
getId
());
}
}
finally
{
rwLock
.
writeLock
().
unlock
();
}
}
...
...
@@ -325,7 +343,8 @@ public class TransactionStore {
return
;
}
// TODO could synchronize on blocks (100 at a time or so)
synchronized
(
undoLog
)
{
rwLock
.
writeLock
().
lock
();
try
{
t
.
setStatus
(
Transaction
.
STATUS_COMMITTING
);
for
(
long
logId
=
0
;
logId
<
maxLogId
;
logId
++)
{
Long
undoKey
=
getOperationId
(
t
.
getId
(),
logId
);
...
...
@@ -364,6 +383,8 @@ public class TransactionStore {
}
undoLog
.
remove
(
undoKey
);
}
}
finally
{
rwLock
.
writeLock
().
unlock
();
}
endTransaction
(
t
);
}
...
...
@@ -482,7 +503,8 @@ public class TransactionStore {
*/
void
rollbackTo
(
Transaction
t
,
long
maxLogId
,
long
toLogId
)
{
// TODO could synchronize on blocks (100 at a time or so)
synchronized
(
undoLog
)
{
rwLock
.
writeLock
().
lock
();
try
{
for
(
long
logId
=
maxLogId
-
1
;
logId
>=
toLogId
;
logId
--)
{
Long
undoKey
=
getOperationId
(
t
.
getId
(),
logId
);
Object
[]
op
=
undoLog
.
get
(
undoKey
);
...
...
@@ -511,6 +533,8 @@ public class TransactionStore {
}
undoLog
.
remove
(
undoKey
);
}
}
finally
{
rwLock
.
writeLock
().
unlock
();
}
}
...
...
@@ -535,7 +559,8 @@ public class TransactionStore {
}
private
void
fetchNext
()
{
synchronized
(
undoLog
)
{
rwLock
.
writeLock
().
lock
();
try
{
while
(
logId
>=
toLogId
)
{
Long
undoKey
=
getOperationId
(
t
.
getId
(),
logId
);
Object
[]
op
=
undoLog
.
get
(
undoKey
);
...
...
@@ -564,6 +589,8 @@ public class TransactionStore {
return
;
}
}
}
finally
{
rwLock
.
writeLock
().
unlock
();
}
current
=
null
;
}
...
...
@@ -938,9 +965,12 @@ public class TransactionStore {
Cursor
<
K
,
VersionedValue
>
cursor
=
map
.
cursor
(
null
);
while
(
cursor
.
hasNext
())
{
VersionedValue
data
;
synchronized
(
transaction
.
store
.
undoLog
)
{
transaction
.
store
.
rwLock
.
readLock
().
lock
();
try
{
K
key
=
cursor
.
next
();
data
=
getValue
(
key
,
readLogId
,
cursor
.
getValue
());
}
finally
{
transaction
.
store
.
rwLock
.
readLock
().
unlock
();
}
if
(
data
!=
null
&&
data
.
value
!=
null
)
{
size
++;
...
...
@@ -1203,9 +1233,12 @@ public class TransactionStore {
}
private
VersionedValue
getValue
(
K
key
,
long
maxLog
)
{
synchronized
(
getUndoLog
())
{
transaction
.
store
.
rwLock
.
readLock
().
lock
();
try
{
VersionedValue
data
=
map
.
get
(
key
);
return
getValue
(
key
,
maxLog
,
data
);
}
finally
{
transaction
.
store
.
rwLock
.
readLock
().
unlock
();
}
}
...
...
@@ -1222,13 +1255,6 @@ public class TransactionStore {
* @return the value
*/
VersionedValue
getValue
(
K
key
,
long
maxLog
,
VersionedValue
data
)
{
if
(
MVStore
.
ASSERT
)
{
if
(!
Thread
.
holdsLock
(
getUndoLog
()))
{
throw
DataUtils
.
newIllegalStateException
(
DataUtils
.
ERROR_INTERNAL
,
"not synchronized on undoLog"
);
}
}
while
(
true
)
{
if
(
data
==
null
)
{
// doesn't exist or deleted by a committed transaction
...
...
@@ -1461,7 +1487,8 @@ public class TransactionStore {
private
void
fetchNext
()
{
while
(
cursor
.
hasNext
())
{
synchronized
(
getUndoLog
())
{
transaction
.
store
.
rwLock
.
readLock
().
lock
();
try
{
K
k
;
try
{
k
=
cursor
.
next
();
...
...
@@ -1494,6 +1521,8 @@ public class TransactionStore {
currentKey
=
key
;
return
;
}
}
finally
{
transaction
.
store
.
rwLock
.
readLock
().
unlock
();
}
}
current
=
null
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论