sc-publish-out-queue
Version:
SC Publish Out Queue ====================
32 lines (25 loc) • 1.37 kB
JavaScript
var scClusterBrokerClient = require('scc-broker-client');
module.exports.run = function (broker) {
console.log(' >> Broker PID:', process.pid);
// This is defined in server.js (taken from environment variable SC_CLUSTER_STATE_SERVER_HOST).
// If this property is defined, the broker will try to attach itself to the SC cluster for
// automatic horizontal scalability.
// This is mostly intended for the Kubernetes deployment of SocketCluster - In this case,
// The clustering/sharding all happens automatically.
// broker.on('publish',(channel,data) => {
// console.log('BROKER >> SC Server Middleware Publish Out')
// console.log(channel)
// console.log(data)
// console.log('BROKER >> SC Server Middleware Publish Out')
// })
if (broker.options.clusterStateServerHost) {
scClusterBrokerClient.attach(broker, {
stateServerHost: broker.options.clusterStateServerHost,
stateServerPort: broker.options.clusterStateServerPort,
authKey: broker.options.clusterAuthKey,
stateServerConnectTimeout: broker.options.clusterStateServerConnectTimeout,
stateServerAckTimeout: broker.options.clusterStateServerAckTimeout,
stateServerReconnectRandomness: broker.options.clusterStateServerReconnectRandomness
});
}
};