Skip to content

Commit

Permalink
Fix type about repeated word 'the the' (#8056) (#8057)
Browse files Browse the repository at this point in the history
  • Loading branch information
opensearch-trigger-bot[bot] committed Aug 20, 2024
1 parent b758da9 commit 196f301
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Option | Required | Type | Description

### Scheduling

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`.
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`.

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.

Expand Down
2 changes: 1 addition & 1 deletion _search-plugins/sql/sql/complex.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Result set:
### Example 2: Cross join

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

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.
Expand Down

0 comments on commit 196f301

Please sign in to comment.