Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit f5a9abe

Browse files
authored
Rename "topology master" to "topology manager" (#3624)
1 parent ec44c53 commit f5a9abe

File tree

302 files changed

+4316
-4288
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

302 files changed

+4316
-4288
lines changed

deploy/docker/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ root@16092325a696:/heron# heron submit sandbox /heron/examples/heron-api-example
5757
[2018-02-01 20:24:21 +0000] [INFO]: Successfully launched topology 'exclamation'
5858
root@16092325a696:/heron# heron deactivate sandbox exclamation
5959
[2018-02-01 20:24:46 +0000] [INFO]: Using cluster definition in /heron/heron-tools/conf/sandbox
60-
[2018-02-01 20:24:47 +0000] [INFO] org.apache.heron.spi.utils.TMasterUtils: Topology command DEACTIVATE completed successfully.
60+
[2018-02-01 20:24:47 +0000] [INFO] org.apache.heron.spi.utils.TManagerUtils: Topology command DEACTIVATE completed successfully.
6161
[2018-02-01 20:24:47 +0000] [INFO]: Successfully deactivate topology: exclamation
6262
root@16092325a696:/heron# heron activate sandbox exclamation
6363
[2018-02-01 20:24:55 +0000] [INFO]: Using cluster definition in /heron/heron-tools/conf/sandbox
64-
[2018-02-01 20:24:56 +0000] [INFO] org.apache.heron.spi.utils.TMasterUtils: Topology command ACTIVATE completed successfully.
64+
[2018-02-01 20:24:56 +0000] [INFO] org.apache.heron.spi.utils.TManagerUtils: Topology command ACTIVATE completed successfully.
6565
[2018-02-01 20:24:56 +0000] [INFO]: Successfully activate topology: exclamation
6666
root@16092325a696:/heron# heron kill sandbox exclamation
6767
[2018-02-01 20:25:08 +0000] [INFO]: Using cluster definition in /heron/heron-tools/conf/sandbox

heron/api/src/java/org/apache/heron/api/bolt/IBolt.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* <p>A bolt's lifecycle is as follows:</p>
3535
* <p>
3636
* <p>IBolt object created on client machine. The IBolt is serialized into the topology
37-
* (using Java serialization) and submitted to the master machine of the cluster (Nimbus).
37+
* (using Java serialization) and submitted to the primary machine of the cluster (Nimbus).
3838
* Nimbus then launches workers which deserialize the object, call prepare on it, and then
3939
* start processing tuples.</p>
4040
* <p>

heron/ckptmgr/src/java/org/apache/heron/ckptmgr/CheckpointManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public static void main(String[] args) throws IOException,
254254
Level loggingLevel = Level.INFO;
255255
String loggingDir = systemConfig.getHeronLoggingDirectory();
256256

257-
// Log to file and TMaster
257+
// Log to file and TManager
258258
LoggingHelper.loggerInit(loggingLevel, true);
259259
LoggingHelper.addLoggingHandler(
260260
LoggingHelper.getFileHandler(ckptmgrId, loggingDir, true,

heron/ckptmgr/src/java/org/apache/heron/ckptmgr/CheckpointManagerServer.java

+10-10
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public CheckpointManagerServer(
8282
private void registerInitialization() {
8383
registerOnRequest(CheckpointManager.RegisterStMgrRequest.newBuilder());
8484

85-
registerOnRequest(CheckpointManager.RegisterTMasterRequest.newBuilder());
85+
registerOnRequest(CheckpointManager.RegisterTManagerRequest.newBuilder());
8686

8787
registerOnRequest(CheckpointManager.SaveInstanceStateRequest.newBuilder());
8888

@@ -101,9 +101,9 @@ public void onConnect(SocketChannel channel) {
101101
public void onRequest(REQID rid, SocketChannel channel, Message request) {
102102
if (request instanceof CheckpointManager.RegisterStMgrRequest) {
103103
handleStMgrRegisterRequest(rid, channel, (CheckpointManager.RegisterStMgrRequest) request);
104-
} else if (request instanceof CheckpointManager.RegisterTMasterRequest) {
105-
handleTMasterRegisterRequest(rid, channel,
106-
(CheckpointManager.RegisterTMasterRequest) request);
104+
} else if (request instanceof CheckpointManager.RegisterTManagerRequest) {
105+
handleTManagerRegisterRequest(rid, channel,
106+
(CheckpointManager.RegisterTManagerRequest) request);
107107
} else if (request instanceof CheckpointManager.SaveInstanceStateRequest) {
108108
handleSaveInstanceStateRequest(
109109
rid, channel, (CheckpointManager.SaveInstanceStateRequest) request);
@@ -153,20 +153,20 @@ protected void handleCleanStatefulCheckpointRequest(
153153
sendResponse(rid, channel, responseBuilder.build());
154154
}
155155

156-
protected void handleTMasterRegisterRequest(
156+
protected void handleTManagerRegisterRequest(
157157
REQID rid,
158158
SocketChannel channel,
159-
CheckpointManager.RegisterTMasterRequest request
159+
CheckpointManager.RegisterTManagerRequest request
160160
) {
161-
LOG.info("Got a TMaster register request from TMaster host:port "
161+
LOG.info("Got a TManager register request from TManager host:port "
162162
+ channel.socket().getRemoteSocketAddress());
163163

164-
CheckpointManager.RegisterTMasterResponse.Builder responseBuilder =
165-
CheckpointManager.RegisterTMasterResponse.newBuilder();
164+
CheckpointManager.RegisterTManagerResponse.Builder responseBuilder =
165+
CheckpointManager.RegisterTManagerResponse.newBuilder();
166166

167167
if (!checkRegistrationValidity(request.getTopologyName(),
168168
request.getTopologyId())) {
169-
String errorMessage = String.format("The TMaster register message came with a different "
169+
String errorMessage = String.format("The TManager register message came with a different "
170170
+ "topologyName: %s and/or topologyId: %s",
171171
request.getTopologyName(),
172172
request.getTopologyId());

heron/ckptmgr/tests/java/org/apache/heron/ckptmgr/CheckpointManagerServerTest.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public class CheckpointManagerServerTest {
6464
private static CheckpointManager.GetInstanceStateRequest getInstanceStateRequest;
6565
private static CheckpointManager.CleanStatefulCheckpointRequest cleanStatefulCheckpointRequest;
6666
private static CheckpointManager.RegisterStMgrRequest registerStmgrRequest;
67-
private static CheckpointManager.RegisterTMasterRequest registerTMasterRequest;
67+
private static CheckpointManager.RegisterTManagerRequest registerTManagerRequest;
6868

6969
private static PhysicalPlans.Instance instance;
7070

@@ -137,7 +137,7 @@ public static void setup() throws Exception {
137137
.setPhysicalPlan(pplan)
138138
.build();
139139

140-
registerTMasterRequest = CheckpointManager.RegisterTMasterRequest.newBuilder()
140+
registerTManagerRequest = CheckpointManager.RegisterTManagerRequest.newBuilder()
141141
.setTopologyId(TOPOLOGY_ID)
142142
.setTopologyName(TOPOLOGY_NAME)
143143
.build();
@@ -224,10 +224,10 @@ public void handleResponse(HeronClient client, StatusCode status,
224224
}
225225

226226
@Test
227-
public void testRegisterTMaster() throws Exception {
228-
runTest(TestRequestHandler.RequestType.REGISTER_TMASTER,
227+
public void testRegisterTManager() throws Exception {
228+
runTest(TestRequestHandler.RequestType.REGISTER_TMANAGER,
229229
new HeronServerTester.SuccessResponseHandler(
230-
CheckpointManager.RegisterTMasterResponse.class));
230+
CheckpointManager.RegisterTManagerResponse.class));
231231
}
232232

233233
@Test
@@ -249,8 +249,8 @@ public enum RequestType {
249249
CheckpointManager.CleanStatefulCheckpointResponse.getDescriptor()),
250250
REGISTER_STMGR(registerStmgrRequest,
251251
CheckpointManager.RegisterStMgrResponse.getDescriptor()),
252-
REGISTER_TMASTER(registerTMasterRequest,
253-
CheckpointManager.RegisterTMasterResponse.getDescriptor());
252+
REGISTER_TMANAGER(registerTManagerRequest,
253+
CheckpointManager.RegisterTManagerResponse.getDescriptor());
254254

255255
private Message requestMessage;
256256
private Descriptors.Descriptor responseMessageDescriptor;

heron/common/src/cpp/config/heron-internals-config-reader.cpp

+30-30
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ sp_int32 HeronInternalsConfigReader::GetHeronLoggingMaximumFiles() {
105105
return config_[HeronInternalsConfigVars::HERON_LOGGING_MAXIMUM_FILES].as<int>();
106106
}
107107

108-
sp_int32 HeronInternalsConfigReader::GetCheckTMasterLocationIntervalSec() {
109-
return config_[HeronInternalsConfigVars::HERON_CHECK_TMASTER_LOCATION_INTERVAL_SEC].as<int>();
108+
sp_int32 HeronInternalsConfigReader::GetCheckTManagerLocationIntervalSec() {
109+
return config_[HeronInternalsConfigVars::HERON_CHECK_TMANAGER_LOCATION_INTERVAL_SEC].as<int>();
110110
}
111111

112112
sp_int32 HeronInternalsConfigReader::GetHeronLoggingPruneIntervalSec() {
@@ -158,8 +158,8 @@ sp_int32 HeronInternalsConfigReader::GetHeronMetricsmgrScribePeriodicFlushInterv
158158
.as<int>();
159159
}
160160

161-
sp_int32 HeronInternalsConfigReader::GetHeronMetricsmgrReconnectTmasterIntervalSec() {
162-
return config_[HeronInternalsConfigVars::HERON_METRICSMGR_RECONNECT_TMASTER_INTERVAL_SEC]
161+
sp_int32 HeronInternalsConfigReader::GetHeronMetricsmgrReconnectTmanagerIntervalSec() {
162+
return config_[HeronInternalsConfigVars::HERON_METRICSMGR_RECONNECT_TMANAGER_INTERVAL_SEC]
163163
.as<int>();
164164
}
165165

@@ -168,52 +168,52 @@ sp_int32 HeronInternalsConfigReader::GetHeronMetricsmgrNetworkOptionsMaximumPack
168168
.as<int>();
169169
}
170170

171-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterMetricsCollectorMaximumIntervalMin() {
172-
return config_[HeronInternalsConfigVars::HERON_TMASTER_METRICS_COLLECTOR_MAXIMUM_INTERVAL_MIN]
171+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerMetricsCollectorMaximumIntervalMin() {
172+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_METRICS_COLLECTOR_MAXIMUM_INTERVAL_MIN]
173173
.as<int>();
174174
}
175175

176-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterEstablishRetryTimes() {
177-
return config_[HeronInternalsConfigVars::HERON_TMASTER_ESTABLISH_RETRY_TIMES].as<int>();
176+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerEstablishRetryTimes() {
177+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_ESTABLISH_RETRY_TIMES].as<int>();
178178
}
179179

180-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterEstablishRetryIntervalSec() {
181-
return config_[HeronInternalsConfigVars::HERON_TMASTER_ESTABLISH_RETRY_INTERVAL_SEC].as<int>();
180+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerEstablishRetryIntervalSec() {
181+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_ESTABLISH_RETRY_INTERVAL_SEC].as<int>();
182182
}
183183

184-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterNetworkMasterOptionsMaximumPacketMb() {
185-
return config_[HeronInternalsConfigVars::HERON_TMASTER_NETWORK_MASTER_OPTIONS_MAXIMUM_PACKET_MB]
184+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerNetworkServerOptionsMaximumPacketMb() {
185+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_NETWORK_SERVER_OPTIONS_MAXIMUM_PACKET_MB]
186186
.as<int>();
187187
}
188188

189-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterNetworkControllerOptionsMaximumPacketMb() {
189+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerNetworkControllerOptionsMaximumPacketMb() {
190190
return config_
191-
[HeronInternalsConfigVars::HERON_TMASTER_NETWORK_CONTROLLER_OPTIONS_MAXIMUM_PACKET_MB]
191+
[HeronInternalsConfigVars::HERON_TMANAGER_NETWORK_CONTROLLER_OPTIONS_MAXIMUM_PACKET_MB]
192192
.as<int>();
193193
}
194194

195-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterNetworkStatsOptionsMaximumPacketMb() {
196-
return config_[HeronInternalsConfigVars::HERON_TMASTER_NETWORK_STATS_OPTIONS_MAXIMUM_PACKET_MB]
195+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerNetworkStatsOptionsMaximumPacketMb() {
196+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_NETWORK_STATS_OPTIONS_MAXIMUM_PACKET_MB]
197197
.as<int>();
198198
}
199199

200-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterMetricsCollectorPurgeIntervalSec() {
201-
return config_[HeronInternalsConfigVars::HERON_TMASTER_METRICS_COLLECTOR_PURGE_INTERVAL_SEC]
200+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerMetricsCollectorPurgeIntervalSec() {
201+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_METRICS_COLLECTOR_PURGE_INTERVAL_SEC]
202202
.as<int>();
203203
}
204204

205-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterMetricsCollectorMaximumException() {
206-
return config_[HeronInternalsConfigVars::HERON_TMASTER_METRICS_COLLECTOR_MAXIMUM_EXCEPTION]
205+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerMetricsCollectorMaximumException() {
206+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_METRICS_COLLECTOR_MAXIMUM_EXCEPTION]
207207
.as<int>();
208208
}
209209

210-
bool HeronInternalsConfigReader::GetHeronTmasterMetricsNetworkBindAllInterfaces() {
211-
return config_[HeronInternalsConfigVars::HERON_TMASTER_METRICS_NETWORK_BINDALLINTERFACES]
210+
bool HeronInternalsConfigReader::GetHeronTmanagerMetricsNetworkBindAllInterfaces() {
211+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_METRICS_NETWORK_BINDALLINTERFACES]
212212
.as<bool>();
213213
}
214214

215-
sp_int32 HeronInternalsConfigReader::GetHeronTmasterStmgrStateTimeoutSec() {
216-
return config_[HeronInternalsConfigVars::HERON_TMASTER_STMGR_STATE_TIMEOUT_SEC].as<int>();
215+
sp_int32 HeronInternalsConfigReader::GetHeronTmanagerStmgrStateTimeoutSec() {
216+
return config_[HeronInternalsConfigVars::HERON_TMANAGER_STMGR_STATE_TIMEOUT_SEC].as<int>();
217217
}
218218

219219
sp_int32 HeronInternalsConfigReader::GetHeronStreammgrCacheDrainFrequencyMs() {
@@ -237,17 +237,17 @@ sp_int32 HeronInternalsConfigReader::GetHeronStreammgrXormgrRotatingmapNbuckets(
237237
return config_[HeronInternalsConfigVars::HERON_STREAMMGR_XORMGR_ROTATINGMAP_NBUCKETS].as<int>();
238238
}
239239

240-
sp_int32 HeronInternalsConfigReader::GetHeronStreammgrClientReconnectTmasterMaxAttempts() {
241-
return config_[HeronInternalsConfigVars::HERON_STREAMMGR_CLIENT_RECONNECT_TMASTER_MAX_ATTEMPTS]
240+
sp_int32 HeronInternalsConfigReader::GetHeronStreammgrClientReconnectTmanagerMaxAttempts() {
241+
return config_[HeronInternalsConfigVars::HERON_STREAMMGR_CLIENT_RECONNECT_TMANAGER_MAX_ATTEMPTS]
242242
.as<int>();
243243
}
244244

245245
sp_int32 HeronInternalsConfigReader::GetHeronStreammgrClientReconnectIntervalSec() {
246246
return config_[HeronInternalsConfigVars::HERON_STREAMMGR_CLIENT_RECONNECT_INTERVAL_SEC].as<int>();
247247
}
248248

249-
sp_int32 HeronInternalsConfigReader::GetHeronStreammgrClientReconnectTmasterIntervalSec() {
250-
return config_[HeronInternalsConfigVars::HERON_STREAMMGR_CLIENT_RECONNECT_TMASTER_INTERVAL_SEC]
249+
sp_int32 HeronInternalsConfigReader::GetHeronStreammgrClientReconnectTmanagerIntervalSec() {
250+
return config_[HeronInternalsConfigVars::HERON_STREAMMGR_CLIENT_RECONNECT_TMANAGER_INTERVAL_SEC]
251251
.as<int>();
252252
}
253253

@@ -256,8 +256,8 @@ sp_int32 HeronInternalsConfigReader::GetHeronStreammgrNetworkOptionsMaximumPacke
256256
.as<int>();
257257
}
258258

259-
sp_int32 HeronInternalsConfigReader::GetHeronStreammgrTmasterHeartbeatIntervalSec() {
260-
return config_[HeronInternalsConfigVars::HERON_STREAMMGR_TMASTER_HEARTBEAT_INTERVAL_SEC]
259+
sp_int32 HeronInternalsConfigReader::GetHeronStreammgrTmanagerHeartbeatIntervalSec() {
260+
return config_[HeronInternalsConfigVars::HERON_STREAMMGR_TMANAGER_HEARTBEAT_INTERVAL_SEC]
261261
.as<int>();
262262
}
263263

heron/common/src/cpp/config/heron-internals-config-reader.h

+26-26
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ class HeronInternalsConfigReader : public YamlFileReader {
6565
// The maximum number of log files
6666
sp_int32 GetHeronLoggingMaximumFiles();
6767

68-
// The interval after which we check if the tmaster location
68+
// The interval after which we check if the tmanager location
6969
// has been set or not
70-
sp_int32 GetCheckTMasterLocationIntervalSec();
70+
sp_int32 GetCheckTManagerLocationIntervalSec();
7171

7272
// The interval in seconds to prune logging files in C+++
7373
sp_int32 GetHeronLoggingPruneIntervalSec();
@@ -105,44 +105,44 @@ class HeronInternalsConfigReader : public YamlFileReader {
105105
// The interval in seconds to flush cached metircs to scribe
106106
sp_int32 GetHeronMetricsmgrScribePeriodicFlushIntervalSec();
107107

108-
// The interval in seconds to reconnect to tmaster if a connection failure happens
109-
sp_int32 GetHeronMetricsmgrReconnectTmasterIntervalSec();
108+
// The interval in seconds to reconnect to tmanager if a connection failure happens
109+
sp_int32 GetHeronMetricsmgrReconnectTmanagerIntervalSec();
110110

111111
// The maximum packet size in MB of metrics manager's network options
112112
sp_int32 GetHeronMetricsmgrNetworkOptionsMaximumPacketMb();
113113

114114
/**
115-
* Tmaster Config Getters
115+
* Tmanager Config Getters
116116
**/
117-
// The maximum interval in minutes of metrics to be kept in tmaster
118-
sp_int32 GetHeronTmasterMetricsCollectorMaximumIntervalMin();
117+
// The maximum interval in minutes of metrics to be kept in tmanager
118+
sp_int32 GetHeronTmanagerMetricsCollectorMaximumIntervalMin();
119119

120-
// The maximum time to retry to establish the tmaster
121-
sp_int32 GetHeronTmasterEstablishRetryTimes();
120+
// The maximum time to retry to establish the tmanager
121+
sp_int32 GetHeronTmanagerEstablishRetryTimes();
122122

123-
// The interval to retry to establish the tmaster
124-
sp_int32 GetHeronTmasterEstablishRetryIntervalSec();
123+
// The interval to retry to establish the tmanager
124+
sp_int32 GetHeronTmanagerEstablishRetryIntervalSec();
125125

126-
// The maximum packet size in MB of tmaster's network options for stmgrs to connect to
127-
sp_int32 GetHeronTmasterNetworkMasterOptionsMaximumPacketMb();
126+
// The maximum packet size in MB of tmanager's network options for stmgrs to connect to
127+
sp_int32 GetHeronTmanagerNetworkServerOptionsMaximumPacketMb();
128128

129-
// The maximum packet size in MB of tmaster's network options for scheduler to connect to
130-
sp_int32 GetHeronTmasterNetworkControllerOptionsMaximumPacketMb();
129+
// The maximum packet size in MB of tmanager's network options for scheduler to connect to
130+
sp_int32 GetHeronTmanagerNetworkControllerOptionsMaximumPacketMb();
131131

132-
// The maximum packet size in MB of tmaster's network options for stat queries
133-
sp_int32 GetHeronTmasterNetworkStatsOptionsMaximumPacketMb();
132+
// The maximum packet size in MB of tmanager's network options for stat queries
133+
sp_int32 GetHeronTmanagerNetworkStatsOptionsMaximumPacketMb();
134134

135-
// The inteval for tmaster to purge metrics from socket
136-
sp_int32 GetHeronTmasterMetricsCollectorPurgeIntervalSec();
135+
// The inteval for tmanager to purge metrics from socket
136+
sp_int32 GetHeronTmanagerMetricsCollectorPurgeIntervalSec();
137137

138138
// The maximum # of exception to be stored in tmetrics collector, to prevent potential OOM
139-
sp_int32 GetHeronTmasterMetricsCollectorMaximumException();
139+
sp_int32 GetHeronTmanagerMetricsCollectorMaximumException();
140140

141141
// Should metrics server bind on all interfaces
142-
bool GetHeronTmasterMetricsNetworkBindAllInterfaces();
142+
bool GetHeronTmanagerMetricsNetworkBindAllInterfaces();
143143

144144
// The timeout in seconds for stream mgr, compared with (current time - last heartbeat time)
145-
sp_int32 GetHeronTmasterStmgrStateTimeoutSec();
145+
sp_int32 GetHeronTmanagerStmgrStateTimeoutSec();
146146

147147
/**
148148
* Stream manager Config Getters
@@ -167,16 +167,16 @@ class HeronInternalsConfigReader : public YamlFileReader {
167167
sp_int32 GetHeronStreammgrClientReconnectIntervalSec();
168168

169169
// The reconnect interval to tamster in second for stream manager client
170-
sp_int32 GetHeronStreammgrClientReconnectTmasterIntervalSec();
170+
sp_int32 GetHeronStreammgrClientReconnectTmanagerIntervalSec();
171171

172-
// The max reconnect attempts to tmaster for stream manager client
173-
sp_int32 GetHeronStreammgrClientReconnectTmasterMaxAttempts();
172+
// The max reconnect attempts to tmanager for stream manager client
173+
sp_int32 GetHeronStreammgrClientReconnectTmanagerMaxAttempts();
174174

175175
// The maximum packet size in MB of stream manager's network options
176176
sp_int32 GetHeronStreammgrNetworkOptionsMaximumPacketMb();
177177

178178
// The interval in seconds to send heartbeat
179-
sp_int32 GetHeronStreammgrTmasterHeartbeatIntervalSec();
179+
sp_int32 GetHeronStreammgrTmanagerHeartbeatIntervalSec();
180180

181181
// Maximum batch size in MB to read by stream manager from socket
182182
sp_int32 GetHeronStreammgrConnectionReadBatchSizeMb();

0 commit comments

Comments
 (0)