@@ -176,7 +176,7 @@ The API returns the following result:
176176 "time_in_nanos": 775274,
177177 "children" : [
178178 {
179- "name": "SimpleTopScoreDocCollector ",
179+ "name": "TopScoreDocCollector ",
180180 "reason": "search_top_hits",
181181 "time_in_nanos": 775274
182182 }
@@ -537,7 +537,7 @@ Looking at the previous example:
537537 "time_in_nanos": 775274,
538538 "children" : [
539539 {
540- "name": "SimpleTopScoreDocCollector ",
540+ "name": "TopScoreDocCollector ",
541541 "reason": "search_top_hits",
542542 "time_in_nanos": 775274
543543 }
@@ -551,7 +551,7 @@ Looking at the previous example:
551551
552552
553553We see a top-level collector named `QueryPhaseCollector` which holds a child
554- `SimpleTopScoreDocCollector `. `SimpleTopScoreDocCollector ` is the default
554+ `TopScoreDocCollector `. `TopScoreDocCollector ` is the default
555555"scoring and sorting" `Collector` used by {es}. The `reason` field attempts
556556to give a plain English description of the class name. The `time_in_nanos`
557557is similar to the time in the Query tree: a wall-clock time inclusive of all
@@ -751,7 +751,7 @@ The API returns the following result:
751751 "time_in_nanos": 1945072,
752752 "children": [
753753 {
754- "name": "SimpleTopScoreDocCollector ",
754+ "name": "TopScoreDocCollector ",
755755 "reason": "search_top_hits",
756756 "time_in_nanos": 22577
757757 },
@@ -788,7 +788,7 @@ major portions of the query are represented:
7887882. The second `TermQuery` (message:search) represents the `post_filter` query.
789789
790790The Collector tree is fairly straightforward, showing how a single
791- QueryPhaseCollector that holds the normal scoring SimpleTopScoreDocCollector
791+ QueryPhaseCollector that holds the normal scoring TopScoreDocCollector
792792used to collect top hits, as well as BucketCollectorWrapper to run all scoped
793793aggregations.
794794
@@ -1332,7 +1332,7 @@ One of the `dfs.knn` sections for a shard looks like the following:
13321332 "rewrite_time" : 1275732,
13331333 "collector" : [
13341334 {
1335- "name" : "SimpleTopScoreDocCollector ",
1335+ "name" : "TopScoreDocCollector ",
13361336 "reason" : "search_top_hits",
13371337 "time_in_nanos" : 17163
13381338 }
0 commit comments