@@ -4864,17 +4864,16 @@ public final <TDocument> ScrollResponse<TDocument> scroll(
48644864 * When paging through a large number of documents, it can be helpful to split
48654865 * the search into multiple slices to consume them independently with the
48664866 * <code>slice</code> and <code>pit</code> properties. By default the splitting
4867- * is done first on the shards, then locally on each shard. The local splitting
4868- * partitions the shard into contiguous ranges based on Lucene document IDs.
4867+ * is done first on the shards, then locally on each shard.
48694868 * <p>
48704869 * For instance if the number of shards is equal to 2 and you request 4 slices,
48714870 * the slices 0 and 2 are assigned to the first shard and the slices 1 and 3 are
48724871 * assigned to the second shard.
48734872 * <p>
48744873 * IMPORTANT: The same point-in-time ID should be used for all slices. If
48754874 * different PIT IDs are used, slices can overlap and miss documents. This
4876- * situation can occur because the splitting criterion is based on Lucene
4877- * document IDs, which are not stable across changes to the index.
4875+ * situation can occur because, by default, the splitting criterion is based on
4876+ * Lucene document IDs, which are not stable across changes to the index.
48784877 *
48794878 * @see <a href=
48804879 * "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-search">Documentation
@@ -4909,17 +4908,16 @@ public <TDocument> SearchResponse<TDocument> search(SearchRequest request, Class
49094908 * When paging through a large number of documents, it can be helpful to split
49104909 * the search into multiple slices to consume them independently with the
49114910 * <code>slice</code> and <code>pit</code> properties. By default the splitting
4912- * is done first on the shards, then locally on each shard. The local splitting
4913- * partitions the shard into contiguous ranges based on Lucene document IDs.
4911+ * is done first on the shards, then locally on each shard.
49144912 * <p>
49154913 * For instance if the number of shards is equal to 2 and you request 4 slices,
49164914 * the slices 0 and 2 are assigned to the first shard and the slices 1 and 3 are
49174915 * assigned to the second shard.
49184916 * <p>
49194917 * IMPORTANT: The same point-in-time ID should be used for all slices. If
49204918 * different PIT IDs are used, slices can overlap and miss documents. This
4921- * situation can occur because the splitting criterion is based on Lucene
4922- * document IDs, which are not stable across changes to the index.
4919+ * situation can occur because, by default, the splitting criterion is based on
4920+ * Lucene document IDs, which are not stable across changes to the index.
49234921 *
49244922 * @param fn
49254923 * a function that initializes a builder to create the
@@ -4974,17 +4972,16 @@ public final SearchResponse<Void> search(Function<SearchRequest.Builder, ObjectB
49744972 * When paging through a large number of documents, it can be helpful to split
49754973 * the search into multiple slices to consume them independently with the
49764974 * <code>slice</code> and <code>pit</code> properties. By default the splitting
4977- * is done first on the shards, then locally on each shard. The local splitting
4978- * partitions the shard into contiguous ranges based on Lucene document IDs.
4975+ * is done first on the shards, then locally on each shard.
49794976 * <p>
49804977 * For instance if the number of shards is equal to 2 and you request 4 slices,
49814978 * the slices 0 and 2 are assigned to the first shard and the slices 1 and 3 are
49824979 * assigned to the second shard.
49834980 * <p>
49844981 * IMPORTANT: The same point-in-time ID should be used for all slices. If
49854982 * different PIT IDs are used, slices can overlap and miss documents. This
4986- * situation can occur because the splitting criterion is based on Lucene
4987- * document IDs, which are not stable across changes to the index.
4983+ * situation can occur because, by default, the splitting criterion is based on
4984+ * Lucene document IDs, which are not stable across changes to the index.
49884985 *
49894986 * @see <a href=
49904987 * "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-search">Documentation
@@ -5019,17 +5016,16 @@ public <TDocument> SearchResponse<TDocument> search(SearchRequest request, Type
50195016 * When paging through a large number of documents, it can be helpful to split
50205017 * the search into multiple slices to consume them independently with the
50215018 * <code>slice</code> and <code>pit</code> properties. By default the splitting
5022- * is done first on the shards, then locally on each shard. The local splitting
5023- * partitions the shard into contiguous ranges based on Lucene document IDs.
5019+ * is done first on the shards, then locally on each shard.
50245020 * <p>
50255021 * For instance if the number of shards is equal to 2 and you request 4 slices,
50265022 * the slices 0 and 2 are assigned to the first shard and the slices 1 and 3 are
50275023 * assigned to the second shard.
50285024 * <p>
50295025 * IMPORTANT: The same point-in-time ID should be used for all slices. If
50305026 * different PIT IDs are used, slices can overlap and miss documents. This
5031- * situation can occur because the splitting criterion is based on Lucene
5032- * document IDs, which are not stable across changes to the index.
5027+ * situation can occur because, by default, the splitting criterion is based on
5028+ * Lucene document IDs, which are not stable across changes to the index.
50335029 *
50345030 * @param fn
50355031 * a function that initializes a builder to create the
0 commit comments