use of com.alibaba.cobar.config.model.SystemConfig in project cobar by alibaba.
the class ServerConnectionFactory method getConnection.
@Override
protected FrontendConnection getConnection(SocketChannel channel) {
SystemConfig sys = CobarServer.getInstance().getConfig().getSystem();
ServerConnection c = new ServerConnection(channel);
c.setPrivileges(new CobarPrivileges());
c.setQueryHandler(new ServerQueryHandler(c));
// c.setPrepareHandler(new ServerPrepareHandler(c)); TODO prepare
c.setTxIsolation(sys.getTxIsolation());
c.setSession(new BlockingSession(c));
c.setSession2(new NonBlockingSession(c));
return c;
}
use of com.alibaba.cobar.config.model.SystemConfig in project cobar by alibaba.
the class CobarServer method startup.
public void startup() throws IOException {
// server startup
LOGGER.info("===============================================");
LOGGER.info(NAME + " is ready to startup ...");
SystemConfig system = config.getSystem();
timer.schedule(updateTime(), 0L, TIME_UPDATE_PERIOD);
// startup processors
LOGGER.info("Startup processors ...");
int handler = system.getProcessorHandler();
int executor = system.getProcessorExecutor();
int committer = system.getProcessorCommitter();
processors = new NIOProcessor[system.getProcessors()];
for (int i = 0; i < processors.length; i++) {
processors[i] = new NIOProcessor("Processor" + i, handler, executor, committer);
processors[i].startup();
}
timer.schedule(processorCheck(), 0L, system.getProcessorCheckPeriod());
// startup connector
LOGGER.info("Startup connector ...");
connector = new NIOConnector(NAME + "Connector");
connector.setProcessors(processors);
connector.start();
// init dataNodes
Map<String, MySQLDataNode> dataNodes = config.getDataNodes();
LOGGER.info("Initialize dataNodes ...");
for (MySQLDataNode node : dataNodes.values()) {
node.init(1, 0);
}
timer.schedule(dataNodeIdleCheck(), 0L, system.getDataNodeIdleCheckPeriod());
timer.schedule(dataNodeHeartbeat(), 0L, system.getDataNodeHeartbeatPeriod());
// startup manager
ManagerConnectionFactory mf = new ManagerConnectionFactory();
mf.setCharset(system.getCharset());
mf.setIdleTimeout(system.getIdleTimeout());
manager = new NIOAcceptor(NAME + "Manager", system.getManagerPort(), mf);
manager.setProcessors(processors);
manager.start();
LOGGER.info(manager.getName() + " is started and listening on " + manager.getPort());
// startup server
ServerConnectionFactory sf = new ServerConnectionFactory();
sf.setCharset(system.getCharset());
sf.setIdleTimeout(system.getIdleTimeout());
server = new NIOAcceptor(NAME + "Server", system.getServerPort(), sf);
server.setProcessors(processors);
server.start();
timer.schedule(clusterHeartbeat(), 0L, system.getClusterHeartbeatPeriod());
// server started
LOGGER.info(server.getName() + " is started and listening on " + server.getPort());
LOGGER.info("===============================================");
}
use of com.alibaba.cobar.config.model.SystemConfig in project cobar by alibaba.
the class CobarDetectorFactory method make.
public CobarDetector make(CobarHeartbeat heartbeat) throws IOException {
SocketChannel channel = openSocketChannel();
CobarNodeConfig cnc = heartbeat.getNode().getConfig();
SystemConfig sys = CobarServer.getInstance().getConfig().getSystem();
CobarDetector detector = new CobarDetector(channel);
detector.setHost(cnc.getHost());
detector.setPort(cnc.getPort());
detector.setUser(sys.getClusterHeartbeatUser());
detector.setPassword(sys.getClusterHeartbeatPass());
detector.setHeartbeatTimeout(sys.getClusterHeartbeatTimeout());
detector.setHeartbeat(heartbeat);
postConnect(detector, CobarServer.getInstance().getConnector());
return detector;
}
Aggregations