Skip to content

Commit 8403bab

Browse files
authored
Fix type about repeated word 'the the' (opensearch-project#8056)
Signed-off-by: leedonggyu <donggyu04@naver.com>
1 parent dc7ea24 commit 8403bab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_data-prepper/pipelines/configuration/sources/opensearch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Option | Required | Type | Description
135135

136136
### Scheduling
137137

138-
The `scheduling` configuration allows the user to configure how indexes are reprocessed in the source based on the the `index_read_count` and recount time `interval`.
138+
The `scheduling` configuration allows the user to configure how indexes are reprocessed in the source based on the `index_read_count` and recount time `interval`.
139139

140140
For example, setting `index_read_count` to `3` with an `interval` of `1h` will result in all indexes being reprocessed 3 times, 1 hour apart. By default, indexes will only be processed once.
141141

_search-plugins/sql/sql/complex.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Result set:
151151
### Example 2: Cross join
152152

153153
Cross join, also known as cartesian join, combines each document from the first index with each document from the second.
154-
The result set is the the cartesian product of documents of both indexes.
154+
The result set is the cartesian product of documents of both indexes.
155155
This operation is similar to the inner join without the `ON` clause that specifies the join condition.
156156

157157
It's risky to perform cross join on two indexes of large or even medium size. It might trigger a circuit breaker that terminates the query to avoid running out of memory.

0 commit comments

Comments
 (0)