Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
cb7f7c1b
提交
cb7f7c1b
authored
10月 28, 2017
作者:
LaughingMan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use a Future so exceptions thrown in another thread don't get ignored
上级
3ae7d1e4
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
59 行增加
和
35 行删除
+59
-35
CreateCluster.java
h2/src/main/org/h2/tools/CreateCluster.java
+59
-35
没有找到文件。
h2/src/main/org/h2/tools/CreateCluster.java
浏览文件 @
cb7f7c1b
...
@@ -13,10 +13,12 @@ import java.sql.DriverManager;
...
@@ -13,10 +13,12 @@ import java.sql.DriverManager;
import
java.sql.ResultSet
;
import
java.sql.ResultSet
;
import
java.sql.SQLException
;
import
java.sql.SQLException
;
import
java.sql.Statement
;
import
java.sql.Statement
;
import
org.h2.api.ErrorCode
;
import
java.util.concurrent.ExecutionException
;
import
org.h2.engine.Constants
;
import
java.util.concurrent.ExecutorService
;
import
java.util.concurrent.Executors
;
import
java.util.concurrent.Future
;
import
org.h2.util.IOUtils
;
import
org.h2.util.IOUtils
;
import
org.h2.util.JdbcUtils
;
import
org.h2.util.Tool
;
import
org.h2.util.Tool
;
/**
/**
...
@@ -124,6 +126,47 @@ public class CreateCluster extends Tool {
...
@@ -124,6 +126,47 @@ public class CreateCluster extends Tool {
private
static
void
performTransfer
(
Statement
statSource
,
String
urlTarget
,
private
static
void
performTransfer
(
Statement
statSource
,
String
urlTarget
,
String
user
,
String
password
,
String
serverList
)
throws
SQLException
{
String
user
,
String
password
,
String
serverList
)
throws
SQLException
{
try
(
PipedReader
pipeReader
=
new
PipedReader
())
{
try
(
PipedReader
pipeReader
=
new
PipedReader
())
{
// Delete the target database first.
try
(
Connection
connTarget
=
DriverManager
.
getConnection
(
urlTarget
+
";CLUSTER=''"
,
user
,
password
);
Statement
statTarget
=
connTarget
.
createStatement
())
{
statTarget
.
execute
(
"DROP ALL OBJECTS DELETE FILES"
);
}
Future
<?>
threadFuture
=
startWriter
(
pipeReader
,
statSource
);
// Read data from pipe reader, restore on target.
try
(
Connection
connTarget
=
DriverManager
.
getConnection
(
urlTarget
,
user
,
password
);
Statement
statTarget
=
connTarget
.
createStatement
())
{
RunScript
.
execute
(
connTarget
,
pipeReader
);
// set the cluster to the serverList on both databases
statSource
.
executeUpdate
(
"SET CLUSTER '"
+
serverList
+
"'"
);
statTarget
.
executeUpdate
(
"SET CLUSTER '"
+
serverList
+
"'"
);
}
// Check if the writer encountered any exception
try
{
threadFuture
.
get
();
}
catch
(
ExecutionException
ex
)
{
throw
new
SQLException
(
ex
.
getCause
());
}
catch
(
InterruptedException
ex
)
{
throw
new
SQLException
(
ex
);
}
}
catch
(
IOException
ex
)
{
throw
new
SQLException
(
ex
);
}
}
private
static
Future
<?>
startWriter
(
PipedReader
pipeReader
,
Statement
statSource
)
throws
SQLException
,
IOException
{
final
ExecutorService
thread
=
Executors
.
newFixedThreadPool
(
1
);
/*
/*
* Pipe writer is used + closed in the inner class, in a
* Pipe writer is used + closed in the inner class, in a
* separate thread (needs to be final). It should be initialized
* separate thread (needs to be final). It should be initialized
...
@@ -139,16 +182,9 @@ public class CreateCluster extends Tool {
...
@@ -139,16 +182,9 @@ public class CreateCluster extends Tool {
// Start writing to pipe writer in separate thread.
// Start writing to pipe writer in separate thread.
final
ResultSet
rs
=
statSource
.
executeQuery
(
"SCRIPT"
);
final
ResultSet
rs
=
statSource
.
executeQuery
(
"SCRIPT"
);
// Delete the target database first.
// Since exceptions cannot be thrown across thread boundaries, return
try
(
Connection
connTarget
=
DriverManager
.
getConnection
(
// the task's future so we can check manually
urlTarget
+
";CLUSTER=''"
,
user
,
password
);
Future
<?>
threadFuture
=
thread
.
submit
(
new
Runnable
()
{
Statement
statTarget
=
connTarget
.
createStatement
())
{
statTarget
.
execute
(
"DROP ALL OBJECTS DELETE FILES"
);
}
new
Thread
(
new
Runnable
()
{
@Override
@Override
public
void
run
()
{
public
void
run
()
{
try
{
try
{
...
@@ -163,23 +199,11 @@ public class CreateCluster extends Tool {
...
@@ -163,23 +199,11 @@ public class CreateCluster extends Tool {
IOUtils
.
closeSilently
(
pipeWriter
);
IOUtils
.
closeSilently
(
pipeWriter
);
}
}
}
}
}
});
).
start
();
// Read data from pipe reader, restore on target.
thread
.
shutdown
();
try
(
Connection
connTarget
=
DriverManager
.
getConnection
(
urlTarget
,
user
,
password
);
Statement
statTarget
=
connTarget
.
createStatement
())
{
RunScript
.
execute
(
connTarget
,
pipeReader
);
// set the cluster to the serverList on both databases
return
threadFuture
;
statSource
.
executeUpdate
(
"SET CLUSTER '"
+
serverList
+
"'"
);
statTarget
.
executeUpdate
(
"SET CLUSTER '"
+
serverList
+
"'"
);
}
}
catch
(
IOException
ex
)
{
throw
new
SQLException
(
ex
);
}
}
}
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论