https://github.com/elastic/elasticsearch

sort by:
Revision Author Date Message Commit Date
083627f [DOCS] EQL: Clarify until keyword docs (#61794) (#61809) 01 September 2020, 17:56:59 UTC
b8de545 Adjust BWC after backport of #60818 01 September 2020, 14:26:56 UTC
99d935c Fix Concurrent Snapshot Create+Delete + Delete Index (#61770) (#61774) We had a bug here were we put a `null` value into the shard assignment mapping when reassigning work after a snapshot delete had gone through. This only affects partial snaphots but essentially dead-locks the snapshot process. Closes #61762 01 September 2020, 11:24:29 UTC
13b9536 Remove usage of IndexSortSortedNumericDocValuesRangeQuery (#61772) This change reverts the optimization added in #56657. We found a bug in `IndexSortSortedNumericDocValuesRangeQuery` that can fail the entire shard search request so this commit removes the optimization and restore the old behavior (range query on points) in this release branch. Relates #61766 01 September 2020, 10:20:57 UTC
45518b7 Remove redundant symbol in msearch tests (#61353) 01 September 2020, 08:59:05 UTC
b0939f7 [DOCS] Clarify enabling monitoring features (#61758) 31 August 2020, 20:19:58 UTC
4f91964 [DOCS] Document static monitoring settings (#61748) (#61757) 31 August 2020, 20:06:33 UTC
457c824 [DOCS] Document static ILM settings (#61745) (#61750) 31 August 2020, 18:02:51 UTC
793926c [DOCS] Add placeholder for 7.9.1 release notes (#61652) (#61741) 31 August 2020, 16:40:06 UTC
f473c8e [DOCS] Remove placeholder for 7.8.2 release notes (#61653) (#61737) Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> 31 August 2020, 16:10:35 UTC
cd42e71 [DOCS] Add jump list to breaking changes page (#61598) (#61740) 31 August 2020, 15:55:12 UTC
35d2e29 Remove Outdated Snapshot Docs (#61684) (#61733) Removing some now outdated statements that refer to a time when snapshot operations could not run concurrently. Closes #61680 31 August 2020, 15:48:36 UTC
9ea8ea3 [DOCS] Document dynamic cluster-lvl shard alloc settings (#61338) (#61736) 31 August 2020, 15:20:06 UTC
17be307 [DOCS] Fix typo in range query docs (#61722) (#61732) 31 August 2020, 15:03:22 UTC
7cfa499 [DOCS] Add force merge to hot phase list (#61725) (#61730) 31 August 2020, 15:02:54 UTC
c43377c [DOCS] Fix Gsub processor snippet (#61720) (#61724) 31 August 2020, 14:43:39 UTC
21cb50f [DOCS] Fix old NodeSelector field in Low Level REST Client (#61551) (#61719) Co-authored-by: Manabu Matsuzaki <matsumana@users.noreply.github.com> 31 August 2020, 14:08:06 UTC
5ed8cc8 Upgrade to Lucene 8.6.2 (#61688) This commit upgrades the Lucene dependencies to 8.6.2. 31 August 2020, 14:01:36 UTC
cfa1a6c Set timeout of auto put-follow request to unbounded (#61679) If the master node of the follower cluster is busy, then the auto-follower will fail to initialize the following process. This also occurs when an auto-follow pattern matches multiple indices. We should set the timeout of put-follow requests issued by the auto-follower to unbounded to avoid this problem. Closes #56891 31 August 2020, 12:56:49 UTC
5ac2bb0 [DOCS] Fix typo in nodes stats docs (#61601) 31 August 2020, 12:50:01 UTC
29d3a8d Fix Race in testGetSnapshotsRequest (#61694) (#61701) The fact that the data node is already blocked on writing data files did not guarantee that the cluster state that made the data node start snapshotting is already applied on master. This could lead to races where the get snapshots action still runs based on a state without the snapshot in it, tripping the assertion. Much safer to handle this by waiting on the non-blocking snapshot create to return, which guarantees that the CS has been applied on master. Closes #61541 31 August 2020, 09:06:14 UTC
7d2eca9 Cleanly Handle S3 SDK Exceptions in Request Counting (#61686) (#61699) It looks like it is possible for a request to throw an exception early before any API interaciton has happened. This can lead to the request count map containing a `null` for the request count key. The assertion is not correct and we should not NPE here (as that might also hide the original exception since we are running this code in a `finally` block from within the S3 SDK). Closes #61670 31 August 2020, 09:06:03 UTC
6eb4748 Call ActionListener.onResponse exactly once (#61584) (#61683) Under specific circumstances we would call onResponse twice, which led to unexpected behavior. 30 August 2020, 13:46:54 UTC
4d210df [DOCS] [7.9] Update audit-settings.asciidoc (#61610) * Update audit-settings.asciidoc "I think" all {ess-icon} should be replaced by {ece-icon} because: - audit logging is not allowed on ESS, as per https://www.elastic.co/guide/en/cloud/current/ec-add-user-settings.html and https://www.elastic.co/guide/en/cloud/current/ec-restrictions.html#ec-restrictions-security - audit logging is allowed setting on ECE, as per https://www.elastic.co/guide/en/cloud-enterprise/current/ece-enable-auditing.html * Removing ESS icons for audit settings Co-authored-by: Adam Locke <adam.locke@elastic.co> 27 August 2020, 18:44:53 UTC
9391e6b Relax the index access control check for scroll searches (#61446) The check introduced by #60640 for scroll searches, in which we log if the index access control before the query and fetch phases differs from when the scroll context is created, is too strict, leading to spurious warning log messages. The check verifies instance equality but this assumes that the fetch phase is executed in the same thread context as the scroll context validation. However, this is not true if the scroll search is executed cross-cluster, and even for local scroll searches it is an unfounded assumption. The check is hence reduced to a null check for the index access. The fact that the access control is suitable given the indices that are actually accessed (by the scroll) will be done in a follow-up, after we better regulate the creation of index access controls in general. 27 August 2020, 18:17:40 UTC
f464592 [DOCS] Change 'data type' to 'field type' (#61633) (#61636) 27 August 2020, 16:47:36 UTC
d0b6465 Log more information when mappings fail on index creation (#61577) Errors from bad mappings at index creation are currently logged at DEBUG level, which can make it difficult to work out what's going on if the index is being auto-created. This commit ups the log level to INFO for auto-created indices, and includes some more information in the log message. 27 August 2020, 14:06:27 UTC
2b362c6 [7.9] Fix wrong result when executing bulk requests with and without pipeline (#61630) 27 August 2020, 13:47:25 UTC
48b1661 Fix wrong pipeline name in debug log (#58817) (#61608) 27 August 2020, 11:43:18 UTC
a89b165 Add SAML AuthN request signing tests (#48444) (#61585) - Add a unit test for our signing code - Change SAML IT to use signed authentication requests for Shibboleth to consume Backport of #48444 27 August 2020, 07:42:03 UTC
7ccf9f5 [DOCS] Per-partition categorization (#61506) 27 August 2020, 00:16:04 UTC
f29d408 [DOCS] Document static field cache settings (#61424) (#61607) 26 August 2020, 21:29:25 UTC
faa9f77 Add Lucene 8.6.0 memory leak as a known issue (#61603) This commit adds a note to the known issues docs that Lucene 8.6.0 contains a memory leak that manifests in Elasticsearch as a slow memory leak. 26 August 2020, 19:46:06 UTC
a092e63 [DOCS] Reorg field data types page (#61117) (#61600) 26 August 2020, 18:39:41 UTC
2ecbe22 [DOCS] Fix EQL syntax admon 26 August 2020, 17:39:56 UTC
715e4f3 [DOCS] Remove dupe EQl fn/pipe TOC 26 August 2020, 16:46:30 UTC
45247e8 [7.9] Refactor SamlAuthenticationIT (#57162) (#61569) Refactor the tests to not require a mock HTTP Server. This has been the cause of flakiness and removing it doesn't affect the logical coverage of this suite. The "fake UI" is now simulated by an http client that makes the necessary requests to Elasticsearch APIs. 26 August 2020, 12:35:18 UTC
915b6f7 [7.9][ML] Recover data frame extraction search from latest sort key (#61544) (#61573) If a search failure occurs during data frame extraction we catch the error and retry once. However, we retry another search that is identical to the first one. This means we will re-fetch any docs that were already processed. This may result either to training a model using duplicate data or in the case of outlier detection to an error message that the process received more records than it expected. This commit fixes this issue by tracking the latest doc's sort key and then using that in a range query in case we restart the search due to a failure. Backport of #61544 26 August 2020, 12:15:55 UTC
bc64289 [DOCS] Add 7.9 breaking change for built-in templates (#61549) 25 August 2020, 21:30:58 UTC
a39609d updated shard limit doc (#56496) (#61510) * updated shard limit doc As the documentation was not so clear. I have updated saying this limit includes open indices with unassigned primaries and replicas count towards the limit. * [DOCS] Incorporated edits. Co-authored-by: Deb Adair <debadair@elastic.co> Co-authored-by: gadekishore <50092970+gadekishore@users.noreply.github.com> 25 August 2020, 21:25:15 UTC
6a909b8 [DOCS] Fix typo in search your data docs 25 August 2020, 21:01:25 UTC
9459e53 [DOCS] Document static HTTP settings (#61429) (#61537) 25 August 2020, 15:30:14 UTC
d956673 [DOCS] Fix link to quartz crontrigger tutorial (#61531) 25 August 2020, 14:47:26 UTC
72c54af [DOCS] Removes coming tag from highlights 24 August 2020, 19:15:03 UTC
57ac2e8 [DOCS] Fix typo in profile API docs (#61445) Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com> 24 August 2020, 19:11:26 UTC
9064727 [DOCS] Remove collapsible sections in EQL fn docs (#61498) (#61500) 24 August 2020, 18:41:35 UTC
c137b8a [DOCS] Combine `Search your data` files (#61477) (#61488) No-op changes to: * Move `Search your data` source files into the same directory * Rename `Search your data` source files based on page ID * Remove unneeded includes * Remove the `Request` dir 24 August 2020, 17:08:18 UTC
ba03356 [DOCS] Fix hyphenation for "time series" (#61472) (#61482) 24 August 2020, 15:18:16 UTC
3f9db8c [7.9][ML] Remove redundant logging for creation of annotations index (#61461) (#61476) This commit removes the log info message "Created ML annotations index and aliases". The message comes in addition to elasticsearch's index creation logging and it does not add to it. In addition, since #61107 that message may be logged multiple times. Backport of #61461 24 August 2020, 14:48:33 UTC
6bb81f7 [DOCS] Fix ingest script compilation rate and cache size (#61468) (#61480) 24 August 2020, 14:46:53 UTC
ddf6899 [DOCS] Document static machine learning settings (#61382) 24 August 2020, 14:37:27 UTC
8c282eb [DOCS] Note the cluster settings API can override `elasticsearch.yml` (#61394) (#61465) Co-authored-by: Lisa Cawley <lcawley@elastic.co> 24 August 2020, 13:32:41 UTC
97bc1e7 [DOCS] Prune `Search your data` content (#61303) (#61463) Changes: * Removes narrative around URI searches. These aren't commonly used in production. The `q` param is already covered in the search API docs: https://www.elastic.co/guide/en/elasticsearch/reference/master/search-search.html#search-api-query-params-q * Adds a common options section that highlights narrative docs for query DSL, aggregations, multi-index search, search fields, pagination, sorting, and async search. * Adds a `Search shard routing` page. Moves narrative docs for adaptive replica selection, preference, routing , and shard limits to that section. * Moves search timeout and cancellation content to the `Search your data` page. * Creates a `Search multiple data streams and indices` page. Moves related narrative docs for multi-target syntax searches and `indices_boost` to that page. * Removes narrative examples for the `search_type` parameters. Moves documentation for this parameter to the search API docs. 24 August 2020, 13:32:15 UTC
509d84f [DOCS] Fix typo in CCR Put Follow API docs (#61392) 24 August 2020, 13:24:54 UTC
92124ba [DOCS] Document static dynamic transform settings (#61384) 21 August 2020, 20:20:35 UTC
aaa8a25 [DOCS] Document `xpack.graph.enabled` setting (#60073) (#61434) 21 August 2020, 19:13:21 UTC
cc853cd [DOCS] Fix query example for wildcard datatype (#61398) (#61432) Co-authored-by: jessepeixoto <jessepeixoto@gmail.com> 21 August 2020, 16:43:56 UTC
c2aafb5 [DOCS] Remove URI search examples from API reference (#61423) (#61426) 21 August 2020, 15:25:28 UTC
da43bbd Mute enrich stats test in mixed cluster (#61422) 21 August 2020, 13:56:52 UTC
23fc346 [DOCS] Fix ingest processor TOC sort (#61412) (#61417) 21 August 2020, 13:21:49 UTC
cd8fb7c [DOCS] Fix `field` def for join processor (#61395) (#61414) 21 August 2020, 12:53:45 UTC
deab510 index.hidden setting is dynamic I Just have tested and it seems to be a dynamic setting. PUT hiddenexample { "settings": { "index.hidden": true } } GET _cat/indices?v GET _cat/indices/h* PUT hiddenexample/_settings { "index.hidden": false } GET _cat/indices?v GET _cat/indices/h* 21 August 2020, 11:07:20 UTC
2cf2311 [Backport 7.9][API keys] Add full_name and email to API key doc and use them to populate authing User (#61354) (#61404) The API key document currently doesn't include the user's full_name or email attributes, and as a result, when those attributes return `null` when hitting `GET`ing `/_security/_authenticate`, and in the SAML response from the [IdP Plugin](https://github.com/elastic/elasticsearch/pull/54046). This changeset adds those fields to the document and extracts them to fill in the User when authenticating. They're effectively going to be a snapshot of the User from when the key was created, but this is in line with roles and metadata as well. Signed-off-by: lloydmeta <lloydmeta@gmail.com> 21 August 2020, 09:32:34 UTC
a940318 Add note about negative epoch times (#61379) This commit adds a reminder to date type documentation that negative epoch times are not supported. relates #40983 20 August 2020, 20:54:35 UTC
516b82b [DOCS] Fix EQL threat detection example (#61367) (#61374) 20 August 2020, 14:45:05 UTC
08d4882 Adding ignore_unavailable param. (#61368) (#61371) 20 August 2020, 14:10:32 UTC
1d2d31e Update wildcard.asciidoc Current example without specifying field name don't fetch any results 20 August 2020, 10:39:56 UTC
6c3d6f4 [DOCS] Document empty string boolean value as `false` (#61341) 19 August 2020, 16:59:50 UTC
92d7bbe [DOCS] Document dynamic circuit breaker settings (#61334) (#61336) 19 August 2020, 15:13:53 UTC
42f696f Typo "Nore roles" > "Node roles" There is a typo in the heading. 19 August 2020, 14:01:45 UTC
0394a11 [DOCS] Reorder ES TOC (#61231) (#61327) 19 August 2020, 13:32:19 UTC
a4ac587 EQL: make endsWith function use a wildcard ES query wherever possible (#61160) (#61321) (cherry picked from commit 55fdb7e2c74d4fae86ec40686091ecba831caeaf) 19 August 2020, 11:18:09 UTC
b228f49 [DOCS] Adds example to the inference aggregation description (#61290) (#61319) 19 August 2020, 10:07:49 UTC
4322410 EQL: make stringContains function use a wildcard ES query (#61189) (#61314) (cherry picked from commit 039a7d1c68f6f1ed0e7e6cfb86be6b04eec8051c) 19 August 2020, 09:41:07 UTC
0ccb3fa Disable ilm history in data streams rest qa module. (#61315) Backport of #61291 to 7.9 branch. Closes #61273 19 August 2020, 08:53:33 UTC
66cf14f Add SLES-15.2 to Docker exclusion list 18 August 2020, 22:26:33 UTC
7aa3ec3 Prevent shard relocation while closing index (#61072) We might fail to close an index if some shards are being relocated. Close #60913 18 August 2020, 19:15:13 UTC
a6797ac [DOCS] Add security updates to release notes (#61288) 18 August 2020, 16:49:33 UTC
3036d9c [7.9] [DOCS] Replaces node.transform with node.roles: [ transform ] in transforms settings. (#61267) (#61272) 18 August 2020, 16:48:41 UTC
7ba2670 [DOCS] Clarifies node.roles settings (#61266) (#61275) 18 August 2020, 16:48:04 UTC
47c89f8 Add tests that simulate new indexing strategy upgrade procedure. (#61263) (#61278) Backport of #61082 to 7.x branch. Closes #58251 18 August 2020, 16:43:15 UTC
6b3669e Add data streams wildcard pattern yml test (#61269) (#61281) (cherry picked from commit e13a365eeb6d8c6a7c9a91f94f0e8e78e3fe4773) 18 August 2020, 16:38:20 UTC
5fa3b9e EQL: Return sequence join keys in the original type (#61268) (#61283) (cherry picked from commit d54957d61faa0d502387656e3cace594017b6ea0) 18 August 2020, 16:37:32 UTC
60e1cec [DOCS] Add 7.9.0 known issue for problems with ML index mappings (#61195) Relates #61157 Relates elastic/kibana#74935 18 August 2020, 16:33:22 UTC
2111a3e [DOCS] Note max field expansions is not a hard limit (#61120) Per #35284, it looks like we changed this from a max field expansions limit to a soft limit using the `indices.query.bool.max_clause_count` dynamic cluster settting. 18 August 2020, 15:40:56 UTC
60e118a Version bump for 7.9.0 release 18 August 2020, 15:06:58 UTC
4825d87 [7.9] Introduce 6.8.13 as version (#61199) Introduce version 6.8.13 to branch 7.9 18 August 2020, 14:07:36 UTC
bcc0c3d Redo experimental tag on vwh (#61065) The docs didn't have the standard experimental text. This adds it. 18 August 2020, 14:05:11 UTC
a58bcee [7.9][DOCS] Replaces ml.node with node.roles: [ ml ] in ML settings (#61018) 18 August 2020, 13:26:49 UTC
bfb8adb [DOCS] Fix typo in Java HLRC docs (#60863) (#61265) Co-authored-by: bumjin <bumjin@gmail.com> 18 August 2020, 13:09:18 UTC
ea4ab7a Introduce ordering in the constant_keyword test for better predictibility. (#61248) (#61253) (cherry picked from commit 69193f9de8178dbaa1d8467f1686b100dd2b161c) 18 August 2020, 09:17:12 UTC
f784cbb [7.9] [DOCS] Update CCR docs to focus on Kibana (#60555) (#61239) 17 August 2020, 21:38:46 UTC
6fadbb2 [DOCS] Add usage tips to `top_hits` agg (#61215) (#61226) 17 August 2020, 17:05:49 UTC
fa5a56f [DOCS] Update configuring-metricbeat.asciidoc (#60857) Co-authored-by: Lisa Cawley <lcawley@elastic.co> 17 August 2020, 16:58:45 UTC
546a31a [DOCS] Add admon for built-in index templates (#61063) (#61221) Adds an important admonition for the built-in `metrics-*-*` and `logs-*-*` index templates. Updates several put index template snippets to include a priority. 17 August 2020, 16:48:42 UTC
3f8397f [7.9][DOCS] Adds ML related items to the release highlights (#61190) 17 August 2020, 16:16:57 UTC
7204f49 [DOCS] Update info about geo_shape bounding boxes (#61214) (#61217) * Adding information about geo_shape bounding boxes. * Fixing cross link and incorporating review feedback. 17 August 2020, 15:44:57 UTC
bbdaac9 [DOCS] Replace Wikipedia links with attribute (#61171) (#61210) 17 August 2020, 15:27:24 UTC
bd37797 QL: wildcard field type support (#58062) (#61207) (cherry picked from commit c874e6cdd3e051ce599b50c18642de038b84105f) 17 August 2020, 15:24:56 UTC
0954323 QL: add filtering query dsl support to IndexResolver (#60514) (#61201) (cherry picked from commit 7b3635d796be26af9f87d19963a8ed4ab4bbf13f) 17 August 2020, 15:00:08 UTC
back to top