[DOCS] Fix glossary formatting (#64118) (#64293)

This commit is contained in:
James Rodewig 2020-10-28 11:21:00 -04:00 committed by GitHub
parent 4b4c88496a
commit 41db9f99da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -4,20 +4,22 @@
[glossary]
[[glossary-analysis]] analysis ::
+
--
// tag::analysis-def[]
Analysis is the process of converting <<glossary-text,full text>> to
<<glossary-term,terms>>. Depending on which analyzer is used, these phrases:
`FOO BAR`, `Foo-Bar`, `foo,bar` will probably all result in the
terms `foo` and `bar`. These terms are what is actually stored in
the index.
+
A full text query (not a <<glossary-term,term>> query) for `FoO:bAR` will
also be analyzed to the terms `foo`,`bar` and will thus match the
terms stored in the index.
+
It is this process of analysis (both at index time and at search time)
that allows Elasticsearch to perform full text queries.
+
Also see <<glossary-text,text>> and <<glossary-term,term>>.
// end::analysis-def[]
--
@ -197,13 +199,11 @@ An optimized collection of JSON documents. Each document is a collection of fiel
the key-value pairs that contain your data.
// end::index-def-short[]
An index is like a _table_ in a relational database. It has a
<<glossary-mapping,mapping>> which contains a <<glossary-type,type>>,
which contains the <<glossary-field,fields>> in the index.
+
An index is a logical namespace which maps to one or more
<<glossary-primary-shard,primary shards>> and can have zero or more
<<glossary-replica-shard,replica shards>>.
// end::index-def[]
--
[[glossary-index-alias]] index alias ::
+