From 89a1655e7f54fae0a3bd18b4963c9dc5b88d7256 Mon Sep 17 00:00:00 2001 From: Cassandra Targett Date: Thu, 9 Aug 2018 15:18:22 -0500 Subject: [PATCH] SOLR-11766: Move Streaming Expressions to be top-level section of Ref Guide --- solr/CHANGES.txt | 6 ++++-- solr/solr-ref-guide/src/index.adoc | 23 +++++++++++++---------- solr/solr-ref-guide/src/searching.adoc | 2 -- 3 files changed, 17 insertions(+), 14 deletions(-) diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 9e6ece5190a..8dbedcc9710 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -140,7 +140,7 @@ New Features * SOLR-8207: Add "Nodes" view to the Admin UI "Cloud" tab, listing nodes and key metrics (janhoy) -* SOLR-7767: "ZK Status" sub menu under "Cloud" tab to see status of zookeeper ensemble (janhoy) +* SOLR-7767: "ZK Status" sub menu under "Cloud" tab to see status of zookeeper ensemble (janhoy) * SOLR-11990: Make it possible to co-locate replicas of multiple collections together in a node. A collection may be co-located with another collection during collection creation time by specifying a 'withCollection' parameter. It can @@ -209,7 +209,7 @@ Bug Fixes * SOLR-12477: An update would return a client error(400) if it hit a AlreadyClosedException. We now return the error as a server error(500) instead (Jeffery via Varun Thacker) - + * SOLR-12606: Fix InfixSuggestersTest.testShutdownDuringBuild() failures. (Steve Rowe) * SOLR-12607: Fixed two separate bugs in shard splits which can cause data loss. The first case is when using TLOG @@ -287,6 +287,8 @@ Other Changes * SOLR-11008: Use a lighter config for MetricsHandlerTest and ensure the core is up before the test starts (Varun Thacker) +* SOLR-11766: Move Streaming Expressions section in Ref Guide to be a top-level section. (Cassandra Targett) + ================== 7.4.0 ================== Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release. diff --git a/solr/solr-ref-guide/src/index.adoc b/solr/solr-ref-guide/src/index.adoc index 794e13d8bbc..afd4c76a3f9 100644 --- a/solr/solr-ref-guide/src/index.adoc +++ b/solr/solr-ref-guide/src/index.adoc @@ -1,5 +1,5 @@ = Apache Solr Reference Guide -:page-children: about-this-guide, getting-started, deployment-and-operations, using-the-solr-administration-user-interface, documents-fields-and-schema-design, understanding-analyzers-tokenizers-and-filters, indexing-and-basic-data-operations, searching, solrcloud, legacy-scaling-and-distribution, the-well-configured-solr-instance, monitoring-solr, securing-solr, client-apis, further-assistance, solr-glossary, errata, how-to-contribute +:page-children: about-this-guide, getting-started, deployment-and-operations, using-the-solr-administration-user-interface, documents-fields-and-schema-design, understanding-analyzers-tokenizers-and-filters, indexing-and-basic-data-operations, searching, streaming-expressions, solrcloud, legacy-scaling-and-distribution, the-well-configured-solr-instance, monitoring-solr, securing-solr, client-apis, further-assistance, solr-glossary, errata, how-to-contribute :page-notitle: :page-toc: false :page-layout: home @@ -68,23 +68,26 @@ The *<>* section guides yo [.row.match-my-cols] -- -.Indexing & Searching Documents +.Indexing Documents [sidebar.col-sm-6.col-md-4] **** *<>*: This section describes the indexing process and basic index operations, such as commit, optimize, and rollback. -*<>*: This section presents an overview of the search process in Solr. It describes the main components used in searches, including request handlers, query parsers, and response writers. It lists the query parameters that can be passed to Solr, and it describes features such as boosting and faceting, which can be used to fine-tune search results. - -*<>*: This section tells you how to access Solr through various client APIs, including JavaScript, JSON, and Ruby. -**** - -.Designing Fields -[sidebar.col-sm-6.col-md-4] -**** *<>*: This section describes how Solr organizes data in the index. It explains how a Solr schema defines the fields and field types which Solr uses to organize data within the document files it indexes. *<>*: This section explains how Solr prepares text for indexing and searching. Analyzers parse text and produce a stream of tokens, lexical units used for indexing and searching. Tokenizers break field data down into tokens. Filters perform other transformational or selective work on token streams. **** + +.Searching Documents +[sidebar.col-sm-6.col-md-4] +**** + +*<>*: This section presents an overview of the search process in Solr. It describes the main components used in searches, including request handlers, query parsers, and response writers. It lists the query parameters that can be passed to Solr, and it describes features such as boosting and faceting, which can be used to fine-tune search results. + +*<>*: A stream processing language for Solr, with a suite of functions to perform many types of queries and parallel execution tasks. + +*<>*: This section tells you how to access Solr through various client APIs, including JavaScript, JSON, and Ruby. +**** -- [.row] diff --git a/solr/solr-ref-guide/src/searching.adoc b/solr/solr-ref-guide/src/searching.adoc index 753c2d88038..9fa0e57cae8 100644 --- a/solr/solr-ref-guide/src/searching.adoc +++ b/solr/solr-ref-guide/src/searching.adoc @@ -26,7 +26,6 @@ near-real-time-searching, + realtime-get, + exporting-result-sets, + - streaming-expressions, + parallel-sql-interface, + analytics @@ -85,6 +84,5 @@ This section describes how Solr works with search requests. It covers the follow * <>: How to include documents in search results nearly immediately after they are indexed. * <>: How to get the latest version of a document without opening a searcher. * <>: Functionality to export large result sets out of Solr. -* <>: A stream processing language for Solr, with a suite of functions to perform many types of queries and parallel execution tasks. * <>: An interface for sending SQL statements to Solr, and using advanced parallel query processing and relational algebra for complex data analysis. * <>: A framework to compute complex analytics over a result set.