Struct elasticsearch::Reindex
source · [−]pub struct Reindex<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Reindex API
Allows to copy documents from one index to another, optionally filtering the source documents by a query, changing the destination index settings, or fetching the documents from a remote cluster.
Implementations
sourceimpl<'a, 'b, B> Reindex<'a, 'b, B> where
B: Body,
impl<'a, 'b, B> Reindex<'a, 'b, B> where
B: Body,
sourcepub fn body<T>(self, body: T) -> Reindex<'a, 'b, JsonBody<T>> where
T: Serialize,
pub fn body<T>(self, body: T) -> Reindex<'a, 'b, JsonBody<T>> where
T: Serialize,
The body for the API call
sourcepub fn error_trace(self, error_trace: bool) -> Self
pub fn error_trace(self, error_trace: bool) -> Self
Include the stack trace of returned errors.
sourcepub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
pub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
A comma-separated list of filters used to reduce the response.
sourcepub fn header(self, key: HeaderName, value: HeaderValue) -> Self
pub fn header(self, key: HeaderName, value: HeaderValue) -> Self
Adds a HTTP header
sourcepub fn max_docs(self, max_docs: i64) -> Self
pub fn max_docs(self, max_docs: i64) -> Self
Maximum number of documents to process (default: all documents)
sourcepub fn request_timeout(self, timeout: Duration) -> Self
pub fn request_timeout(self, timeout: Duration) -> Self
Sets a request timeout for this API call.
The timeout is applied from when the request starts connecting until the response body has finished.
sourcepub fn requests_per_second(self, requests_per_second: i64) -> Self
pub fn requests_per_second(self, requests_per_second: i64) -> Self
The throttle to set on this request in sub-requests per second. -1 means no throttle.
sourcepub fn slices(self, slices: Slices) -> Self
pub fn slices(self, slices: Slices) -> Self
The number of slices this task should be divided into. Defaults to 1, meaning the task isn’t sliced into subtasks. Can be set to auto
.
sourcepub fn source(self, source: &'b str) -> Self
pub fn source(self, source: &'b str) -> Self
The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.
sourcepub fn timeout(self, timeout: &'b str) -> Self
pub fn timeout(self, timeout: &'b str) -> Self
Time each individual bulk request should wait for shards that are unavailable.
sourcepub fn wait_for_active_shards(self, wait_for_active_shards: &'b str) -> Self
pub fn wait_for_active_shards(self, wait_for_active_shards: &'b str) -> Self
Sets the number of shard copies that must be active before proceeding with the reindex operation. Defaults to 1, meaning the primary shard only. Set to all
for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)
sourcepub fn wait_for_completion(self, wait_for_completion: bool) -> Self
pub fn wait_for_completion(self, wait_for_completion: bool) -> Self
Should the request should block until the reindex is complete.
Trait Implementations
Auto Trait Implementations
impl<'a, 'b, B> !RefUnwindSafe for Reindex<'a, 'b, B>
impl<'a, 'b, B> Send for Reindex<'a, 'b, B> where
B: Send,
impl<'a, 'b, B> Sync for Reindex<'a, 'b, B> where
B: Sync,
impl<'a, 'b, B> Unpin for Reindex<'a, 'b, B> where
B: Unpin,
impl<'a, 'b, B> !UnwindSafe for Reindex<'a, 'b, B>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more