You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2020/02/19 09:37:39 UTC

[lucene-solr] branch branch_8x updated: LUCENE-9229: Fix some broken links Change some wiki -> cwiki links

This is an automated email from the ASF dual-hosted git repository.

janhoy pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 42b7254  LUCENE-9229: Fix some broken links Change some wiki -> cwiki links
42b7254 is described below

commit 42b725462ff013f737e577af75c0f244e1959919
Author: Jan Høydahl <ja...@apache.org>
AuthorDate: Wed Feb 19 10:33:26 2020 +0100

    LUCENE-9229: Fix some broken links
    Change some wiki -> cwiki links
    
    Signed-off-by: Jan Høydahl <ja...@apache.org>
    (cherry picked from commit 8389b87e39e72feb1262ff994d57217f1d127cc8)
---
 solr/CHANGES.txt                                         | 10 +++++-----
 solr/solr-ref-guide/src/faceting.adoc                    |  2 +-
 solr/solr-ref-guide/src/jvm-settings.adoc                |  2 +-
 solr/solr-ref-guide/src/response-writers.adoc            |  2 +-
 solr/solr-ref-guide/src/updating-parts-of-documents.adoc |  2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 10ba79c..f078a0c 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -11327,7 +11327,7 @@ Upgrading from Solr 4.7
   Oracle Java 7 or OpenJDK 7, be sure to not use the GA build 147 or
   update versions u40, u45 and u51! We recommend using u55 or later.
   An overview of known JVM bugs can be found on
-  http://wiki.apache.org/lucene-java/JavaBugs
+  https://cwiki.apache.org/confluence/display/lucene/JavaBugs
 
 * ZooKeeper is upgraded from 3.4.5 to 3.4.6.
 
@@ -14639,7 +14639,7 @@ Other Changes
   in the migration of existing clients.  (yonik)
 
 * SOLR-3691: SimplePostTool: Mode for crawling/posting web pages
-  See http://wiki.apache.org/solr/ExtractingRequestHandler for examples (janhoy)
+  See https://lucene.apache.org/solr/guide/post-tool.html for examples (janhoy)
 
 * SOLR-3707: Upgrade Solr to Tika 1.2 (janhoy)
 
@@ -14769,7 +14769,7 @@ New Features
   same name.  (hossman, steffkes)
 
 * SOLR-1280: Added commented-out example of the new script update processor
-  to the example configuration.  See http://wiki.apache.org/solr/ScriptUpdateProcessor (ehatcher)
+  to the example configuration. (ehatcher)
 
 * SOLR-3672: SimplePostTool: Improvements for posting files
   Support for auto mode, recursive and wildcards (janhoy)
@@ -14908,7 +14908,7 @@ Other Changes
 ==================  4.0.0-ALPHA ==================
 More information about this release, including any errata related to the
 release notes, upgrade instructions, or other changes may be found online at:
-   https://wiki.apache.org/solr/Solr4.0
+   https://cwiki.apache.org/confluence/display/solr/Solr4.0
 
 
 Versions of Major Components
@@ -16733,7 +16733,7 @@ New Features
   Great Circle (haversine), Manhattan, Euclidean and String (using the
   StringDistance methods in the Lucene spellchecker).
   Also added geohash(), deg() and rad() convenience functions.
-  See http://wiki.apache.org/solr/FunctionQuery. (gsingers)
+  See https://lucene.apache.org/solr/guide/function-queries.html (gsingers)
 
 * SOLR-1553: New dismax parser implementation (accessible as "edismax")
   that supports full lucene syntax, improved reserved char escaping,
diff --git a/solr/solr-ref-guide/src/faceting.adoc b/solr/solr-ref-guide/src/faceting.adoc
index efbb033..ca846ea 100644
--- a/solr/solr-ref-guide/src/faceting.adoc
+++ b/solr/solr-ref-guide/src/faceting.adoc
@@ -585,7 +585,7 @@ Consider the following example query with faceting:
 
 Because everything is already constrained by the filter `doctype:pdf`, the `facet.field=doctype` facet command is currently redundant and will return 0 counts for everything except `doctype:pdf`.
 
-To implement a multi-select facet for doctype, a GUI may want to still display the other doctype values and their associated counts, as if the http://doctypepdf[`doctype:pdf`] constraint had not yet been applied. For example:
+To implement a multi-select facet for doctype, a GUI may want to still display the other doctype values and their associated counts, as if the `doctype:pdf` constraint had not yet been applied. For example:
 
 [source,text]
 ----
diff --git a/solr/solr-ref-guide/src/jvm-settings.adoc b/solr/solr-ref-guide/src/jvm-settings.adoc
index 97a98c9..99aa655 100644
--- a/solr/solr-ref-guide/src/jvm-settings.adoc
+++ b/solr/solr-ref-guide/src/jvm-settings.adoc
@@ -35,7 +35,7 @@ There are several points to keep in mind:
  * The heap allocated should be as small as possible while maintaining good performance. 8-16G is quite common, and larger heaps are sometimes used. When heaps grow to larger sizes, it is imperative to test extensively before going to production.
  * The G1GC garbage collector is currently preferred when using a JVM that supports it (Java 9 and later)
  * Modern hardware can be configured with hundreds of gigabytes of physical RAM and many CPUs. It is often better in these cases to run multiple JVMs, each with a limited amount of memory allocated to their heaps.
- * It's good practice to periodically re-analyze the GC logs and/or monitor with  <<metrics-reporting.adoc,Metrics Reporting>> to see if the memory usage has changed due to changes in your application, number of documents, etc.
+ * It's good practice to periodically re-analyze the GC logs and/or monitor with  <<metrics-reporting.adoc#metrics-reporting,Metrics Reporting>> to see if the memory usage has changed due to changes in your application, number of documents, etc.
  * On *nix systems, we recommend that Solr be run with the "oom killer script" (see solr/bin/oom_solr.sh). This will forcefully stop Solr when the heap is exhausted rather than continue in an indeterminate state.
  * All current (Java 11) garbage collectors can hit "stop the world" collections, which suspend the JVM until completed. If, through monitoring, these collections are frequent and greater than your application can tolerate, additional tuning should be considered. "Stop the world" pauses greater than 5 seconds are rarely acceptable, and having them be less than 1 second is desirable.
 
diff --git a/solr/solr-ref-guide/src/response-writers.adoc b/solr/solr-ref-guide/src/response-writers.adoc
index 493cdaf..a921658 100644
--- a/solr/solr-ref-guide/src/response-writers.adoc
+++ b/solr/solr-ref-guide/src/response-writers.adoc
@@ -307,7 +307,7 @@ See the <<velocity-response-writer.adoc#velocity-response-writer,Velocity Respon
 
 == Smile Response Writer
 
-The Smile format is a JSON-compatible binary format, described in detail here: http://wiki.fasterxml.com/SmileFormat.
+The Smile format is a JSON-compatible binary format, described in detail here: https://en.wikipedia.org/wiki/Smile_%28data_interchange_format%29[https://en.wikipedia.org/wiki/Smile_(data_interchange_format)]
 
 == XLSX Response Writer
 
diff --git a/solr/solr-ref-guide/src/updating-parts-of-documents.adoc b/solr/solr-ref-guide/src/updating-parts-of-documents.adoc
index 847e911..23089ba 100644
--- a/solr/solr-ref-guide/src/updating-parts-of-documents.adoc
+++ b/solr/solr-ref-guide/src/updating-parts-of-documents.adoc
@@ -461,4 +461,4 @@ If `versionField` is specified as a list, then this parameter too must be specif
 `supportMissingVersionOnOldDocs`::
 This boolean parameter defaults to `false`, but if set to `true` allows any documents written *before* this feature is enabled, and which are missing the `versionField`, to be overwritten.
 
-Please consult the {solr-javadocs}/solr-core/org/apache/solr/update/processor/DocBasedVersionConstraintsProcessorFactory.html[DocBasedVersionConstraintsProcessorFactory javadocs] and https://git1-us-west.apache.org/repos/asf?p=lucene-solr.git;a=blob;f=solr/core/src/test-files/solr/collection1/conf/solrconfig-externalversionconstraint.xml;hb=HEAD[test solrconfig.xml file] for additional information and example usages.
+Please consult the {solr-javadocs}/solr-core/org/apache/solr/update/processor/DocBasedVersionConstraintsProcessorFactory.html[DocBasedVersionConstraintsProcessorFactory javadocs] and https://github.com/apache/lucene-solr/blob/master/solr/core/src/test-files/solr/collection1/conf/solrconfig-externalversionconstraint.xml[test solrconfig.xml file] for additional information and example usages.