elasticSearch6源码分析(12)DiscoveryModule
生活随笔
收集整理的這篇文章主要介紹了
elasticSearch6源码分析(12)DiscoveryModule
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1.DiscoveryModule概述
/*** A module for loading classes for node discovery.*/2.discovery?
The discovery module is responsible for discovering nodes within a cluster, as well as electing a master node.Note, Elasticsearch is a peer to peer based system, nodes communicate with one another directly if operations are delegated / broadcast. All the main APIs (index, delete, search) do not communicate with the master node. The responsibility of the master node is to maintain the global cluster state, and act if nodes join or leave the cluster by reassigning shards. Each time a cluster state is changed, the state is made known to the other nodes in the cluster (the manner depends on the actual discovery implementation).調(diào)用情況Node.java
final DiscoveryModule discoveryModule = new DiscoveryModule(this.settings, threadPool, transportService, namedWriteableRegistry,networkService, clusterService.getMasterService(), clusterService.getClusterApplierService(),clusterService.getClusterSettings(), pluginsService.filterPlugins(DiscoveryPlugin.class),clusterModule.getAllocationService(), environment.configFile());this.nodeService = new NodeService(settings, threadPool, monitorService, discoveryModule.getDiscovery(),transportService, indicesService, pluginsService, circuitBreakerService, scriptModule.getScriptService(),httpServerTransport, ingestService, clusterService, settingsModule.getSettingsFilter(), responseCollectorService,searchTransportService);Discovery接口
/*** A pluggable module allowing to implement discovery of other nodes, publishing of the cluster* state to all nodes, electing a master of the cluster that raises cluster state change* events.*/實(shí)現(xiàn)類有兩個(gè):
2.1?SingleNodeDiscovery
構(gòu)造方法
public SingleNodeDiscovery(final Settings settings, final TransportService transportService,final MasterService masterService, final ClusterApplier clusterApplier) {super(Objects.requireNonNull(settings));this.transportService = Objects.requireNonNull(transportService);masterService.setClusterStateSupplier(() -> clusterState);this.clusterApplier = clusterApplier;}啟動(dòng)方法
@Overrideprotected synchronized void doStart() {// set initial stateDiscoveryNode localNode = transportService.getLocalNode();clusterState = createInitialState(localNode);clusterApplier.setInitialState(clusterState);}?
2.2?ZenDiscovery
構(gòu)造方法
public ZenDiscovery(Settings settings, ThreadPool threadPool, TransportService transportService,NamedWriteableRegistry namedWriteableRegistry, MasterService masterService, ClusterApplier clusterApplier,ClusterSettings clusterSettings, UnicastHostsProvider hostsProvider, AllocationService allocationService,Collection<BiConsumer<DiscoveryNode, ClusterState>> onJoinValidators) {super(settings);this.onJoinValidators = addBuiltInJoinValidators(onJoinValidators);this.masterService = masterService;this.clusterApplier = clusterApplier;this.transportService = transportService;this.discoverySettings = new DiscoverySettings(settings, clusterSettings);this.zenPing = newZenPing(settings, threadPool, transportService, hostsProvider);this.electMaster = new ElectMasterService(settings);this.pingTimeout = PING_TIMEOUT_SETTING.get(settings);this.joinTimeout = JOIN_TIMEOUT_SETTING.get(settings);this.joinRetryAttempts = JOIN_RETRY_ATTEMPTS_SETTING.get(settings);this.joinRetryDelay = JOIN_RETRY_DELAY_SETTING.get(settings);this.maxPingsFromAnotherMaster = MAX_PINGS_FROM_ANOTHER_MASTER_SETTING.get(settings);this.sendLeaveRequest = SEND_LEAVE_REQUEST_SETTING.get(settings);this.threadPool = threadPool;ClusterName clusterName = ClusterName.CLUSTER_NAME_SETTING.get(settings);this.committedState = new AtomicReference<>();this.masterElectionIgnoreNonMasters = MASTER_ELECTION_IGNORE_NON_MASTER_PINGS_SETTING.get(settings);this.masterElectionWaitForJoinsTimeout = MASTER_ELECTION_WAIT_FOR_JOINS_TIMEOUT_SETTING.get(settings);logger.debug("using ping_timeout [{}], join.timeout [{}], master_election.ignore_non_master [{}]",this.pingTimeout, joinTimeout, masterElectionIgnoreNonMasters);clusterSettings.addSettingsUpdateConsumer(ElectMasterService.DISCOVERY_ZEN_MINIMUM_MASTER_NODES_SETTING,this::handleMinimumMasterNodesChanged, (value) -> {final ClusterState clusterState = this.clusterState();int masterNodes = clusterState.nodes().getMasterNodes().size();// the purpose of this validation is to make sure that the master doesn't step down// due to a change in master nodes, which also means that there is no way to revert// an accidental change. Since we validate using the current cluster state (and// not the one from which the settings come from) we have to be careful and only// validate if the local node is already a master. Doing so all the time causes// subtle issues. For example, a node that joins a cluster has no nodes in its// current cluster state. When it receives a cluster state from the master with// a dynamic minimum master nodes setting int it, we must make sure we don't reject// it.if (clusterState.nodes().isLocalNodeElectedMaster() && value > masterNodes) {throw new IllegalArgumentException("cannot set "+ ElectMasterService.DISCOVERY_ZEN_MINIMUM_MASTER_NODES_SETTING.getKey() + " to more than the current" +" master nodes count [" + masterNodes + "]");}});this.masterFD = new MasterFaultDetection(settings, threadPool, transportService, this::clusterState, masterService, clusterName);this.masterFD.addListener(new MasterNodeFailureListener());this.nodesFD = new NodesFaultDetection(settings, threadPool, transportService, this::clusterState, clusterName);this.nodesFD.addListener(new NodeFaultDetectionListener());this.pendingStatesQueue = new PendingClusterStatesQueue(logger, MAX_PENDING_CLUSTER_STATES_SETTING.get(settings));this.publishClusterState =new PublishClusterStateAction(settings,transportService,namedWriteableRegistry,this,discoverySettings);this.membership = new MembershipAction(settings, transportService, new MembershipListener(), onJoinValidators);this.joinThreadControl = new JoinThreadControl();this.nodeJoinController = new NodeJoinController(masterService, allocationService, electMaster, settings);this.nodeRemovalExecutor = new NodeRemovalClusterStateTaskExecutor(allocationService, electMaster, this::submitRejoin, logger);masterService.setClusterStateSupplier(this::clusterState);transportService.registerRequestHandler(DISCOVERY_REJOIN_ACTION_NAME, RejoinClusterRequest::new, ThreadPool.Names.SAME, new RejoinClusterRequestHandler());}啟動(dòng)方法
@Overrideprotected void doStart() {DiscoveryNode localNode = transportService.getLocalNode();assert localNode != null;synchronized (stateMutex) {// set initial stateassert committedState.get() == null;assert localNode != null;ClusterState.Builder builder = ClusterState.builder(ClusterName.CLUSTER_NAME_SETTING.get(settings));ClusterState initialState = builder.blocks(ClusterBlocks.builder().addGlobalBlock(STATE_NOT_RECOVERED_BLOCK).addGlobalBlock(discoverySettings.getNoMasterBlock())).nodes(DiscoveryNodes.builder().add(localNode).localNodeId(localNode.getId())).build();committedState.set(initialState);clusterApplier.setInitialState(initialState);nodesFD.setLocalNode(localNode);joinThreadControl.start();}zenPing.start();}?
轉(zhuǎn)載于:https://www.cnblogs.com/davidwang456/p/10169058.html
總結(jié)
以上是生活随笔為你收集整理的elasticSearch6源码分析(12)DiscoveryModule的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 在ElasticSearch之下(图解搜
- 下一篇: spring-session-data-