Go to file
Nik Everett d88dfb11c7
More REST tests for avg/max/min/sum_bucket aggs (#88027)
Adds REST layer tests for some sneaky cases in the the `avg_bucket`,
`max_bucket`, `min_bucket`, and `sum_bucket` pipeline aggregations.
This gives us forwards and backwards compatibility tests for these
aggs as well as mixed version cluster tests for these aggs.

Relates to #26220
2022-06-27 13:49:29 -04:00
.ci
.github
.idea
benchmarks
build-conventions
build-tools Add easier configuration cache test support in build logic tests (#88047) 2022-06-27 08:11:17 -04:00
build-tools-internal Add easier configuration cache test support in build logic tests (#88047) 2022-06-27 08:11:17 -04:00
ccr/images
client
dev-tools
distribution
docs [DOCS] Warn about impact of large readahead on search (#88007) 2022-06-27 13:00:44 +03:00
gradle
libs
licenses
modules Update yaml skip version section 2022-06-27 12:56:45 +02:00
plugins
qa
rest-api-spec More REST tests for avg/max/min/sum_bucket aggs (#88027) 2022-06-27 13:49:29 -04:00
server Synthetic source numbers in columns (#88025) 2022-06-27 13:30:27 -04:00
test Presize RoutingNode (#88043) 2022-06-27 10:18:22 +02:00
x-pack Add detailed error messages for searchable snapshot shared folder assertions (#87497) 2022-06-27 16:12:37 +02:00
.backportrc.json
.dir-locals.el
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore
BUILDING.md
CHANGELOG.md
CONTRIBUTING.md
LICENSE.txt
NOTICE.txt
README.asciidoc
REST_API_COMPATIBILITY.md
TESTING.asciidoc
Vagrantfile
build.gradle
gradle.properties
gradlew
gradlew.bat
settings.gradle

README.asciidoc

= Elasticsearch

Elasticsearch is the distributed, RESTful search and analytics engine at the
heart of the https://www.elastic.co/products[Elastic Stack]. You can use
Elasticsearch to store, search, and manage data for:

* Logs
* Metrics
* A search backend
* Application monitoring
* Endpoint security

\... and more!

To learn more about Elasticsearch's features and capabilities, see our
https://www.elastic.co/products/elasticsearch[product page].

[[get-started]]
== Get started

The simplest way to set up Elasticsearch is to create a managed deployment with
https://www.elastic.co/cloud/as-a-service[Elasticsearch Service on Elastic
Cloud].

If you prefer to install and manage Elasticsearch yourself, you can download
the latest version from 
https://www.elastic.co/downloads/elasticsearch[elastic.co/downloads/elasticsearch].

For more installation options, see the
https://www.elastic.co/guide/en/elasticsearch/reference/current/install-elasticsearch.html[Elasticsearch installation
documentation].

[[upgrade]]
== Upgrade

To upgrade from an earlier version of Elasticsearch, see the
https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-upgrade.html[Elasticsearch upgrade
documentation].

[[build-source]]
== Build from source

Elasticsearch uses https://gradle.org[Gradle] for its build system.

To build a distribution for your local OS and print its output location upon
completion, run:
----
./gradlew localDistro
----

To build a distribution for another platform, run the related command:
----
./gradlew :distribution:archives:linux-tar:assemble
./gradlew :distribution:archives:darwin-tar:assemble
./gradlew :distribution:archives:windows-zip:assemble
----

To build distributions for all supported platforms, run:
----
./gradlew assemble
----

Distributions are output to `distributions/archives`.

To run the test suite, see xref:TESTING.asciidoc[TESTING].

[[docs]]
== Documentation

For the complete Elasticsearch documentation visit
https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html[elastic.co].

For information about our documentation processes, see the
xref:docs/README.asciidoc[docs README].

[[contribute]]
== Contribute

For contribution guidelines, see xref:CONTRIBUTING.md[CONTRIBUTING]. 

[[questions]]
== Questions? Problems? Suggestions?

* To report a bug or request a feature, create a
https://github.com/elastic/elasticsearch/issues/new/choose[GitHub Issue]. Please
ensure someone else hasn't created an issue for the same topic.

* Need help using Elasticsearch? Reach out on the
https://discuss.elastic.co[Elastic Forum] or https://ela.st/slack[Slack]. A
fellow community member or Elastic engineer will be happy to help you out.