@@ -54,7 +54,7 @@ private static class Args {
54
54
55
55
Option apiPort = Option .builder ("a" ).longOpt ("api-port" ).hasArg ().type (Integer .class ).required (false ).build ();
56
56
Option clusterPort = Option .builder ("p" ).longOpt ("cluster-port" ).hasArg ().type (Integer .class ).required (false ).build ();
57
- Option datastreamPort = Option .builder ().longOpt ("datastream -port" ).hasArg ().required (false ).build ();
57
+ Option binlogPort = Option .builder ().longOpt ("binlog -port" ).hasArg ().required (false ).build ();
58
58
Option databasePort = Option .builder ().longOpt ("db-port" ).hasArg ().required (false ).build ();
59
59
60
60
Option leader = Option .builder ().longOpt ("leader" ).hasArg ().required (false ).build ();
@@ -69,7 +69,7 @@ private static class Args {
69
69
cliOptions .addOption (verbosity );
70
70
cliOptions .addOption (leader );
71
71
cliOptions .addOption (logFile );
72
- cliOptions .addOption (datastreamPort );
72
+ cliOptions .addOption (binlogPort );
73
73
cliOptions .addOption (databasePort );
74
74
}
75
75
@@ -106,13 +106,13 @@ public Args(String[] args) throws ParseException, ConfigException {
106
106
this .verbosity = verbosity == null ? 1 : Integer .parseInt (verbosity );
107
107
108
108
/* read the engine.xconf file and build the engineConfig, with its:
109
- network config, datastream config, database config, net-api config and net-join config */
109
+ network config, binary-log config, database config, net-api config and net-join config */
110
110
this .config = XMLConfigBuilder .build (Engine .getConfigFile (this .engine ));
111
111
this .config .getEngineConfig ().setName (this .engine );
112
112
113
113
// Create the config objects based on the engine.xconf file
114
114
NetworkConfig netConfig = this .config .getNetworkConfig ();
115
- DataStreamConfig streamConfig = this .config .getDataStreamConfig ();
115
+ BinaryLogConfig binlogConfig = this .config .getBinaryLogConfig ();
116
116
DatabaseConfig dbConfig = this .config .getDatabaseConfig ();
117
117
ApiConfig apiConfig = netConfig .getApiConfig ();
118
118
JoinConfig joinConfig = netConfig .getJoinConfig ();
@@ -128,9 +128,9 @@ public Args(String[] args) throws ParseException, ConfigException {
128
128
String apiPort = cli .getOptionValue ("api-port" );
129
129
if (apiPort != null )
130
130
apiConfig .setPort (Integer .parseInt (apiPort ));
131
- String datastreamPort = cli .getOptionValue ("datastream -port" );
132
- if (datastreamPort != null )
133
- streamConfig .setPort (Integer .parseInt (datastreamPort ));
131
+ String binlogPort = cli .getOptionValue ("binlog -port" );
132
+ if (binlogPort != null )
133
+ binlogConfig .setPort (Integer .parseInt (binlogPort ));
134
134
String databasePort = cli .getOptionValue ("db-port" );
135
135
if (databasePort != null )
136
136
dbConfig .setPort (Integer .parseInt (databasePort ));
@@ -141,21 +141,21 @@ public Args(String[] args) throws ParseException, ConfigException {
141
141
142
142
If a leader was passed by command line with option --join-leader:
143
143
- create a Member with its host and port try to use this Member only to join the cluster
144
- - the leader hosts the database and datastream , so set it as the host in datastreamconfig and databaseconfig
144
+ - the leader hosts the database and binlog , so set it as the host in binaryLogConfig and databaseConfig
145
145
146
- Assume that all the ports that the leader uses (cluster, datastream and cassandra ports) are the same as this node.
146
+ Assume that all the ports that the leader uses (cluster, binlog and cassandra ports) are the same as this node.
147
147
If they are not, then the configuration is wrong.
148
148
149
149
If no leader is passed by command line, do nothing.
150
150
- The config object will use the list of members parsed from engine.xconf and try to join them in order.
151
- - use the database and datastream hosts and ports in engine.xconf for datastreamconfig and databaseconfig */
151
+ - use the database and binlog hosts and ports in engine.xconf for binaryLogConfig and databaseConfig */
152
152
String leader = cli .getOptionValue ("leader" );
153
153
154
154
if (leader != null ) {
155
155
JoinConfig .Member [] members = new JoinConfig .Member [1 ];
156
156
members [0 ] = new JoinConfig .Member (leader , netConfig .getPort ());
157
157
joinConfig .setMembers (members );
158
- streamConfig .setHost (leader );
158
+ binlogConfig .setHost (leader );
159
159
dbConfig .setHost (leader );
160
160
}
161
161
}
@@ -207,7 +207,7 @@ private static class FileStatusListener implements ClusterNode.StatusListener {
207
207
* - cluster port
208
208
* - api config (root and port),
209
209
* - database (host and port)
210
- * - datastream (host and port)
210
+ * - binlog (host and port)
211
211
*
212
212
* @param file the node.properties JSON file
213
213
* in which to store the definitive configuration
@@ -219,7 +219,7 @@ public FileStatusListener(File file, NodeConfig config) {
219
219
NetworkConfig netConfig = config .getNetworkConfig ();
220
220
ApiConfig apiConfig = netConfig .getApiConfig ();
221
221
DatabaseConfig dbConfig = config .getDatabaseConfig ();
222
- DataStreamConfig streamConfig = config .getDataStreamConfig ();
222
+ BinaryLogConfig binlogConfig = config .getBinaryLogConfig ();
223
223
224
224
this .properties = new JsonObject ();
225
225
@@ -239,11 +239,11 @@ public FileStatusListener(File file, NodeConfig config) {
239
239
this .properties .add ("database" , db );
240
240
}
241
241
242
- if (streamConfig .isEnabled ()) {
243
- JsonObject stream = new JsonObject ();
244
- stream .addProperty ("port" , streamConfig .getPort ());
245
- stream .addProperty ("host" , StringUtils .join (streamConfig .getHosts (), ',' ));
246
- this .properties .add ("datastream " , stream );
242
+ if (binlogConfig .isEnabled ()) {
243
+ JsonObject binlog = new JsonObject ();
244
+ binlog .addProperty ("port" , binlogConfig .getPort ());
245
+ binlog .addProperty ("host" , StringUtils .join (binlogConfig .getHosts (), ',' ));
246
+ this .properties .add ("binlog " , binlog );
247
247
}
248
248
249
249
this .properties .addProperty ("cluster_port" , netConfig .getPort ());
0 commit comments