/* * 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. */ /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.action.search; import org.opensearch.action.ActionListener; import org.opensearch.action.support.ActionFilters; import org.opensearch.action.support.HandledTransportAction; import org.opensearch.cluster.service.ClusterService; import org.opensearch.common.inject.Inject; import org.opensearch.core.common.io.stream.Writeable; import org.opensearch.tasks.Task; import org.opensearch.transport.TransportService; /** * Perform the search scroll * * @opensearch.internal */ public class TransportSearchScrollAction extends HandledTransportAction { private final ClusterService clusterService; private final SearchTransportService searchTransportService; private final SearchPhaseController searchPhaseController; @Inject public TransportSearchScrollAction( TransportService transportService, ClusterService clusterService, ActionFilters actionFilters, SearchTransportService searchTransportService, SearchPhaseController searchPhaseController ) { super(SearchScrollAction.NAME, transportService, actionFilters, (Writeable.Reader) SearchScrollRequest::new); this.clusterService = clusterService; this.searchTransportService = searchTransportService; this.searchPhaseController = searchPhaseController; } @Override protected void doExecute(Task task, SearchScrollRequest request, ActionListener listener) { try { ParsedScrollId scrollId = TransportSearchHelper.parseScrollId(request.scrollId()); Runnable action; switch (scrollId.getType()) { case ParsedScrollId.QUERY_THEN_FETCH_TYPE: action = new SearchScrollQueryThenFetchAsyncAction( logger, clusterService, searchTransportService, searchPhaseController, request, (SearchTask) task, scrollId, listener ); break; case ParsedScrollId.QUERY_AND_FETCH_TYPE: // TODO can we get rid of this? action = new SearchScrollQueryAndFetchAsyncAction( logger, clusterService, searchTransportService, searchPhaseController, request, (SearchTask) task, scrollId, listener ); break; default: throw new IllegalArgumentException("Scroll id type [" + scrollId.getType() + "] unrecognized"); } action.run(); } catch (Exception e) { listener.onFailure(e); } } }