Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
996bc85d
O
oceanbase
项目概览
Metz
/
oceanbase
与 Fork 源项目一致
Fork自
oceanbase / oceanbase
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
O
oceanbase
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
996bc85d
编写于
7月 13, 2021
作者:
O
obdev
提交者:
wangzelin.wzl
7月 13, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add param proxy_readonly_transaction_routing_policy
上级
d922e21a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
2 deletion
+17
-2
src/share/parameter/ob_parameter_seed.ipp
src/share/parameter/ob_parameter_seed.ipp
+4
-0
src/sql/session/ob_basic_session_info.cpp
src/sql/session/ob_basic_session_info.cpp
+13
-2
未找到文件。
src/share/parameter/ob_parameter_seed.ipp
浏览文件 @
996bc85d
...
...
@@ -1434,3 +1434,7 @@ DEF_TIME(ilog_index_expire_time, OB_CLUSTER_PARAMETER, "7d", "[0s, 60d]",
DEF_BOOL(_auto_drop_tenant_if_restore_failed, OB_CLUSTER_PARAMETER, "True",
"auto drop restoring tenant if physical restore fails",
ObParameterAttr(Section::OBSERVER, Source::DEFAULT, EditLevel::DYNAMIC_EFFECTIVE));
DEF_BOOL(ob_proxy_readonly_transaction_routing_policy, OB_TENANT_PARAMETER, "true",
"Proxy route policy for readonly sql",
ObParameterAttr(Section::OBSERVER, Source::DEFAULT, EditLevel::DYNAMIC_EFFECTIVE));
src/sql/session/ob_basic_session_info.cpp
浏览文件 @
996bc85d
...
...
@@ -29,6 +29,7 @@
#include "sql/engine/ob_physical_plan.h"
#include "storage/transaction/ob_weak_read_util.h" //ObWeakReadUtil
#include "observer/omt/ob_tenant_timezone_mgr.h"
#include "observer/omt/ob_tenant_config_mgr.h"
using
namespace
oceanbase
::
common
;
using
namespace
oceanbase
::
share
;
...
...
@@ -129,8 +130,18 @@ ObBasicSessionInfo::~ObBasicSessionInfo()
bool
ObBasicSessionInfo
::
is_server_status_in_transaction
()
const
{
bool
result
=
get_in_transaction
()
||
(
!
get_local_autocommit
()
&&
trans_desc_
.
get_standalone_stmt_desc
().
is_snapshot_version_valid
());
/*!
* readonly sql not in transaction, for compatible, we also need send in trans flag to proxy.
* for now,
* we use ob_proxy_readonly_transaction_routing_policy parameter decide to send in trans or not.
*/
bool
result
=
get_in_transaction
();
if
(
!
result
&&
!
get_local_autocommit
()
&&
trans_desc_
.
get_standalone_stmt_desc
().
is_snapshot_version_valid
())
{
omt
::
ObTenantConfigGuard
tenant_config
(
TENANT_CONF
(
get_effective_tenant_id
()));
result
=
is_isolation_serializable
()
||
tenant_config
->
ob_proxy_readonly_transaction_routing_policy
;
}
return
result
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录