All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction Maven / Gradle / Ivy

/*
 * Licensed to Elastic Search and Shay Banon under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. Elastic Search licenses this
 * file to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.elasticsearch.action.admin.cluster.node.info;

import org.elasticsearch.ElasticSearchException;
import org.elasticsearch.action.TransportActions;
import org.elasticsearch.action.support.nodes.NodeOperationRequest;
import org.elasticsearch.action.support.nodes.TransportNodesOperationAction;
import org.elasticsearch.cluster.ClusterName;
import org.elasticsearch.cluster.ClusterService;
import org.elasticsearch.common.Nullable;
import org.elasticsearch.common.collect.ImmutableMap;
import org.elasticsearch.common.collect.MapBuilder;
import org.elasticsearch.common.inject.Inject;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.http.HttpServer;
import org.elasticsearch.monitor.MonitorService;
import org.elasticsearch.threadpool.ThreadPool;
import org.elasticsearch.transport.TransportService;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicReferenceArray;

/**
 * @author kimchy (shay.banon)
 */
public class TransportNodesInfoAction extends TransportNodesOperationAction {

    private final MonitorService monitorService;

    private volatile ImmutableMap nodeAttributes = ImmutableMap.of();

    @Nullable private HttpServer httpServer;

    @Inject public TransportNodesInfoAction(Settings settings, ClusterName clusterName, ThreadPool threadPool,
                                            ClusterService clusterService, TransportService transportService,
                                            MonitorService monitorService) {
        super(settings, clusterName, threadPool, clusterService, transportService);
        this.monitorService = monitorService;
    }

    public void setHttpServer(@Nullable HttpServer httpServer) {
        this.httpServer = httpServer;
    }

    public synchronized void putNodeAttribute(String key, String value) {
        nodeAttributes = new MapBuilder().putAll(nodeAttributes).put(key, value).immutableMap();
    }

    public synchronized void removeNodeAttribute(String key) {
        nodeAttributes = new MapBuilder().putAll(nodeAttributes).remove(key).immutableMap();
    }

    @Override protected String executor() {
        return ThreadPool.Names.CACHED;
    }

    @Override protected String transportAction() {
        return TransportActions.Admin.Cluster.Node.INFO;
    }

    @Override protected String transportNodeAction() {
        return "/cluster/nodes/info/node";
    }

    @Override protected NodesInfoResponse newResponse(NodesInfoRequest nodesInfoRequest, AtomicReferenceArray responses) {
        final List nodesInfos = new ArrayList();
        for (int i = 0; i < responses.length(); i++) {
            Object resp = responses.get(i);
            if (resp instanceof NodeInfo) {
                nodesInfos.add((NodeInfo) resp);
            }
        }
        return new NodesInfoResponse(clusterName, nodesInfos.toArray(new NodeInfo[nodesInfos.size()]));
    }

    @Override protected NodesInfoRequest newRequest() {
        return new NodesInfoRequest();
    }

    @Override protected NodeInfoRequest newNodeRequest() {
        return new NodeInfoRequest();
    }

    @Override protected NodeInfoRequest newNodeRequest(String nodeId, NodesInfoRequest request) {
        return new NodeInfoRequest(nodeId);
    }

    @Override protected NodeInfo newNodeResponse() {
        return new NodeInfo();
    }

    @Override protected NodeInfo nodeOperation(NodeInfoRequest nodeInfoRequest) throws ElasticSearchException {
        return new NodeInfo(clusterService.state().nodes().localNode(), nodeAttributes, settings,
                monitorService.osService().info(), monitorService.processService().info(),
                monitorService.jvmService().info(), monitorService.networkService().info(),
                transportService.info(), httpServer == null ? null : httpServer.info());
    }

    @Override protected boolean accumulateExceptions() {
        return false;
    }

    protected static class NodeInfoRequest extends NodeOperationRequest {

        private NodeInfoRequest() {
        }

        private NodeInfoRequest(String nodeId) {
            super(nodeId);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy