-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathob_change_stream_mgr.cpp
More file actions
167 lines (153 loc) · 4.84 KB
/
ob_change_stream_mgr.cpp
File metadata and controls
167 lines (153 loc) · 4.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*
* Copyright (c) 2025 OceanBase.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define USING_LOG_PREFIX SHARE
#include "lib/oblog/ob_log_module.h"
#include "share/change_stream/ob_change_stream_mgr.h"
#include "share/rc/ob_tenant_base.h"
#include "lib/thread/thread_define.h"
#include "share/ob_thread_define.h"
#include "share/ob_global_stat_proxy.h"
#include "storage/tx/ob_ts_mgr.h"
namespace oceanbase
{
namespace share
{
ObChangeStreamMgr::ObChangeStreamMgr()
: is_inited_(false),
fetcher_(),
dispatcher_(),
worker_()
{
}
ObChangeStreamMgr::~ObChangeStreamMgr()
{
destroy();
}
int ObChangeStreamMgr::mtl_init(ObChangeStreamMgr *&mgr)
{
int ret = common::OB_SUCCESS;
if (OB_ISNULL(mgr)) {
ret = common::OB_INVALID_ARGUMENT;
LOG_WARN("ObChangeStreamMgr: mgr is null", K(ret));
} else if (OB_FAIL(mgr->init())) {
LOG_WARN("ObChangeStreamMgr init failed", KR(ret), "tenant_id", MTL_ID());
} else {
LOG_INFO("ObChangeStreamMgr mtl_init success", "tenant_id", MTL_ID(), KP(MTL_CTX()));
}
return ret;
}
int ObChangeStreamMgr::init()
{
int ret = common::OB_SUCCESS;
if (is_inited_) {
ret = OB_INIT_TWICE;
} else if (OB_FAIL(fetcher_.init(&dispatcher_))) {
LOG_WARN("ObChangeStreamMgr: fetcher init failed", K(ret));
} else if (OB_FAIL(dispatcher_.init())) {
LOG_WARN("ObChangeStreamMgr: dispatcher init failed", K(ret));
} else if (OB_FAIL(worker_.init(GET_THREAD_NUM_BY_NPROCESSORS(1)))) {
LOG_WARN("ObChangeStreamMgr: worker init failed", K(ret));
} else {
is_inited_ = true;
FLOG_INFO("ObChangeStreamMgr init success (Fetcher/Dispatcher/Worker)", K(GET_THREAD_NUM_BY_NPROCESSORS(1)));
}
return ret;
}
int ObChangeStreamMgr::start()
{
int ret = common::OB_SUCCESS;
if (!is_inited_) {
ret = common::OB_NOT_INIT;
LOG_WARN("ObChangeStreamMgr is not inited", K(ret));
} else {
if (OB_FAIL(fetcher_.start())) {
LOG_WARN("ObChangeStreamMgr: fetcher start failed", K(ret));
} else if (OB_FAIL(dispatcher_.start())) {
LOG_WARN("ObChangeStreamMgr: dispatcher start failed", K(ret));
} else if (OB_FAIL(worker_.start())) {
LOG_WARN("ObChangeStreamMgr: worker start failed", K(ret));
} else {
LOG_INFO("ObChangeStreamMgr start success (Fetcher/Dispatcher/Worker threads started)");
}
}
return ret;
}
void ObChangeStreamMgr::stop()
{
if (is_inited_) {
fetcher_.stop();
dispatcher_.stop();
worker_.stop();
}
}
void ObChangeStreamMgr::wait()
{
if (is_inited_) {
fetcher_.wait();
dispatcher_.wait();
worker_.wait();
}
}
void ObChangeStreamMgr::destroy()
{
if (is_inited_) {
stop();
wait();
fetcher_.destroy();
dispatcher_.destroy();
worker_.destroy();
}
is_inited_ = false;
}
int ObChangeStreamMgr::wait_refresh_scn(
common::ObISQLClient &sql_client,
const uint64_t tenant_id,
const int64_t timeout_us)
{
int ret = common::OB_SUCCESS;
SCN safe_visible_scn;
SCN current_refresh_scn;
const int64_t SLEEP_INTERVAL_US = 100 * 1000; // 100ms
const int64_t abs_timeout_us = ObTimeUtility::current_time() + timeout_us;
if (OB_FAIL(OB_TS_MGR.get_ts_sync(tenant_id, abs_timeout_us - ObTimeUtility::current_time(),
safe_visible_scn))) {
LOG_WARN("get gts for safe visible scn failed", KR(ret), K(tenant_id));
} else {
bool is_satisfied = false;
while (OB_SUCC(ret) && !is_satisfied) {
const int64_t now = ObTimeUtility::current_time();
if (now >= abs_timeout_us) {
ret = OB_TIMEOUT;
LOG_WARN("wait change stream refresh scn timeout", KR(ret),
K(tenant_id), K(safe_visible_scn), K(current_refresh_scn));
} else if (OB_FAIL(ObGlobalStatProxy::get_change_stream_refresh_scn(
sql_client, tenant_id, false, current_refresh_scn))) {
LOG_WARN("get change stream refresh scn failed", KR(ret), K(tenant_id));
} else if (current_refresh_scn >= safe_visible_scn) {
is_satisfied = true;
LOG_INFO("change stream refresh scn caught up",
K(tenant_id), K(safe_visible_scn), K(current_refresh_scn));
} else {
LOG_INFO("waiting for change stream refresh scn",
K(tenant_id), K(safe_visible_scn), K(current_refresh_scn));
ob_usleep(SLEEP_INTERVAL_US);
}
}
}
return ret;
}
} // namespace share
} // namespace oceanbase