com.hazelcast.instance.Node类的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(8.0k)|赞(0)|评价(0)|浏览(293)

本文整理了Java中com.hazelcast.instance.Node类的一些代码示例,展示了Node类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node类的具体详情如下:
包路径:com.hazelcast.instance.Node
类名称:Node

Node介绍

暂无

代码示例

代码示例来源:origin: hazelcast/hazelcast-jet

  1. JetInstanceImpl(HazelcastInstanceImpl hazelcastInstance, JetConfig config) {
  2. super(hazelcastInstance);
  3. this.nodeEngine = hazelcastInstance.node.getNodeEngine();
  4. this.config = config;
  5. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public void shouldConnectTo(Address address) {
  3. if (node.getThisAddress().equals(address)) {
  4. throw new RuntimeException("Connecting to self! " + address);
  5. }
  6. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public Config getConfig() {
  3. return node.getConfig();
  4. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. private void changeNodeState(ClusterState newState) {
  2. if (newState == ClusterState.PASSIVE) {
  3. node.changeNodeStateToPassive();
  4. } else {
  5. node.changeNodeStateToActive();
  6. }
  7. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. public NodeMulticastListener(Node node) {
  2. this.node = node;
  3. this.logger = node.getLogger(NodeMulticastListener.class.getName());
  4. this.ourConfig = node.createConfigCheck();
  5. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. public NodeIOService(Node node, NodeEngineImpl nodeEngine) {
  2. this.node = node;
  3. this.nodeEngine = nodeEngine;
  4. restApiConfig = initRestApiConfig(node.getProperties(), node.getConfig());
  5. memcacheProtocolConfig = initMemcacheProtocolConfig(node.getProperties(), node.getConfig());
  6. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. private MulticastService(Node node, MulticastSocket multicastSocket)
  2. throws Exception {
  3. this.logger = node.getLogger(MulticastService.class.getName());
  4. this.node = node;
  5. this.multicastSocket = multicastSocket;
  6. NodeIOService nodeIOService = new NodeIOService(node, node.nodeEngine);
  7. this.inputProcessor = node.getNodeExtension().createMulticastInputProcessor(nodeIOService);
  8. this.outputProcessor = node.getNodeExtension().createMulticastOutputProcessor(nodeIOService);
  9. this.sendOutput = node.getSerializationService().createObjectDataOutput(SEND_OUTPUT_SIZE);
  10. Config config = node.getConfig();
  11. MulticastConfig multicastConfig = config.getNetworkConfig().getJoin().getMulticastConfig();
  12. this.datagramPacketSend = new DatagramPacket(new byte[0], 0, InetAddress.getByName(multicastConfig.getMulticastGroup()),
  13. multicastConfig.getMulticastPort());
  14. this.datagramPacketReceive = new DatagramPacket(new byte[DATAGRAM_BUFFER_SIZE], DATAGRAM_BUFFER_SIZE);
  15. Set<String> trustedInterfaces = multicastConfig.getTrustedInterfaces();
  16. ILogger logger = node.getLogger(JoinMessageTrustChecker.class);
  17. joinMessageTrustChecker = new JoinMessageTrustChecker(trustedInterfaces, logger);
  18. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. MembershipManager(Node node, ClusterServiceImpl clusterService, Lock clusterServiceLock) {
  2. this.node = node;
  3. this.clusterService = clusterService;
  4. this.clusterServiceLock = clusterServiceLock;
  5. this.nodeEngine = node.getNodeEngine();
  6. this.logger = node.getLogger(getClass());
  7. mastershipClaimTimeoutSeconds = node.getProperties().getInteger(MASTERSHIP_CLAIM_TIMEOUT_SECONDS);
  8. registerThisMember();
  9. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. public PartitionStateManager(Node node, InternalPartitionServiceImpl partitionService, PartitionListener listener) {
  2. this.node = node;
  3. this.logger = node.getLogger(getClass());
  4. this.partitionService = partitionService;
  5. this.partitionCount = partitionService.getPartitionCount();
  6. this.partitions = new InternalPartitionImpl[partitionCount];
  7. PartitionReplica localReplica = PartitionReplica.from(node.getLocalMember());
  8. for (int i = 0; i < partitionCount; i++) {
  9. this.partitions[i] = new InternalPartitionImpl(i, listener, localReplica);
  10. }
  11. memberGroupFactory = MemberGroupFactoryFactory.newMemberGroupFactory(node.getConfig().getPartitionGroupConfig(),
  12. node.getDiscoveryService());
  13. partitionStateGenerator = new PartitionStateGeneratorImpl();
  14. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. PartitionReplicaStateChecker(Node node, InternalPartitionServiceImpl partitionService) {
  2. this.node = node;
  3. this.nodeEngine = node.getNodeEngine();
  4. this.partitionService = partitionService;
  5. this.logger = node.getLogger(getClass());
  6. this.partitionStateManager = partitionService.getPartitionStateManager();
  7. this.migrationManager = partitionService.getMigrationManager();
  8. }

代码示例来源:origin: com.hazelcast/hazelcast-cloud

  1. public TcpIpJoinerOverAWS(Node node) {
  2. super(node);
  3. logger = node.getLogger(getClass());
  4. AwsConfig awsConfig = node.getConfig().getNetworkConfig().getJoin().getAwsConfig();
  5. aws = new AWSClient(awsConfig);
  6. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. public ClientEngineImpl(Node node) {
  2. this.logger = node.getLogger(ClientEngine.class);
  3. this.node = node;
  4. this.serializationService = node.getSerializationService();
  5. this.nodeEngine = node.nodeEngine;
  6. this.endpointManager = new ClientEndpointManagerImpl(nodeEngine);
  7. this.executor = newClientExecutor();
  8. this.queryExecutor = newClientQueryExecutor();
  9. this.clientManagementExecutor = newClientsManagementExecutor();
  10. this.messageTaskFactory = new CompositeMessageTaskFactory(nodeEngine);
  11. this.clientExceptions = initClientExceptionFactory();
  12. this.endpointRemoveDelaySeconds = node.getProperties().getInteger(GroupProperty.CLIENT_ENDPOINT_REMOVE_DELAY_SECONDS);
  13. this.partitionListenerService = new ClientPartitionListenerService(nodeEngine);
  14. }

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. private boolean shouldResetHotRestartData() {
  2. final NodeExtension nodeExtension = node.getNodeExtension();
  3. return !nodeExtension.isStartCompleted()
  4. && nodeExtension.getInternalHotRestartService().isMemberExcluded(node.getThisAddress(), node.getThisUuid());
  5. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. if (!setShuttingDown()) {
  2. waitIfAlreadyShuttingDown();
  3. return;
  4. boolean success = callGracefulShutdownAwareServices(maxWaitSeconds);
  5. if (!success) {
  6. logger.warning("Graceful shutdown could not be completed in " + maxWaitSeconds + " seconds!");
  7. shutdownServices(terminate);
  8. state = NodeState.SHUT_DOWN;
  9. logger.info("Hazelcast Shutdown is completed in " + (Clock.currentTimeMillis() - start) + " ms.");

代码示例来源:origin: hazelcast/hazelcast-jet

  1. /** Sends a {@link ShutdownResponseOperation} to the {@code address} or takes a shortcut if shutdown is local. */
  2. private void sendShutdownOperation(Address address) {
  3. if (node.getThisAddress().equals(address)) {
  4. assert !node.isRunning() : "Node state: " + node.getState();
  5. partitionService.onShutdownResponse();
  6. } else {
  7. nodeEngine.getOperationService().send(new ShutdownResponseOperation(), address);
  8. }
  9. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public Member getLocalEndpoint() {
  3. return node.getLocalMember();
  4. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. public SplitBrainJoinMessage createSplitBrainJoinMessage() {
  2. MemberImpl localMember = getLocalMember();
  3. boolean liteMember = localMember.isLiteMember();
  4. Collection<Address> memberAddresses = clusterService.getMemberAddresses();
  5. int dataMemberCount = clusterService.getSize(DATA_MEMBER_SELECTOR);
  6. Version clusterVersion = clusterService.getClusterVersion();
  7. int memberListVersion = clusterService.getMembershipManager().getMemberListVersion();
  8. return new SplitBrainJoinMessage(Packet.VERSION, buildInfo.getBuildNumber(), version, address, localMember.getUuid(),
  9. liteMember, createConfigCheck(), memberAddresses, dataMemberCount, clusterVersion, memberListVersion);
  10. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. @Override
  2. public InternalSerializationService getSerializationService() {
  3. return node.getSerializationService();
  4. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. protected AbstractMessageTask(ClientMessage clientMessage, Node node, Connection connection) {
  2. this.clientMessage = clientMessage;
  3. this.logger = node.getLogger(getClass());
  4. this.node = node;
  5. this.nodeEngine = node.nodeEngine;
  6. this.serializationService = node.getSerializationService();
  7. this.connection = connection;
  8. this.clientEngine = node.clientEngine;
  9. this.endpointManager = clientEngine.getEndpointManager();
  10. this.endpoint = initEndpoint();
  11. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. private Diagnostics newDiagnostics() {
  2. Address address = node.getThisAddress();
  3. String addressString = address.getHost().replace(":", "_") + "_" + address.getPort();
  4. String name = "diagnostics-" + addressString + "-" + currentTimeMillis();
  5. return new Diagnostics(
  6. name,
  7. loggingService.getLogger(Diagnostics.class),
  8. getHazelcastInstance().getName(),
  9. node.getProperties());
  10. }

相关文章