This is an automated email from the ASF dual-hosted git repository.
epugh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new b1a32be SOLR-15688: List Stream Status URL is not correct (#360)
b1a32be is described below
commit b1a32be73766df8dc7812738341321f05268c3eb
Author: Eric Pugh <[email protected]>
AuthorDate: Thu Oct 21 12:27:47 2021 -0400
SOLR-15688: List Stream Status URL is not correct (#360)
* fix urls
* typo fix
---
solr/solr-ref-guide/src/stream-decorator-reference.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/solr/solr-ref-guide/src/stream-decorator-reference.adoc
b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
index 308254f..0ec4f82 100644
--- a/solr/solr-ref-guide/src/stream-decorator-reference.adoc
+++ b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
@@ -1180,8 +1180,8 @@ This will cause the `rollup` function to be run in
parallel across 20 worker nod
====
The `parallel` function uses the hash query parser to split the data amongst
the workers.
It executes on all the documents and the result bitset is cached in the
filterCache.
-+
-For a `parallel` stream with the same number of workers and `partitonKeys` the
first query would be slower than subsequent queries.
+
+For a `parallel` stream with the same number of workers and `partitionKeys`
the first query would be slower than subsequent queries.
A trick to not pay the penalty for the first slow query would be to use a
warmup query for every new searcher.
The following is a `solrconfig.xml` snippet for 2 workers and "year_i" as the
`partionKeys`.