Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
50b5f52a
提交
50b5f52a
authored
10月 27, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Less heap memory is needed when multiple databases are open at the same time.
上级
53e6320d
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
29 行增加
和
22 行删除
+29
-22
Command.java
h2/src/main/org/h2/command/Command.java
+3
-2
Database.java
h2/src/main/org/h2/engine/Database.java
+3
-20
MemoryUtils.java
h2/src/main/org/h2/util/MemoryUtils.java
+20
-0
TestOutOfMemory.java
h2/src/test/org/h2/test/db/TestOutOfMemory.java
+3
-0
没有找到文件。
h2/src/main/org/h2/command/Command.java
浏览文件 @
50b5f52a
...
...
@@ -17,6 +17,7 @@ import org.h2.message.Trace;
import
org.h2.message.TraceObject
;
import
org.h2.result.LocalResult
;
import
org.h2.result.ResultInterface
;
import
org.h2.util.MemoryUtils
;
import
org.h2.util.ObjectArray
;
/**
...
...
@@ -193,7 +194,7 @@ public abstract class Command implements CommandInterface {
public
int
executeUpdate
()
throws
SQLException
{
long
start
=
startTime
=
System
.
currentTimeMillis
();
Database
database
=
session
.
getDatabase
();
database
.
allocateReserveMemory
();
MemoryUtils
.
allocateReserveMemory
();
Object
sync
=
database
.
isMultiThreaded
()
?
(
Object
)
session
:
(
Object
)
database
;
session
.
waitIfExclusiveModeEnabled
();
synchronized
(
sync
)
{
...
...
@@ -205,7 +206,7 @@ public abstract class Command implements CommandInterface {
try
{
return
update
();
}
catch
(
OutOfMemoryError
e
)
{
database
.
freeReserveMemory
();
MemoryUtils
.
freeReserveMemory
();
throw
Message
.
convert
(
e
);
}
catch
(
SQLException
e
)
{
if
(
e
.
getErrorCode
()
==
ErrorCode
.
CONCURRENT_UPDATE_1
)
{
...
...
h2/src/main/org/h2/engine/Database.java
浏览文件 @
50b5f52a
...
...
@@ -154,13 +154,12 @@ public class Database implements DataHandler {
private
boolean
multiVersion
;
private
DatabaseCloser
closeOnExit
;
private
Mode
mode
=
Mode
.
getInstance
(
Mode
.
REGULAR
);
// TODO change in version 1.
1
// TODO change in version 1.
2
private
boolean
multiThreaded
;
private
int
maxOperationMemory
=
SysProperties
.
DEFAULT_MAX_OPERATION_MEMORY
;
private
boolean
lobFilesInDirectories
=
SysProperties
.
LOB_FILES_IN_DIRECTORIES
;
private
SmallLRUCache
lobFileListCache
=
new
SmallLRUCache
(
128
);
private
boolean
autoServerMode
;
private
Object
reserveMemory
;
private
Server
server
;
private
HashMap
linkConnections
;
private
TempFileDeleter
tempFileDeleter
=
TempFileDeleter
.
getInstance
();
...
...
@@ -2022,7 +2021,8 @@ public class Database implements DataHandler {
}
public
void
setMultiThreaded
(
boolean
multiThreaded
)
throws
SQLException
{
if
(
multiThreaded
&&
multiVersion
)
{
if
(
multiThreaded
&&
multiVersion
&&
this
.
multiThreaded
!=
multiThreaded
)
{
// currently the combination of MVCC and MULTI_THREADED is not supported
throw
Message
.
getSQLException
(
ErrorCode
.
CANNOT_CHANGE_SETTING_WHEN_OPEN_1
,
"MVCC & MULTI_THREADED"
);
}
this
.
multiThreaded
=
multiThreaded
;
...
...
@@ -2060,23 +2060,6 @@ public class Database implements DataHandler {
public
boolean
isSysTableLocked
()
{
return
meta
.
isLockedExclusively
();
}
/**
* Allocate a little main memory that is freed up when if no memory is
* available, so that rolling back a large transaction is easier.
*/
public
void
allocateReserveMemory
()
{
if
(
reserveMemory
==
null
)
{
reserveMemory
=
new
byte
[
SysProperties
.
RESERVE_MEMORY
];
}
}
/**
* Free up the reserve memory.
*/
public
void
freeReserveMemory
()
{
reserveMemory
=
null
;
}
/**
* Open a new connection or get an existing connection to another database.
...
...
h2/src/main/org/h2/util/MemoryUtils.java
浏览文件 @
50b5f52a
...
...
@@ -6,6 +6,8 @@
*/
package
org
.
h2
.
util
;
import
org.h2.constant.SysProperties
;
/**
* This is a utility class with functions to measure the free and used memory.
*/
...
...
@@ -14,6 +16,7 @@ public class MemoryUtils {
private
static
long
lastGC
;
private
static
final
int
GC_DELAY
=
50
;
private
static
final
int
MAX_GC
=
8
;
private
static
volatile
byte
[]
reserveMemory
;
private
MemoryUtils
()
{
// utility class
...
...
@@ -59,5 +62,22 @@ public class MemoryUtils {
}
}
}
/**
* Allocate a little main memory that is freed up when if no memory is
* available, so that rolling back a large transaction is easier.
*/
public
static
void
allocateReserveMemory
()
{
if
(
reserveMemory
==
null
)
{
reserveMemory
=
new
byte
[
SysProperties
.
RESERVE_MEMORY
];
}
}
/**
* Free up the reserve memory.
*/
public
static
void
freeReserveMemory
()
{
reserveMemory
=
null
;
}
}
h2/src/test/org/h2/test/db/TestOutOfMemory.java
浏览文件 @
50b5f52a
...
...
@@ -37,6 +37,9 @@ public class TestOutOfMemory extends TestBase {
if
(
config
.
memory
||
config
.
mvcc
)
{
return
;
}
for
(
int
i
=
0
;
i
<
5
;
i
++)
{
System
.
gc
();
}
deleteDb
(
"outOfMemory"
);
Connection
conn
=
getConnection
(
"outOfMemory"
);
Statement
stat
=
conn
.
createStatement
();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论