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

org.elasticsearch.action.deletebyquery.DeleteByQueryRequest Maven / Gradle / Ivy

There is a newer version: 8.13.4
Show newest version
/*
 * 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.deletebyquery;

import org.apache.lucene.util.UnicodeUtil;
import org.elasticsearch.ElasticSearchGenerationException;
import org.elasticsearch.action.ActionRequestValidationException;
import org.elasticsearch.action.support.replication.IndicesReplicationOperationRequest;
import org.elasticsearch.client.Requests;
import org.elasticsearch.index.query.QueryBuilder;
import org.elasticsearch.util.Required;
import org.elasticsearch.util.Strings;
import org.elasticsearch.util.TimeValue;
import org.elasticsearch.util.Unicode;
import org.elasticsearch.util.io.FastByteArrayOutputStream;
import org.elasticsearch.util.io.stream.StreamInput;
import org.elasticsearch.util.io.stream.StreamOutput;
import org.elasticsearch.util.xcontent.XContentFactory;
import org.elasticsearch.util.xcontent.XContentType;
import org.elasticsearch.util.xcontent.builder.BinaryXContentBuilder;
import org.elasticsearch.util.xcontent.builder.XContentBuilder;

import java.io.IOException;
import java.util.Arrays;
import java.util.Map;

import static org.elasticsearch.action.Actions.*;

/**
 * A request to delete all documents that matching a specific query. Best created with
 * {@link org.elasticsearch.client.Requests#deleteByQueryRequest(String...)}.
 *
 * 

The request requires the query source to be set either using {@link #query(org.elasticsearch.index.query.QueryBuilder)}, * or {@link #query(byte[])}. * * @author kimchy (shay.banon) * @see DeleteByQueryResponse * @see org.elasticsearch.client.Requests#deleteByQueryRequest(String...) * @see org.elasticsearch.client.Client#deleteByQuery(DeleteByQueryRequest) */ public class DeleteByQueryRequest extends IndicesReplicationOperationRequest { private static final XContentType contentType = Requests.CONTENT_TYPE; private byte[] querySource; private int querySourceOffset; private int querySourceLength; private boolean querySourceUnsafe; private String queryParserName; private String[] types = Strings.EMPTY_ARRAY; /** * Constructs a new delete by query request to run against the provided indices. No indices means * it will run against all indices. */ public DeleteByQueryRequest(String... indices) { this.indices = indices; } DeleteByQueryRequest() { } /** * Should the listener be called on a separate thread if needed. */ @Override public DeleteByQueryRequest listenerThreaded(boolean threadedListener) { super.listenerThreaded(threadedListener); return this; } @Override public ActionRequestValidationException validate() { ActionRequestValidationException validationException = super.validate(); if (querySource == null) { validationException = addValidationError("query is missing", validationException); } return validationException; } public DeleteByQueryRequest indices(String... indices) { this.indices = indices; return this; } /** * The query source to execute. */ byte[] querySource() { if (querySourceUnsafe || querySourceOffset > 0) { querySource = Arrays.copyOfRange(querySource, querySourceOffset, querySourceLength); querySourceOffset = 0; querySourceUnsafe = false; } return querySource; } /** * The query source to execute. * * @see org.elasticsearch.index.query.xcontent.QueryBuilders */ @Required public DeleteByQueryRequest query(QueryBuilder queryBuilder) { FastByteArrayOutputStream bos = queryBuilder.buildAsUnsafeBytes(); this.querySource = bos.unsafeByteArray(); this.querySourceOffset = 0; this.querySourceLength = bos.size(); this.querySourceUnsafe = true; return this; } /** * The query source to execute. It is preferable to use either {@link #query(byte[])} * or {@link #query(org.elasticsearch.index.query.QueryBuilder)}. */ @Required public DeleteByQueryRequest query(String querySource) { UnicodeUtil.UTF8Result result = Unicode.fromStringAsUtf8(querySource); this.querySource = result.result; this.querySourceOffset = 0; this.querySourceLength = result.length; this.querySourceUnsafe = true; return this; } /** * The query source to execute in the form of a map. */ @Required public DeleteByQueryRequest query(Map querySource) { try { BinaryXContentBuilder builder = XContentFactory.contentBinaryBuilder(contentType); builder.map(querySource); return query(builder); } catch (IOException e) { throw new ElasticSearchGenerationException("Failed to generate [" + querySource + "]", e); } } @Required public DeleteByQueryRequest query(XContentBuilder builder) { try { this.querySource = builder.unsafeBytes(); this.querySourceOffset = 0; this.querySourceLength = builder.unsafeBytesLength(); this.querySourceUnsafe = true; return this; } catch (IOException e) { throw new ElasticSearchGenerationException("Failed to generate [" + builder + "]", e); } } /** * The query source to execute. */ @Required public DeleteByQueryRequest query(byte[] querySource) { return query(querySource, 0, querySource.length, false); } /** * The query source to execute. */ @Required public DeleteByQueryRequest query(byte[] querySource, int offset, int length, boolean unsafe) { this.querySource = querySource; this.querySourceOffset = offset; this.querySourceLength = length; this.querySourceUnsafe = unsafe; return this; } /** * The query parse name to use. If not set, will use the default one. */ String queryParserName() { return queryParserName; } /** * The query parse name to use. If not set, will use the default one. */ public DeleteByQueryRequest queryParserName(String queryParserName) { this.queryParserName = queryParserName; return this; } /** * The types of documents the query will run against. Defaults to all types. */ String[] types() { return this.types; } /** * The types of documents the query will run against. Defaults to all types. */ public DeleteByQueryRequest types(String... types) { this.types = types; return this; } /** * A timeout to wait if the delete by query operation can't be performed immediately. Defaults to 1m. */ public DeleteByQueryRequest timeout(TimeValue timeout) { this.timeout = timeout; return this; } public void readFrom(StreamInput in) throws IOException { super.readFrom(in); querySourceUnsafe = false; querySourceOffset = 0; querySourceLength = in.readVInt(); querySource = new byte[querySourceLength]; in.readFully(querySource); if (in.readBoolean()) { queryParserName = in.readUTF(); } } public void writeTo(StreamOutput out) throws IOException { super.writeTo(out); out.writeVInt(querySourceLength); out.writeBytes(querySource, querySourceOffset, querySourceLength); if (queryParserName == null) { out.writeBoolean(false); } else { out.writeBoolean(true); out.writeUTF(queryParserName); } } @Override public String toString() { return "[" + Arrays.toString(indices) + "][" + Arrays.toString(types) + "], querySource[" + Unicode.fromBytes(querySource) + "]"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy