Modified: sites/solr/guide/solr/latest/deployment-guide/replica-management.html URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/deployment-guide/replica-management.html?rev=1083710&r1=1083709&r2=1083710&view=diff ============================================================================== --- sites/solr/guide/solr/latest/deployment-guide/replica-management.html (original) +++ sites/solr/guide/solr/latest/deployment-guide/replica-management.html Mon Jul 24 16:09:03 2023 @@ -1615,7 +1615,7 @@ In case of shared filesystems the <code> </div> <div class="listingblock"> <div class="content"> -<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">curl -X POST http://localhost:8983/api/collections/techproducts/shards -H 'Content-Type: application/json' -d ' +<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">curl -X POST http://localhost:8983/api/collections/techproducts -H 'Content-Type: application/json' -d ' { "move-replica":{ "replica":"core_node6",
Modified: sites/solr/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html URL: http://svn.apache.org/viewvc/sites/solr/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html?rev=1083710&r1=1083709&r2=1083710&view=diff ============================================================================== --- sites/solr/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html (original) +++ sites/solr/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html Mon Jul 24 16:09:03 2023 @@ -1271,6 +1271,20 @@ As of Solr 9.3 that behaviour is no long </div> </div> <div class="sect2"> +<h3 id="use-of-timeallowed"><a class="anchor" href="#use-of-timeallowed"></a>use of timeAllowed</h3> +<div class="ulist"> +<ul> +<li> +<p>Query timeouts with <code>timeAllowed</code> are implemented differently. +It should be faster albeit have less fidelity â will not timeout a query outside of core query processing (e.g. won’t cancel spellcheck or faceting). +Use <code>solr.useExitableDirectoryReader</code> to use the previous behavior. +Please share your experience with Solr developers! +The previous behavior should not be enabled if timeAllowed isn’t used because unfortunately its performance tax is now imposed on all queries, even those without timeAllowed.</p> +</li> +</ul> +</div> +</div> +<div class="sect2"> <h3 id="v2-api"><a class="anchor" href="#v2-api"></a>v2 API</h3> <div class="ulist"> <ul>
