Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
26f915bd
提交
26f915bd
authored
7月 30, 2015
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix for issue #143, deadlock between two sessions hitting the same sequence on a column.
上级
ebf435d5
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
99 行增加
和
72 行删除
+99
-72
Database.java
h2/src/main/org/h2/engine/Database.java
+22
-18
Sequence.java
h2/src/main/org/h2/schema/Sequence.java
+26
-40
Column.java
h2/src/main/org/h2/table/Column.java
+1
-1
TestSequence.java
h2/src/test/org/h2/test/db/TestSequence.java
+50
-13
没有找到文件。
h2/src/main/org/h2/engine/Database.java
浏览文件 @
26f915bd
...
@@ -983,15 +983,17 @@ public class Database implements DataHandler {
...
@@ -983,15 +983,17 @@ public class Database implements DataHandler {
* @param session the session
* @param session the session
* @param obj the object to add
* @param obj the object to add
*/
*/
public
synchronized
void
addSchemaObject
(
Session
session
,
SchemaObject
obj
)
{
public
void
addSchemaObject
(
Session
session
,
SchemaObject
obj
)
{
int
id
=
obj
.
getId
();
int
id
=
obj
.
getId
();
if
(
id
>
0
&&
!
starting
)
{
if
(
id
>
0
&&
!
starting
)
{
checkWritingAllowed
();
checkWritingAllowed
();
}
}
lockMeta
(
session
);
lockMeta
(
session
);
synchronized
(
this
)
{
obj
.
getSchema
().
add
(
obj
);
obj
.
getSchema
().
add
(
obj
);
addMeta
(
session
,
obj
);
addMeta
(
session
,
obj
);
}
}
}
/**
/**
* Add an object to the database.
* Add an object to the database.
...
@@ -1791,7 +1793,7 @@ public class Database implements DataHandler {
...
@@ -1791,7 +1793,7 @@ public class Database implements DataHandler {
* @param session the session
* @param session the session
* @param obj the object to be removed
* @param obj the object to be removed
*/
*/
public
synchronized
void
removeSchemaObject
(
Session
session
,
public
void
removeSchemaObject
(
Session
session
,
SchemaObject
obj
)
{
SchemaObject
obj
)
{
int
type
=
obj
.
getType
();
int
type
=
obj
.
getType
();
if
(
type
==
DbObject
.
TABLE_OR_VIEW
)
{
if
(
type
==
DbObject
.
TABLE_OR_VIEW
)
{
...
@@ -1817,6 +1819,7 @@ public class Database implements DataHandler {
...
@@ -1817,6 +1819,7 @@ public class Database implements DataHandler {
}
}
checkWritingAllowed
();
checkWritingAllowed
();
lockMeta
(
session
);
lockMeta
(
session
);
synchronized
(
this
)
{
Comment
comment
=
findComment
(
obj
);
Comment
comment
=
findComment
(
obj
);
if
(
comment
!=
null
)
{
if
(
comment
!=
null
)
{
removeDatabaseObject
(
session
,
comment
);
removeDatabaseObject
(
session
,
comment
);
...
@@ -1834,6 +1837,7 @@ public class Database implements DataHandler {
...
@@ -1834,6 +1837,7 @@ public class Database implements DataHandler {
}
}
removeMeta
(
session
,
id
);
removeMeta
(
session
,
id
);
}
}
}
/**
/**
* Check if this database disk-based.
* Check if this database disk-based.
...
...
h2/src/main/org/h2/schema/Sequence.java
浏览文件 @
26f915bd
...
@@ -33,12 +33,8 @@ public class Sequence extends SchemaObjectBase {
...
@@ -33,12 +33,8 @@ public class Sequence extends SchemaObjectBase {
private
long
maxValue
;
private
long
maxValue
;
private
boolean
cycle
;
private
boolean
cycle
;
private
boolean
belongsToTable
;
private
boolean
belongsToTable
;
private
Object
flushSync
=
new
Object
();
/**
private
boolean
writeWithMargin
;
* The last valueWithMargin we flushed. We do a little dance with this to
* avoid an ABBA deadlock.
*/
private
long
lastFlushValueWithMargin
;
/**
/**
* Creates a new sequence for an auto-increment column.
* Creates a new sequence for an auto-increment column.
...
@@ -217,15 +213,16 @@ public class Sequence extends SchemaObjectBase {
...
@@ -217,15 +213,16 @@ public class Sequence extends SchemaObjectBase {
@Override
@Override
public
synchronized
String
getCreateSQL
()
{
public
synchronized
String
getCreateSQL
()
{
long
v
=
writeWithMargin
?
valueWithMargin
:
value
;
StringBuilder
buff
=
new
StringBuilder
(
"CREATE SEQUENCE "
);
StringBuilder
buff
=
new
StringBuilder
(
"CREATE SEQUENCE "
);
buff
.
append
(
getSQL
()).
append
(
" START WITH "
).
append
(
v
alue
);
buff
.
append
(
getSQL
()).
append
(
" START WITH "
).
append
(
v
);
if
(
increment
!=
1
)
{
if
(
increment
!=
1
)
{
buff
.
append
(
" INCREMENT BY "
).
append
(
increment
);
buff
.
append
(
" INCREMENT BY "
).
append
(
increment
);
}
}
if
(
minValue
!=
getDefaultMinValue
(
v
alue
,
increment
))
{
if
(
minValue
!=
getDefaultMinValue
(
v
,
increment
))
{
buff
.
append
(
" MINVALUE "
).
append
(
minValue
);
buff
.
append
(
" MINVALUE "
).
append
(
minValue
);
}
}
if
(
maxValue
!=
getDefaultMaxValue
(
v
alue
,
increment
))
{
if
(
maxValue
!=
getDefaultMaxValue
(
v
,
increment
))
{
buff
.
append
(
" MAXVALUE "
).
append
(
maxValue
);
buff
.
append
(
" MAXVALUE "
).
append
(
maxValue
);
}
}
if
(
cycle
)
{
if
(
cycle
)
{
...
@@ -248,13 +245,11 @@ public class Sequence extends SchemaObjectBase {
...
@@ -248,13 +245,11 @@ public class Sequence extends SchemaObjectBase {
*/
*/
public
long
getNext
(
Session
session
)
{
public
long
getNext
(
Session
session
)
{
boolean
needsFlush
=
false
;
boolean
needsFlush
=
false
;
long
retVal
;
long
result
;
long
flushValueWithMargin
=
-
1
;
synchronized
(
this
)
{
synchronized
(
this
)
{
if
((
increment
>
0
&&
value
>=
valueWithMargin
)
||
if
((
increment
>
0
&&
value
>=
valueWithMargin
)
||
(
increment
<
0
&&
value
<=
valueWithMargin
))
{
(
increment
<
0
&&
value
<=
valueWithMargin
))
{
valueWithMargin
+=
increment
*
cacheSize
;
valueWithMargin
+=
increment
*
cacheSize
;
flushValueWithMargin
=
valueWithMargin
;
needsFlush
=
true
;
needsFlush
=
true
;
}
}
if
((
increment
>
0
&&
value
>
maxValue
)
||
if
((
increment
>
0
&&
value
>
maxValue
)
||
...
@@ -262,19 +257,18 @@ public class Sequence extends SchemaObjectBase {
...
@@ -262,19 +257,18 @@ public class Sequence extends SchemaObjectBase {
if
(
cycle
)
{
if
(
cycle
)
{
value
=
increment
>
0
?
minValue
:
maxValue
;
value
=
increment
>
0
?
minValue
:
maxValue
;
valueWithMargin
=
value
+
(
increment
*
cacheSize
);
valueWithMargin
=
value
+
(
increment
*
cacheSize
);
flushValueWithMargin
=
valueWithMargin
;
needsFlush
=
true
;
needsFlush
=
true
;
}
else
{
}
else
{
throw
DbException
.
get
(
ErrorCode
.
SEQUENCE_EXHAUSTED
,
getName
());
throw
DbException
.
get
(
ErrorCode
.
SEQUENCE_EXHAUSTED
,
getName
());
}
}
}
}
re
tVal
=
value
;
re
sult
=
value
;
value
+=
increment
;
value
+=
increment
;
}
}
if
(
needsFlush
)
{
if
(
needsFlush
)
{
flush
(
session
,
flushValueWithMargin
);
flush
(
session
);
}
}
return
re
tVal
;
return
re
sult
;
}
}
/**
/**
...
@@ -283,7 +277,7 @@ public class Sequence extends SchemaObjectBase {
...
@@ -283,7 +277,7 @@ public class Sequence extends SchemaObjectBase {
public
void
flushWithoutMargin
()
{
public
void
flushWithoutMargin
()
{
if
(
valueWithMargin
!=
value
)
{
if
(
valueWithMargin
!=
value
)
{
valueWithMargin
=
value
;
valueWithMargin
=
value
;
flush
(
null
,
valueWithMargin
);
flush
(
null
);
}
}
}
}
...
@@ -291,47 +285,39 @@ public class Sequence extends SchemaObjectBase {
...
@@ -291,47 +285,39 @@ public class Sequence extends SchemaObjectBase {
* Flush the current value, including the margin, to disk.
* Flush the current value, including the margin, to disk.
*
*
* @param session the session
* @param session the session
* @param flushValueWithMargin whether to reserve more entries
*/
*/
public
void
flush
(
Session
session
,
long
flushValueWithMargin
)
{
public
void
flush
(
Session
session
)
{
if
(
isTemporary
())
{
return
;
}
if
(
session
==
null
||
!
database
.
isSysTableLockedBy
(
session
))
{
if
(
session
==
null
||
!
database
.
isSysTableLockedBy
(
session
))
{
// This session may not lock the sys table (except if it already has
// This session may not lock the sys table (except if it already has
// locked it) because it must be committed immediately, otherwise
// locked it) because it must be committed immediately, otherwise
// other threads can not access the sys table.
// other threads can not access the sys table.
Session
sysSession
=
database
.
getSystemSession
();
Session
sysSession
=
database
.
getSystemSession
();
synchronized
(
sysSession
)
{
synchronized
(
sysSession
)
{
flushInternal
(
sysSession
,
flushValueWithMargin
);
synchronized
(
flushSync
)
{
flushInternal
(
sysSession
);
}
sysSession
.
commit
(
false
);
sysSession
.
commit
(
false
);
}
}
}
else
{
}
else
{
synchronized
(
session
)
{
synchronized
(
session
)
{
flushInternal
(
session
,
flushValueWithMargin
);
synchronized
(
flushSync
)
{
flushInternal
(
session
);
}
}
}
}
}
}
}
private
void
flushInternal
(
Session
session
,
long
flushValueWithMargin
)
{
private
void
flushInternal
(
Session
session
)
{
final
boolean
metaWasLocked
=
database
.
lockMeta
(
session
);
final
boolean
metaWasLocked
=
database
.
lockMeta
(
session
);
synchronized
(
this
)
{
// just for this case, use the value with the margin
if
(
flushValueWithMargin
==
lastFlushValueWithMargin
)
{
if
(!
metaWasLocked
)
{
database
.
unlockMeta
(
session
);
}
return
;
}
}
// just for this case, use the value with the margin for the script
long
realValue
=
value
;
try
{
try
{
value
=
valueWithMargin
;
writeWithMargin
=
true
;
if
(!
isTemporary
())
{
database
.
updateMeta
(
session
,
this
);
database
.
updateMeta
(
session
,
this
);
}
}
finally
{
}
finally
{
value
=
realValue
;
writeWithMargin
=
false
;
}
synchronized
(
this
)
{
lastFlushValueWithMargin
=
flushValueWithMargin
;
}
}
if
(!
metaWasLocked
)
{
if
(!
metaWasLocked
)
{
database
.
unlockMeta
(
session
);
database
.
unlockMeta
(
session
);
...
...
h2/src/main/org/h2/table/Column.java
浏览文件 @
26f915bd
...
@@ -348,7 +348,7 @@ public class Column {
...
@@ -348,7 +348,7 @@ public class Column {
if
(
update
)
{
if
(
update
)
{
sequence
.
modify
(
now
+
inc
,
null
,
null
,
null
);
sequence
.
modify
(
now
+
inc
,
null
,
null
,
null
);
session
.
setLastIdentity
(
ValueLong
.
get
(
now
));
session
.
setLastIdentity
(
ValueLong
.
get
(
now
));
sequence
.
flush
(
session
,
0
);
sequence
.
flush
(
session
);
}
}
}
}
}
}
...
...
h2/src/test/org/h2/test/db/TestSequence.java
浏览文件 @
26f915bd
...
@@ -13,6 +13,8 @@ import java.sql.Statement;
...
@@ -13,6 +13,8 @@ import java.sql.Statement;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.Collections
;
import
java.util.Collections
;
import
java.util.List
;
import
java.util.List
;
import
org.h2.api.Trigger
;
import
org.h2.test.TestBase
;
import
org.h2.test.TestBase
;
import
org.h2.util.Task
;
import
org.h2.util.Task
;
...
@@ -33,7 +35,6 @@ public class TestSequence extends TestBase {
...
@@ -33,7 +35,6 @@ public class TestSequence extends TestBase {
@Override
@Override
public
void
test
()
throws
Exception
{
public
void
test
()
throws
Exception
{
testConcurrentCreate
();
testConcurrentCreate
();
;
if
(
true
)
return
;
testSchemaSearchPath
();
testSchemaSearchPath
();
testAlterSequenceColumn
();
testAlterSequenceColumn
();
testAlterSequence
();
testAlterSequence
();
...
@@ -49,24 +50,17 @@ public class TestSequence extends TestBase {
...
@@ -49,24 +50,17 @@ public class TestSequence extends TestBase {
}
}
private
void
testConcurrentCreate
()
throws
Exception
{
private
void
testConcurrentCreate
()
throws
Exception
{
while
(
true
)
try
{
testConcurrentCreate2
();
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
e
);
}
}
private
void
testConcurrentCreate2
()
throws
Exception
{
deleteDb
(
"sequence"
);
deleteDb
(
"sequence"
);
final
String
url
=
getURL
(
"sequence;MULTI_THREADED=1"
,
true
);
final
String
url
=
getURL
(
"sequence;MULTI_THREADED=1
;LOCK_TIMEOUT=2000
"
,
true
);
Connection
conn
=
getConnection
(
url
);
Connection
conn
=
getConnection
(
url
);
Task
[]
tasks
=
new
Task
[
2
];
Task
[]
tasks
=
new
Task
[
2
];
try
{
try
{
Statement
stat
=
conn
.
createStatement
();
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"create table dummy(id bigint primary key)"
);
stat
.
execute
(
"create table test(id bigint primary key)"
);
stat
.
execute
(
"create table test(id bigint primary key)"
);
stat
.
execute
(
"create sequence test_seq cache 2"
);
stat
.
execute
(
"create sequence test_seq cache 2"
);
for
(
int
i
=
0
;
i
<
tasks
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
tasks
.
length
;
i
++)
{
final
int
x
=
i
;
tasks
[
i
]
=
new
Task
()
{
tasks
[
i
]
=
new
Task
()
{
@Override
@Override
public
void
call
()
throws
Exception
{
public
void
call
()
throws
Exception
{
...
@@ -81,18 +75,30 @@ public class TestSequence extends TestBase {
...
@@ -81,18 +75,30 @@ public class TestSequence extends TestBase {
if
(
Math
.
random
()
<
0.01
)
{
if
(
Math
.
random
()
<
0.01
)
{
prep2
.
execute
();
prep2
.
execute
();
}
}
if
(
Math
.
random
()
<
0.01
)
{
createDropTrigger
(
conn
);
}
}
}
}
finally
{
}
finally
{
conn
.
close
();
conn
.
close
();
}
}
}
}
private
void
createDropTrigger
(
Connection
conn
)
throws
Exception
{
String
triggerName
=
"t_"
+
x
;
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"create trigger "
+
triggerName
+
" before insert on dummy call \""
+
TriggerTest
.
class
.
getName
()
+
"\""
);
stat
.
execute
(
"drop trigger "
+
triggerName
);
}
}.
execute
();
}.
execute
();
}
}
Thread
.
sleep
(
100
);
Thread
.
sleep
(
100
0
);
for
(
Task
t
:
tasks
)
{
for
(
Task
t
:
tasks
)
{
t
.
get
();
t
.
get
();
}
}
stat
.
execute
(
"shutdown immediately"
);
}
finally
{
}
finally
{
for
(
Task
t
:
tasks
)
{
for
(
Task
t
:
tasks
)
{
t
.
join
();
t
.
join
();
...
@@ -413,4 +419,35 @@ public class TestSequence extends TestBase {
...
@@ -413,4 +419,35 @@ public class TestSequence extends TestBase {
long
value
=
rs
.
getLong
(
1
);
long
value
=
rs
.
getLong
(
1
);
return
value
;
return
value
;
}
}
/**
* A test trigger.
*/
public
static
class
TriggerTest
implements
Trigger
{
@Override
public
void
init
(
Connection
conn
,
String
schemaName
,
String
triggerName
,
String
tableName
,
boolean
before
,
int
type
)
throws
SQLException
{
conn
.
createStatement
().
executeQuery
(
"call next value for test_seq"
);
}
@Override
public
void
fire
(
Connection
conn
,
Object
[]
oldRow
,
Object
[]
newRow
)
throws
SQLException
{
// ignore
}
@Override
public
void
close
()
throws
SQLException
{
// ignore
}
@Override
public
void
remove
()
throws
SQLException
{
// ignore
}
}
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论