Skip to content

Commit 19d8bca

Browse files
committed
Fix broken link
1 parent 4d67066 commit 19d8bca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/reference/elasticsearch/rest-apis/search-profile.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -861,9 +861,9 @@ And here is the fetch profile:
861861

862862
Since this is debugging information about the way that Elasticsearch executes the fetch it can change from request to request and version to version. Even patch versions may change the output here. That lack of consistency is what makes it useful for debugging.
863863

864-
Anyway! `time_in_nanos` measures the time total time of the fetch phase. The `breakdown` counts and times the our per-[segment](https://www.elastic.co/guide/en/elastic-stack-glossary/current/terms.md#glossary-segment) preparation in `next_reader` and the time taken loading stored fields in `load_stored_fields`. Debug contains miscellaneous non-timing information, specifically `stored_fields` lists the stored fields that fetch will have to load. If it is an empty list then fetch will entirely skip loading stored fields.
864+
Anyway! `time_in_nanos` measures the time total time of the fetch phase. The `breakdown` counts and times the our per-segment preparation in `next_reader` and the time taken loading stored fields in `load_stored_fields`. Debug contains miscellaneous non-timing information, specifically `stored_fields` lists the stored fields that fetch will have to load. If it is an empty list then fetch will entirely skip loading stored fields.
865865

866-
The `children` section lists the sub-phases that do the actual fetching work and the `breakdown` has counts and timings for the per-[segment](https://www.elastic.co/guide/en/elastic-stack-glossary/current/terms.md#glossary-segment) preparation in `next_reader` and the per document fetching in `process`.
866+
The `children` section lists the sub-phases that do the actual fetching work and the `breakdown` has counts and timings for the per-segment preparation in `next_reader` and the per document fetching in `process`.
867867

868868
::::{note}
869869
We try hard to load all of the stored fields that we will need for the fetch up front. This tends to make the `_source` phase a couple of microseconds per hit. In that case the true cost of `_source` phase is hidden in the `load_stored_fields` component of the breakdown. It’s possible to entirely skip loading stored fields by setting `"_source": false, "stored_fields": ["_none_"]`.
@@ -961,7 +961,7 @@ In the `dfs.statistics` portion of this response we see a `time_in_nanos` which
961961

962962
#### Profiling kNN search [profiling-knn-search]
963963

964-
A [k-nearest neighbor (kNN)](knn-search.md#approximate-knn) search runs during the dfs phase.
964+
A k-nearest neighbor (kNN) search runs during the dfs phase.
965965

966966
The following is an example of setting `profile` to `true` on a search that has a `knn` section:
967967

0 commit comments

Comments
 (0)