本文整理了Java中com.hazelcast.instance.Node.createConfigCheck()
方法的一些代码示例,展示了Node.createConfigCheck()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.createConfigCheck()
方法的具体详情如下:
包路径:com.hazelcast.instance.Node
类名称:Node
方法名:createConfigCheck
暂无
代码示例来源:origin: hazelcast/hazelcast-jet
public NodeMulticastListener(Node node) {
this.node = node;
this.logger = node.getLogger(NodeMulticastListener.class.getName());
this.ourConfig = node.createConfigCheck();
}
代码示例来源:origin: com.hazelcast/hazelcast-all
public NodeMulticastListener(Node node) {
this.node = node;
this.logger = node.getLogger(NodeMulticastListener.class.getName());
this.ourConfig = node.createConfigCheck();
}
代码示例来源:origin: hazelcast/hazelcast-jet
/**
* Validate that the configuration received from the remote node in {@code joinMessage} is compatible with the
* configuration of this node.
*
* @param joinMessage the {@link JoinMessage} received from another node.
* @return {@code true} if packet version of join message matches this node's packet version and configurations
* are found to be compatible, otherwise {@code false}.
* @throws Exception in case any exception occurred while checking compatibilty
* @see ConfigCheck
*/
public boolean validateJoinMessage(JoinMessage joinMessage) throws Exception {
if (joinMessage.getPacketVersion() != Packet.VERSION) {
return false;
}
try {
ConfigCheck newMemberConfigCheck = joinMessage.getConfigCheck();
ConfigCheck clusterConfigCheck = node.createConfigCheck();
return clusterConfigCheck.isCompatible(newMemberConfigCheck);
} catch (Exception e) {
logger.warning(format("Invalid join request from %s, cause: %s", joinMessage.getAddress(), e.getMessage()));
throw e;
}
}
代码示例来源:origin: com.hazelcast/hazelcast-all
/**
* Validate that the configuration received from the remote node in {@code joinMessage} is compatible with the
* configuration of this node.
*
* @param joinMessage the {@link JoinMessage} received from another node.
* @return {@code true} if packet version of join message matches this node's packet version and configurations
* are found to be compatible, otherwise {@code false}.
* @throws Exception in case any exception occurred while checking compatibilty
* @see ConfigCheck
*/
public boolean validateJoinMessage(JoinMessage joinMessage) throws Exception {
if (joinMessage.getPacketVersion() != Packet.VERSION) {
return false;
}
try {
ConfigCheck newMemberConfigCheck = joinMessage.getConfigCheck();
ConfigCheck clusterConfigCheck = node.createConfigCheck();
return clusterConfigCheck.isCompatible(newMemberConfigCheck);
} catch (Exception e) {
logger.warning(format("Invalid join request from %s, cause: %s", joinMessage.getAddress(), e.getMessage()));
throw e;
}
}
代码示例来源:origin: hazelcast/hazelcast-jet
public JoinRequest createJoinRequest(boolean withCredentials) {
final Credentials credentials = (withCredentials && securityContext != null)
? securityContext.getCredentialsFactory().newCredentials() : null;
final Set<String> excludedMemberUuids = nodeExtension.getInternalHotRestartService().getExcludedMemberUuids();
MemberImpl localMember = getLocalMember();
return new JoinRequest(Packet.VERSION, buildInfo.getBuildNumber(), version, address,
localMember.getUuid(), localMember.isLiteMember(), createConfigCheck(), credentials,
localMember.getAttributes(), excludedMemberUuids);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
public JoinRequest createJoinRequest(boolean withCredentials) {
final Credentials credentials = (withCredentials && securityContext != null)
? securityContext.getCredentialsFactory().newCredentials() : null;
final Set<String> excludedMemberUuids = nodeExtension.getInternalHotRestartService().getExcludedMemberUuids();
MemberImpl localMember = getLocalMember();
return new JoinRequest(Packet.VERSION, buildInfo.getBuildNumber(), version, address,
localMember.getUuid(), localMember.isLiteMember(), createConfigCheck(), credentials,
localMember.getAttributes(), excludedMemberUuids);
}
代码示例来源:origin: hazelcast/hazelcast-jet
public SplitBrainJoinMessage createSplitBrainJoinMessage() {
MemberImpl localMember = getLocalMember();
boolean liteMember = localMember.isLiteMember();
Collection<Address> memberAddresses = clusterService.getMemberAddresses();
int dataMemberCount = clusterService.getSize(DATA_MEMBER_SELECTOR);
Version clusterVersion = clusterService.getClusterVersion();
int memberListVersion = clusterService.getMembershipManager().getMemberListVersion();
return new SplitBrainJoinMessage(Packet.VERSION, buildInfo.getBuildNumber(), version, address, localMember.getUuid(),
liteMember, createConfigCheck(), memberAddresses, dataMemberCount, clusterVersion, memberListVersion);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
public SplitBrainJoinMessage createSplitBrainJoinMessage() {
MemberImpl localMember = getLocalMember();
boolean liteMember = localMember.isLiteMember();
Collection<Address> memberAddresses = clusterService.getMemberAddresses();
int dataMemberCount = clusterService.getSize(DATA_MEMBER_SELECTOR);
Version clusterVersion = clusterService.getClusterVersion();
int memberListVersion = clusterService.getMembershipManager().getMemberListVersion();
return new SplitBrainJoinMessage(Packet.VERSION, buildInfo.getBuildNumber(), version, address, localMember.getUuid(),
liteMember, createConfigCheck(), memberAddresses, dataMemberCount, clusterVersion, memberListVersion);
}
代码示例来源:origin: hazelcast/hazelcast-jet
/**
* Send a {@link WhoisMasterOp} to designated address.
*
* @param toAddress the address to which the operation will be sent.
* @return {@code true} if the operation was sent, otherwise {@code false}.
*/
public boolean sendMasterQuestion(Address toAddress) {
checkNotNull(toAddress, "No endpoint is specified!");
BuildInfo buildInfo = node.getBuildInfo();
final Address thisAddress = node.getThisAddress();
JoinMessage joinMessage = new JoinMessage(Packet.VERSION, buildInfo.getBuildNumber(), node.getVersion(),
thisAddress, clusterService.getThisUuid(), node.isLiteMember(), node.createConfigCheck());
return nodeEngine.getOperationService().send(new WhoisMasterOp(joinMessage), toAddress);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
/**
* Send a {@link WhoisMasterOp} to designated address.
*
* @param toAddress the address to which the operation will be sent.
* @return {@code true} if the operation was sent, otherwise {@code false}.
*/
public boolean sendMasterQuestion(Address toAddress) {
checkNotNull(toAddress, "No endpoint is specified!");
BuildInfo buildInfo = node.getBuildInfo();
final Address thisAddress = node.getThisAddress();
JoinMessage joinMessage = new JoinMessage(Packet.VERSION, buildInfo.getBuildNumber(), node.getVersion(),
thisAddress, clusterService.getThisUuid(), node.isLiteMember(), node.createConfigCheck());
return nodeEngine.getOperationService().send(new WhoisMasterOp(joinMessage), toAddress);
}
代码示例来源:origin: hazelcast/hazelcast-jet
private void handleActiveAndJoined(JoinMessage joinMessage) {
if (!(joinMessage instanceof JoinRequest)) {
logDroppedMessage(joinMessage);
return;
}
ClusterServiceImpl clusterService = node.getClusterService();
Address masterAddress = clusterService.getMasterAddress();
if (clusterService.isMaster()) {
JoinMessage response = new JoinMessage(Packet.VERSION, node.getBuildInfo().getBuildNumber(), node.getVersion(),
node.getThisAddress(), node.getThisUuid(), node.isLiteMember(), node.createConfigCheck());
node.multicastService.send(response);
} else if (joinMessage.getAddress().equals(masterAddress)) {
MemberImpl master = node.getClusterService().getMember(masterAddress);
if (master != null && !master.getUuid().equals(joinMessage.getUuid())) {
String message = "New join request has been received from current master. Suspecting " + masterAddress;
logger.warning(message);
// I just make a local suspicion. Probably other nodes will eventually suspect as well.
clusterService.suspectMember(master, message, false);
}
}
}
代码示例来源:origin: com.hazelcast/hazelcast-all
private void handleActiveAndJoined(JoinMessage joinMessage) {
if (!(joinMessage instanceof JoinRequest)) {
logDroppedMessage(joinMessage);
return;
}
ClusterServiceImpl clusterService = node.getClusterService();
Address masterAddress = clusterService.getMasterAddress();
if (clusterService.isMaster()) {
JoinMessage response = new JoinMessage(Packet.VERSION, node.getBuildInfo().getBuildNumber(), node.getVersion(),
node.getThisAddress(), node.getThisUuid(), node.isLiteMember(), node.createConfigCheck());
node.multicastService.send(response);
} else if (joinMessage.getAddress().equals(masterAddress)) {
MemberImpl master = node.getClusterService().getMember(masterAddress);
if (master != null && !master.getUuid().equals(joinMessage.getUuid())) {
String message = "New join request has been received from current master. Suspecting " + masterAddress;
logger.warning(message);
// I just make a local suspicion. Probably other nodes will eventually suspect as well.
clusterService.suspectMember(master, message, false);
}
}
}
内容来源于网络,如有侵权,请联系作者删除!