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

org.opensearch.action.search.TransportGetAllPitsAction Maven / Gradle / Ivy

There is a newer version: 2.18.0
Show newest version
/*
 * SPDX-License-Identifier: Apache-2.0
 *
 * The OpenSearch Contributors require contributions made to
 * this file be licensed under the Apache-2.0 license or a
 * compatible open source license.
 */

package org.opensearch.action.search;

import org.opensearch.action.FailedNodeException;
import org.opensearch.action.support.ActionFilters;
import org.opensearch.action.support.nodes.TransportNodesAction;
import org.opensearch.cluster.service.ClusterService;
import org.opensearch.common.inject.Inject;
import org.opensearch.core.common.io.stream.StreamInput;
import org.opensearch.search.SearchService;
import org.opensearch.threadpool.ThreadPool;
import org.opensearch.transport.TransportService;

import java.io.IOException;
import java.util.List;

/**
 * Transport action to get all active PIT contexts across all nodes
 */
public class TransportGetAllPitsAction extends TransportNodesAction<
    GetAllPitNodesRequest,
    GetAllPitNodesResponse,
    GetAllPitNodeRequest,
    GetAllPitNodeResponse> {
    private final SearchService searchService;

    @Inject
    public TransportGetAllPitsAction(
        ThreadPool threadPool,
        ClusterService clusterService,
        TransportService transportService,
        ActionFilters actionFilters,
        SearchService searchService
    ) {
        super(
            GetAllPitsAction.NAME,
            threadPool,
            clusterService,
            transportService,
            actionFilters,
            GetAllPitNodesRequest::new,
            GetAllPitNodeRequest::new,
            ThreadPool.Names.SAME,
            GetAllPitNodeResponse.class
        );
        this.searchService = searchService;
    }

    @Override
    protected GetAllPitNodesResponse newResponse(
        GetAllPitNodesRequest request,
        List getAllPitNodeResponses,
        List failures
    ) {
        return new GetAllPitNodesResponse(clusterService.getClusterName(), getAllPitNodeResponses, failures);
    }

    @Override
    protected GetAllPitNodeRequest newNodeRequest(GetAllPitNodesRequest request) {
        return new GetAllPitNodeRequest();
    }

    @Override
    protected GetAllPitNodeResponse newNodeResponse(StreamInput in) throws IOException {
        return new GetAllPitNodeResponse(in);
    }

    /**
     * This retrieves all active PITs in the node
     */
    @Override
    protected GetAllPitNodeResponse nodeOperation(GetAllPitNodeRequest request) {
        GetAllPitNodeResponse nodeResponse = new GetAllPitNodeResponse(
            transportService.getLocalNode(),
            searchService.getAllPITReaderContexts()
        );
        return nodeResponse;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy