Class PutAutoFollowPatternRequest.Builder

java.lang.Object
co.elastic.clients.elasticsearch.ccr.PutAutoFollowPatternRequest.Builder
All Implemented Interfaces:
ObjectBuilder<PutAutoFollowPatternRequest>
Enclosing class:
PutAutoFollowPatternRequest

public static class PutAutoFollowPatternRequest.Builder
extends java.lang.Object
implements ObjectBuilder<PutAutoFollowPatternRequest>
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • name

      public PutAutoFollowPatternRequest.Builder name​(java.lang.String value)
      Required - The name of the collection of auto-follow patterns.

      API name: name

    • remoteCluster

      public PutAutoFollowPatternRequest.Builder remoteCluster​(java.lang.String value)
      Required - The remote cluster containing the leader indices to match against.

      API name: remote_cluster

    • followIndexPattern

      public PutAutoFollowPatternRequest.Builder followIndexPattern​(@Nullable java.lang.String value)
      The name of follower index. The template {{leader_index}} can be used to derive the name of the follower index from the name of the leader index. When following a data stream, use {{leader_index}}; CCR does not support changes to the names of a follower data stream’s backing indices.

      API name: follow_index_pattern

    • leaderIndexPatterns

      public PutAutoFollowPatternRequest.Builder leaderIndexPatterns​(@Nullable java.util.List<java.lang.String> value)
      An array of simple index patterns to match against indices in the remote cluster specified by the remote_cluster field.

      API name: leader_index_patterns

    • leaderIndexPatterns

      public PutAutoFollowPatternRequest.Builder leaderIndexPatterns​(java.lang.String... value)
      An array of simple index patterns to match against indices in the remote cluster specified by the remote_cluster field.

      API name: leader_index_patterns

    • addLeaderIndexPatterns

      public PutAutoFollowPatternRequest.Builder addLeaderIndexPatterns​(java.lang.String value)
      Add a value to leaderIndexPatterns(List), creating the list if needed.
    • leaderIndexExclusionPatterns

      public PutAutoFollowPatternRequest.Builder leaderIndexExclusionPatterns​(@Nullable java.util.List<java.lang.String> value)
      An array of simple index patterns that can be used to exclude indices from being auto-followed. Indices in the remote cluster whose names are matching one or more leader_index_patterns and one or more leader_index_exclusion_patterns won’t be followed.

      API name: leader_index_exclusion_patterns

    • leaderIndexExclusionPatterns

      public PutAutoFollowPatternRequest.Builder leaderIndexExclusionPatterns​(java.lang.String... value)
      An array of simple index patterns that can be used to exclude indices from being auto-followed. Indices in the remote cluster whose names are matching one or more leader_index_patterns and one or more leader_index_exclusion_patterns won’t be followed.

      API name: leader_index_exclusion_patterns

    • addLeaderIndexExclusionPatterns

      public PutAutoFollowPatternRequest.Builder addLeaderIndexExclusionPatterns​(java.lang.String value)
      Add a value to leaderIndexExclusionPatterns(List), creating the list if needed.
    • maxOutstandingReadRequests

      public PutAutoFollowPatternRequest.Builder maxOutstandingReadRequests​(@Nullable java.lang.Integer value)
      The maximum number of outstanding reads requests from the remote cluster.

      API name: max_outstanding_read_requests

    • settings

      public PutAutoFollowPatternRequest.Builder settings​(@Nullable java.util.Map<java.lang.String,​JsonData> value)
      Settings to override from the leader index. Note that certain settings can not be overrode (e.g., index.number_of_shards).

      API name: settings

    • putSettings

      public PutAutoFollowPatternRequest.Builder putSettings​(java.lang.String key, JsonData value)
      Add a key/value to settings(Map), creating the map if needed.
    • maxOutstandingWriteRequests

      public PutAutoFollowPatternRequest.Builder maxOutstandingWriteRequests​(@Nullable java.lang.Integer value)
      The maximum number of outstanding reads requests from the remote cluster.

      API name: max_outstanding_write_requests

    • readPollTimeout

      public PutAutoFollowPatternRequest.Builder readPollTimeout​(@Nullable java.lang.String value)
      The maximum time to wait for new operations on the remote cluster when the follower index is synchronized with the leader index. When the timeout has elapsed, the poll for operations will return to the follower so that it can update some statistics. Then the follower will immediately attempt to read from the leader again.

      API name: read_poll_timeout

    • maxReadRequestOperationCount

      public PutAutoFollowPatternRequest.Builder maxReadRequestOperationCount​(@Nullable java.lang.Integer value)
      The maximum number of operations to pull per read from the remote cluster.

      API name: max_read_request_operation_count

    • maxReadRequestSize

      public PutAutoFollowPatternRequest.Builder maxReadRequestSize​(@Nullable java.lang.String value)
      The maximum size in bytes of per read of a batch of operations pulled from the remote cluster.

      API name: max_read_request_size

    • maxRetryDelay

      public PutAutoFollowPatternRequest.Builder maxRetryDelay​(@Nullable java.lang.String value)
      The maximum time to wait before retrying an operation that failed exceptionally. An exponential backoff strategy is employed when retrying.

      API name: max_retry_delay

    • maxWriteBufferCount

      public PutAutoFollowPatternRequest.Builder maxWriteBufferCount​(@Nullable java.lang.Integer value)
      The maximum number of operations that can be queued for writing. When this limit is reached, reads from the remote cluster will be deferred until the number of queued operations goes below the limit.

      API name: max_write_buffer_count

    • maxWriteBufferSize

      public PutAutoFollowPatternRequest.Builder maxWriteBufferSize​(@Nullable java.lang.String value)
      The maximum total bytes of operations that can be queued for writing. When this limit is reached, reads from the remote cluster will be deferred until the total bytes of queued operations goes below the limit.

      API name: max_write_buffer_size

    • maxWriteRequestOperationCount

      public PutAutoFollowPatternRequest.Builder maxWriteRequestOperationCount​(@Nullable java.lang.Integer value)
      The maximum number of operations per bulk write request executed on the follower.

      API name: max_write_request_operation_count

    • maxWriteRequestSize

      public PutAutoFollowPatternRequest.Builder maxWriteRequestSize​(@Nullable java.lang.String value)
      The maximum total bytes of operations per bulk write request executed on the follower.

      API name: max_write_request_size

    • build

      Specified by:
      build in interface ObjectBuilder<PutAutoFollowPatternRequest>
      Throws:
      java.lang.NullPointerException - if some of the required fields are null.