Commit Graph

5360 Commits

Author SHA1 Message Date
James Rodewig 238428d22f
[DOCS] Add 'time value' links to several monitor settings (#40633) 2019-04-01 08:26:51 -04:00
Jason Tedor 31503f937b
Remove mention of soft deletes from getting started (#40668)
We no longer need to mention soft deletes in the getting started guide
now that retention leases exist and default to 12h. This commit removes
mention of soft deletes from the getting started guide, to simplify that
content.
2019-03-31 22:10:45 -04:00
Mayya Sharipova def37a6f4a
Add information about the default sort mode (#40657) 2019-03-30 10:56:23 -04:00
Marios Trivyzas 3dd0384d68
SQL: [Docs] Fix doc errors regarding CURRENT_DATE. (#40649)
Some parts wrongly refered to CURRENT_TIMESTAMP.
2019-03-30 12:05:15 +01:00
Henning Andersen e24fd1b076
Reindex conflicts clarification (docs) (#40442)
Made it more clear that conflicts : proceed only affects version
conflicts.
2019-03-30 00:43:15 +01:00
Christoph Büscher c9d05adedd
Clarify using time_zone and date math in range query (#40655)
Currently, the docs correctly state that using `now` in range queries will not
be affected by the `time_zone` parameter. However, using date math roundings
like e.g. `now\d` will be affected by the `time_zone`. Adding this example
because it seems to be a frequently asked question and source of confusion.

Relates to #40581
2019-03-29 23:38:37 +01:00
Julie Tibshirani 5901b4286e
Update vector similarity examples to avoid negative scores. (#40493)
Negative scores are no longer allowed, but the cosine similarity between two
vectors lies in the range [-1, 1], and dot products can also be negative. This commit
updates the documentation with an example of how to avoid negative scores.
2019-03-29 11:29:54 -07:00
David Roberts 2e2c08b011
[DOCS] Use "source" instead of "inline" in ML docs (#40635)
Specifying an inline script in an "inline" field
was deprecated in 5.x.  The new field name is
"source".

(Since 6.x still accepts "inline" I will only backport
this docs change as far as 7.0.)
2019-03-29 16:40:25 +00:00
Ryan Ernst d96e71d35e Add docs for bundled jdk (#40487)
This commit changes the note in docs about required java version to note
the existence of the bundled jdk and how to bring your own java. It also
reorganizes the zip/targz docs as zip is no longer suitable on
Linux/MacOS.
2019-03-29 09:04:46 -04:00
Jason Tedor 789806f938
Add usage indicators for the bundled JDK (#40616)
This commit adds indications whether or not a distribution is from the
bundled JDK, and whether or not we are using the bundled JDK.
2019-03-29 08:24:52 -04:00
Jim Ferenczi 53df53ada8
Update docs for the DFR similarity (#40579)
The basic models `b, de, p` and the after effect `no`
are not available anymore in Lucene 8 but they are still
listed in the >7x documentation. This change removes these
references that should also be listed in the breaking change
of es 7.0.

Closes #40264
2019-03-29 09:34:51 +01:00
Tim Vernum 7b6e7146ea
Remove obsolete security settings (#40496)
Removes the deprecated accept_default_password setting.
This setting become redundant when default passwords were removed
from 6.0, but the setting was kept for BWC.

Removes native role store cache settings.
These have been unused since 5.2 but were kept for BWC.
2019-03-29 18:04:49 +11:00
Mayya Sharipova 459715dba7
Add randomScore function in script_score query (#40186)
To make script_score query to have the same features
as function_score query, we need to add randomScore
function.

This function produces different
random scores on different index shards.
It is also able to produce random scores
based on the internal Lucene Document Ids.
2019-03-28 11:29:29 -04:00
Andrei Stefan 4034f8f316
Include functions' aliases in the list of functions (#40584) 2019-03-28 14:28:07 +02:00
David Turner d696e57e5d
Add docs for cluster.remote.*.proxy setting (#40281)
In #33062 we introduced the `cluster.remote.*.proxy` setting for proxied
connections to remote clusters, but left it deliberately undocumented since it
needed followup work so that it could work with SNI. However, since #32517 is
now closed we can add this documentation and remove the comment about its lack
of documentation.
2019-03-28 12:09:31 +00:00
Andrei Stefan c122fc6edd
SQL: add "fuzziness" option to QUERY and MATCH function predicates (#40529)
* Remove unused "locale" and "lowercase_expanded_terms" options from QUERY.
2019-03-28 10:11:23 +02:00
Andy Bristol 6bba9fc83b
search as you type fieldmapper (#35600)
Adds the search_as_you_type field type that acts like a text field optimized
for as-you-type search completion. It creates a couple subfields that analyze
the indexed terms as shingles, against which full terms are queried, and a
prefix subfield that analyze terms as the largest shingle size used and
edge-ngrams, against which partial terms are queried

Adds a match_bool_prefix query type that creates a boolean clause of a term
query for each term except the last, for which a boolean clause with a prefix
query is created.

The match_bool_prefix query is the recommended way of querying a search as you
type field, which will boil down to term queries for each shingle of the input
text on the appropriate shingle field, and the final (possibly partial) term
as a term query on the prefix field. This field type also supports phrase and
phrase prefix queries however
2019-03-27 10:03:30 -07:00
Andrei Stefan 4cec0ae1b9
SQL: MATCH and QUERY documentation; one list of functions (#40494)
* Document MATCH and QUERY function predicates.
* Polish the functions pages and add a list of functions to the main Functions & Operators page.
2019-03-27 17:18:14 +02:00
James Rodewig cd6d8ca50b
Fix typo in rollup_index definition (#40520) 2019-03-27 10:02:37 -04:00
Boaz Leskes 35fa582494 Only recommend disabling allocation of replicas in a rolling upgrade (#40299)
The current documentation recommends disabling allocations of all shards. This prevents shards of
new indices from being allocated as well. That means that during a rolling upgrade, operations like
roll over and index shrinking will operate correctly. This, in turn, can cause issues for data ingestion
and ILM.
2019-03-27 14:19:14 +01:00
Bogdan Pintea ca90190226
SQL: ODBC: document extra connection string parameters (#40476)
* document ODBC's extra connection string parameters

Document the connection string parameters that are currently not
configurable from the GUI.

Add a note about SmartScreen possible warning on driver MSI
installation.

Add a note about the TLS certificate file not being supported as bundled
or password-protected.

* rephrasing and restructuring the list of params

- addressing PR review notes

* rephrasings and reference linking

- addressing PR review notes
2019-03-27 14:11:59 +01:00
Costin Leau 1557d77b07
SQL: Adjust the precision and scale for drivers (#40467)
Fix #40357
2019-03-27 14:14:06 +02:00
Costin Leau 79a3b93deb SQL: Update JDBC class name in client screenshots 2019-03-27 12:20:16 +02:00
Diego Cardozo Sandrim dabc4c3b1b Improve certutil --pass documentation about empty password (#40137)
Improve the documentation of parameter --pass of elasticsearch-certutil

Co-Authored-By: Diego Cardozo Sandrim <diegocsandrim@users.noreply.github.com>
Co-Authored-By: Vigneash Sundar <vikene@users.noreply.github.com>
2019-03-27 14:36:31 +11:00
lcawl 9a45612750 [DOCS] Adds more frozen index anchors 2019-03-26 15:43:21 -07:00
Lisa Cawley 8da9168f02
[DOCS] Adds anchors and x-pack icons for frozen indices (#40485) 2019-03-26 15:26:23 -07:00
Benjamin Trent e79da922a3
[ML] Add data frame task state object and field (#40169)
* [ML] Add data frame task state object and field

* A new state item is added so that the overall task state can be
accoutned for
* A new FAILED state and reason have been added as well so that failures
can be shown to the user for optional correction

* Addressing PR comments

* adjusting after master merge

* addressing pr comment

* Adjusting auditor usage with failure state

* Refactor, renamed state items to task_state and indexer_state

* Adding todo and removing redundant auditor call

* Address HLRC changes and PR comment

* adjusting hlrc IT test
2019-03-26 15:59:01 -05:00
alex101101 b7aefa8605 Add a soft limit to the field name length (#40309)
Adds an optional limit to the length of field names, throws an IllegalArgumentException if the limit is breached. 
Closes #33651
2019-03-26 17:29:24 +01:00
Lisa Cawley 58e885ca8a
[DOCS] Simplify ML upgrade step (#40006) 2019-03-25 10:23:10 -07:00
Costin Leau d0f60b4425
SQL: Spec tests now use classpath discovery (#40388)
To avoid having to specify each spec by hand (which can miss specs to be
added), the test infrastructure now performs classpath discovery so that
each spec added, is automatically considered.

Relates #40358
2019-03-25 15:22:59 +02:00
James Rodewig 5bbdc809aa
Update Windows command to support prettified json licenses (#40375) 2019-03-25 08:35:35 -04:00
aladdam d819e19ec0 [DOCS] match description with example in allocation docs page (#39606) 2019-03-25 10:29:50 +01:00
lcawl 7dc6ddf62c [DOCS] Remove broken link 2019-03-22 15:57:27 -07:00
lcawl 05af3a51fb [DOCS] Removes notable breaking changes section 2019-03-22 15:45:13 -07:00
Costin Leau d10195594c SQL: CAST supports both SQL and ES types (#40365)
Extend CAST to support all data types notations (whether SQL or ES
specific)

Fix #40282

(cherry picked from commit eb2ee8a344)
2019-03-22 23:59:58 +02:00
lcawl 408885ee0b [DOCS] Fixes comments in release highlights 2019-03-22 14:36:18 -07:00
Lisa Cawley 67f78c64dd
[DOCS] Adds notable highlights tags (#40330) 2019-03-22 13:25:15 -07:00
Costin Leau 72e413df26 DOC: polish client docs 2019-03-22 19:40:32 +02:00
Costin Leau 3f94ca0c75 DOC: Expand section on ORDER BY aggs (#40332)
(cherry picked from commit 99d2f6fc98)
2019-03-22 10:05:33 +02:00
Boaz Leskes e93440a436 Add a note about upgrade a test/dev cluster with a single master (#39699) 2019-03-21 21:27:31 +01:00
Tim Brooks 3d90fbc556
Expand `following` documentation in ccr overview (#39936)
This commit expands the ccr overview page to include more information
about the lifecycle of following an index. It adds information linking
to the remote recovery documentation. And describes how an index can
fall-behind and how to fix it when this happens.
2019-03-21 12:08:23 -06:00
Lisa Cawley 3eb9736f7f
[DOCS] Adds placeholder for start and stop data frame transform APIs (#40278) 2019-03-21 09:38:00 -07:00
Lisa Cawley c178e1bd73
[DOCS] Adds placeholder for create and delete data frame transform APIs (#40233) 2019-03-21 09:11:38 -07:00
RomainGeffraye 00b9f5d1e4 Fix typo (#40273) 2019-03-21 07:54:11 -07:00
Lisa Cawley bbba32fb6b
[DOCS] Adds placeholder for get data frame transform APIs (#40283) 2019-03-21 07:45:17 -07:00
James Rodewig 6aadcd93c4
[DOCS] Add 'recovery' to glossary for issue #7264 (#40275) 2019-03-21 08:25:26 -04:00
Lisa Cawley e7f9c73d10
[DOCS] Adds placeholder for data frame preview API (#40232) 2019-03-20 10:19:41 -07:00
Alan Woodward 64a53e42cd
Add `use_field` option to intervals query (#40157)
This is the equivalent of the `field_masking_span` query, allowing users to
merge intervals from multiple fields - for example, to search for stemmed tokens
near unstemmed tokens.
2019-03-20 16:25:15 +00:00
James Rodewig c6474a3c26
Add links to Freeze/Unfreeze index APIs (#40225)
* Add links to Freeze/Unfreeze index APIs

* Resolved merge conflicts with PR #40160
2019-03-20 11:44:36 -04:00
avshiav 955ccf2583 [DOCS] Fixed missing space (#38305) 2019-03-20 16:18:01 +01:00