You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2019/06/21 01:02:21 UTC

[lucene-solr] branch SOLR-13105-visual updated (6928091 -> b97372c)

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

jbernste pushed a change to branch SOLR-13105-visual
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 6928091  SOLR-13105: Add initial search docs
     new f33485e  SOLR-13105: Add copy to search-sample page
     new b97372c  SOLR-13105: Add text-analytics to gallery

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/images/math-expressions/text-analytics.png | Bin 0 -> 250595 bytes
 solr/solr-ref-guide/src/search-sample.adoc         |  60 ++++++---------------
 solr/solr-ref-guide/src/visualization.adoc         |   4 ++
 3 files changed, 20 insertions(+), 44 deletions(-)
 create mode 100644 solr/solr-ref-guide/src/images/math-expressions/text-analytics.png


[lucene-solr] 02/02: SOLR-13105: Add text-analytics to gallery

Posted by jb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jbernste pushed a commit to branch SOLR-13105-visual
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit b97372ccdaea131108c90d0f4b331d7fcf8f256e
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Thu Jun 20 21:01:53 2019 -0400

    SOLR-13105: Add text-analytics to gallery
---
 .../src/images/math-expressions/text-analytics.png     | Bin 0 -> 250595 bytes
 solr/solr-ref-guide/src/visualization.adoc             |   4 ++++
 2 files changed, 4 insertions(+)

diff --git a/solr/solr-ref-guide/src/images/math-expressions/text-analytics.png b/solr/solr-ref-guide/src/images/math-expressions/text-analytics.png
new file mode 100644
index 0000000..e75bdd4
Binary files /dev/null and b/solr/solr-ref-guide/src/images/math-expressions/text-analytics.png differ
diff --git a/solr/solr-ref-guide/src/visualization.adoc b/solr/solr-ref-guide/src/visualization.adoc
index 22f7824..d78e148 100644
--- a/solr/solr-ref-guide/src/visualization.adoc
+++ b/solr/solr-ref-guide/src/visualization.adoc
@@ -52,6 +52,10 @@ image::images/math-expressions/multitime1.png[]
 
 image::images/math-expressions/map.png[]
 
+=== Text Analytics
+
+image::images/math-expressions/text-analytics.png[]
+
 === XY Scatter Plots
 
 image::images/math-expressions/xyscatter.png[]


[lucene-solr] 01/02: SOLR-13105: Add copy to search-sample page

Posted by jb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jbernste pushed a commit to branch SOLR-13105-visual
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit f33485e0b06927a0b807f6596d9411410c194bdc
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Tue Jun 18 07:02:01 2019 -0400

    SOLR-13105: Add copy to search-sample page
---
 solr/solr-ref-guide/src/search-sample.adoc | 60 ++++++++----------------------
 1 file changed, 16 insertions(+), 44 deletions(-)

diff --git a/solr/solr-ref-guide/src/search-sample.adoc b/solr/solr-ref-guide/src/search-sample.adoc
index 6695b14..aeb146f 100644
--- a/solr/solr-ref-guide/src/search-sample.adoc
+++ b/solr/solr-ref-guide/src/search-sample.adoc
@@ -16,14 +16,11 @@
 // specific language governing permissions and limitations
 // under the License.
 
-This section of the user guide explores techniques
-for retrieving streams of data from Solr and vectorizing the
-numeric fields.
 
-See the section <<term-vectors.adoc#term-vectors,Text Analysis and Term Vectors>> which describes how to
-vectorize text fields.
 
-== Searching and Sorting
+== Searching
+
+=== Exploring
 
 The *search* function can be used to search a Solr Cloud collection and return a
 result set.
@@ -32,12 +29,6 @@ Below is an example of the most basic *search* function called from the Zeppelin
 Zeppelin-Solr sends the *seach(testapp)* call to the /stream handler and displays the results
 in *table* format.
 
-This simple example is instructive for how Zeppelin-Solr handles all Streaming Expressions,
-which by definition return a stream of tuples or name/value pair documents. Zeppelin-Solr creates a
-table from the result set with one row per tuple. Each column of the table represents a field in the tuples.
-
-Once the tuples have been loaded into a table the columns in the table can be visualized by switching
-to the various visualizations and configuring the settings.
 
 In the example the search function passed only the name of the collection being search. This returns
 a result set of 10 records showing all fields in and unspecified order. This simple function is useful
@@ -45,6 +36,8 @@ for exploring the fields in the data and understanding how to start refining the
 
 image::images/math-expressions/search1.png[]
 
+==== Searching and Sorting
+
 Once we see the format of the records we can add parameters to the *search* function to begin analyzing
 the data.
 
@@ -70,37 +63,16 @@ select from the a very specific slice of the index. In this example it's the
 
 == Sampling
 
-[source,text]
-----
-random(testapp)
-----
-
-When this expression is sent to the `/stream` handler it responds with:
-
-[source,json]
-----
-{
-  "result-set": {
-    "docs": [
-      {
-        "response_d": 1080.3692514541938,
-        "new_response": 10803.692514541937
-      },
-      {
-        "response_d": 1067.441598608506,
-        "new_response": 10674.41598608506
-      },
-      {
-        "response_d": 1059.8400090891566,
-        "new_response": 10598.400090891566
-      },
-      {
-        "EOF": true,
-        "RESPONSE_TIME": 12
-      }
-    ]
-  }
-}
-----
+=== Univariate Scatter Plots
+
+=== Bivariate Scatter Plots
+
+
+
 == Aggregations
 
+=== facet
+
+=== facet2D
+
+=== timeseries
\ No newline at end of file