This is an automated email from the ASF dual-hosted git repository. ctargett pushed a commit to branch jira/solr-15556-antora in repository https://gitbox.apache.org/repos/asf/solr.git
commit 3323841ffe858b288dde0e3b68388223e2edda59 Author: Cassandra Targett <[email protected]> AuthorDate: Thu Jan 13 12:58:49 2022 -0600 Fix most remaining xrefs (except index.adoc) --- .../deployment-guide/pages/solr-control-script-reference.adoc | 5 +++-- .../modules/getting-started/pages/about-this-guide.adoc | 1 - solr/solr-ref-guide/modules/getting-started/pages/introduction.adoc | 2 +- solr/solr-ref-guide/modules/getting-started/pages/solr-glossary.adoc | 2 +- solr/solr-ref-guide/modules/getting-started/pages/solr-indexing.adoc | 2 +- .../solr-ref-guide/modules/indexing-guide/pages/schema-designer.adoc | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/solr/solr-ref-guide/modules/deployment-guide/pages/solr-control-script-reference.adoc b/solr/solr-ref-guide/modules/deployment-guide/pages/solr-control-script-reference.adoc index 49655d2..6abbf0c 100644 --- a/solr/solr-ref-guide/modules/deployment-guide/pages/solr-control-script-reference.adoc +++ b/solr/solr-ref-guide/modules/deployment-guide/pages/solr-control-script-reference.adoc @@ -330,8 +330,9 @@ Solr will run in xref:indexing-guide:schemaless-mode.adoc[] with this configurat + The configset used can be found in `$SOLR_HOME/server/solr/configsets/_default`. -* *films*: This example starts a single-node Solr instance using a managed schema, as described in the section <<schema-factory.adoc#,Schema Factory Definition in SolrConfig>>, and then uses the Schema API to create some custom fields. -Solr will run in <<schemaless-mode.adoc#,Schemaless Mode>> with this configuration, where Solr will create fields in the schema on the fly and will guess field types used in incoming documents as well. It then loads some sample film data. +* *films*: This example starts a single-node Solr instance using a managed schema, as described in the section xref:configuration-guide:schema-factory.adoc[], and then uses the Schema API to create some custom fields. +Solr will run in xref:indexing-guide:schemaless-mode.adoc[] with this configuration, where Solr will create fields in the schema on the fly and will guess field types used in incoming documents as well. +It then loads some sample film data. + The configset used can be found in `$SOLR_HOME/server/solr/configsets/_default`. + diff --git a/solr/solr-ref-guide/modules/getting-started/pages/about-this-guide.adoc b/solr/solr-ref-guide/modules/getting-started/pages/about-this-guide.adoc index 532fec2..7ea258c 100644 --- a/solr/solr-ref-guide/modules/getting-started/pages/about-this-guide.adoc +++ b/solr/solr-ref-guide/modules/getting-started/pages/about-this-guide.adoc @@ -33,7 +33,6 @@ The default port when running Solr is 8983. The samples, URLs and screenshots in this guide may show different ports, because the port number that Solr uses is configurable. If you have not customized your installation of Solr, please make sure that you use port 8983 when following the examples, or configure your own installation to use the port numbers shown in the examples. -For information about configuring port numbers, see the section xref:deployment-guide:monitoring-solr.adoc[]. Similarly, URL examples use `localhost` throughout; if you are accessing Solr from a location remote to the server hosting Solr, replace `localhost` with the proper domain or IP where Solr is running. diff --git a/solr/solr-ref-guide/modules/getting-started/pages/introduction.adoc b/solr/solr-ref-guide/modules/getting-started/pages/introduction.adoc index 216679c..98ab8b8 100644 --- a/solr/solr-ref-guide/modules/getting-started/pages/introduction.adoc +++ b/solr/solr-ref-guide/modules/getting-started/pages/introduction.adoc @@ -31,7 +31,7 @@ The xref:indexing-guide:schema-elements.adoc[] has more details on these options Solr offers support for the simplest keyword searching through to complex queries on multiple fields and faceted search results. Collapsing and clustering results offer compelling features for e-commerce and storefronts. Powerful math expressions provide the backbone for advanced analytics use cases. -The xref:query-guide:query-guide.adoc[] has more information about searching and queries. +The xref:query-guide:query-syntax-and-parsers.adoc[] has more information about searching and queries. If Solr's capabilities are not impressive enough, its ability to handle very high-volume applications should do the trick. diff --git a/solr/solr-ref-guide/modules/getting-started/pages/solr-glossary.adoc b/solr/solr-ref-guide/modules/getting-started/pages/solr-glossary.adoc index a1f676b..456d17e 100644 --- a/solr/solr-ref-guide/modules/getting-started/pages/solr-glossary.adoc +++ b/solr/solr-ref-guide/modules/getting-started/pages/solr-glossary.adoc @@ -186,7 +186,7 @@ See also <<solrclouddef,SolrCloud>>. [[solrclouddef]]xref:deployment-guide:cluster-types.adoc#solrcloud-mode[SolrCloud]:: Umbrella term for a suite of functionality in Solr which allows managing a <<cluster,Cluster>> of Solr <<node,Nodes>> for scalability, fault tolerance, and high availability. -[[schema]]xref:indexing-guide:solr-schema.adoc[Solr Schema (managed-schema.xml or schema.xml)]:: +[[schema]]xref:indexing-guide:schema-elements.adoc[Solr Schema (managed-schema.xml or schema.xml)]:: The Solr index Schema defines the fields to be indexed and the type for the field (text, integers, etc.). By default schema data can be "managed" at run time using the xref:indexing-guide:schema-api.adoc[] and is typically kept in a file named `managed-schema.xml` which Solr modifies as needed, but a collection may be configured to use a static Schema, which is only loaded on startup from a human edited configuration file - typically named `schema.xml`. See xref:configuration-guide:schema-factory.adoc[] for details. diff --git a/solr/solr-ref-guide/modules/getting-started/pages/solr-indexing.adoc b/solr/solr-ref-guide/modules/getting-started/pages/solr-indexing.adoc index fbc1315..9804b68 100644 --- a/solr/solr-ref-guide/modules/getting-started/pages/solr-indexing.adoc +++ b/solr/solr-ref-guide/modules/getting-started/pages/solr-indexing.adoc @@ -35,7 +35,7 @@ Regardless of the method used to ingest data, there is a common basic data struc One of the fields is usually designated as a unique ID field (analogous to a primary key in a database), although the use of a unique ID field is not strictly required by Solr. If the field name is defined in the Schema that is associated with the index, then the analysis steps associated with that field will be applied to its content when the content is tokenized. -Fields that are not explicitly defined in the Schema will either be ignored or mapped to a dynamic field definition (see xref:indexing-guide:fields-and-schema-design.adoc[]), if one matching the field name exists. +Fields that are not explicitly defined in the Schema will either be ignored or mapped to a xref:indexing-guide:dynamic-fields.adoc[dynamic field definition], if one matching the field name exists. == The Solr Example Directory diff --git a/solr/solr-ref-guide/modules/indexing-guide/pages/schema-designer.adoc b/solr/solr-ref-guide/modules/indexing-guide/pages/schema-designer.adoc index 06c98f3..c018939 100644 --- a/solr/solr-ref-guide/modules/indexing-guide/pages/schema-designer.adoc +++ b/solr/solr-ref-guide/modules/indexing-guide/pages/schema-designer.adoc @@ -197,7 +197,7 @@ If you need to change the text analysis strategy for a field, you need to edit t The *Query Tester* panel lets you experiment with queries executed against your sample document set using the current schema. Using the Query Tester, you can see how changes to the schema impact the behavior of queries, such as matching, sorting, faceting, and highlighting. -The Query Tester form is not intended to demonstrate all possible xref:query-guide.adoc[query features] available in Solr. +The Query Tester form is not intended to demonstrate all possible query features available in Solr. image::schema-designer/query-tester.png[image]
