
org.codelibs.elasticsearch.client.action.HttpMultiSearchAction Maven / Gradle / Ivy
/*
* Copyright 2012-2019 CodeLibs Project and the Others.
*
* Licensed 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.codelibs.elasticsearch.client.action;
import org.codelibs.curl.CurlRequest;
import org.codelibs.elasticsearch.client.HttpClient;
import org.codelibs.elasticsearch.client.HttpClient.ContentType;
import org.elasticsearch.ElasticsearchException;
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.action.search.MultiSearchAction;
import org.elasticsearch.action.search.MultiSearchRequest;
import org.elasticsearch.action.search.MultiSearchResponse;
import org.elasticsearch.common.xcontent.XContentFactory;
import org.elasticsearch.common.xcontent.XContentParser;
import org.elasticsearch.common.xcontent.XContentType;
public class HttpMultiSearchAction extends HttpAction {
protected final MultiSearchAction action;
public HttpMultiSearchAction(final HttpClient client, final MultiSearchAction action) {
super(client);
this.action = action;
}
public void execute(final MultiSearchRequest request, final ActionListener listener) {
String source = null;
try {
source = new String(MultiSearchRequest.writeMultiLineFormat(request, XContentFactory.xContent(XContentType.JSON)));
} catch (final Exception e) {
throw new ElasticsearchException("Failed to parse a request.", e);
}
getCurlRequest(request).body(source).execute(response -> {
try (final XContentParser parser = createParser(response)) {
final MultiSearchResponse multiSearchResponse = MultiSearchResponse.fromXContext(parser);
listener.onResponse(multiSearchResponse);
} catch (final Exception e) {
listener.onFailure(toElasticsearchException(response, e));
}
}, e -> unwrapElasticsearchException(listener, e));
}
protected CurlRequest getCurlRequest(final MultiSearchRequest request) {
// RestMultiSearchAction
final CurlRequest curlRequest = client.getCurlRequest(GET, ContentType.X_NDJSON, "/_msearch");
if (request.maxConcurrentSearchRequests() > 0) {
curlRequest.param("max_concurrent_searches", Integer.toString(request.maxConcurrentSearchRequests()));
}
return curlRequest;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy