mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
* [DOCS] Add ML info about script fields * [DOCS] Add links to ML script fields page * [DOCS] Add ML API examples to transforms.asciidoc * [DOCS] Addressed feedback in ML script field examples * [DOCS] Add preview to ML script fields example * [DOCS] Expanded code snippets in ML transform examples * [DOCS] Add output for ML scripted fields example * [DOCS] Add output for more ML scripted field examples * [DOCS] Add output for final ML scripted field examples * [DOC] Add Kibana details for ML script fields * [DOCS] Remove example from ML transforms Original commit: elastic/x-pack-elasticsearch@51057b029f
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
[[ml-configuring]]
|
|
== Configuring Machine Learning
|
|
|
|
If you want to use {xpackml} features, there must be at least one {ml} node in
|
|
your cluster and all master-eligible nodes must have {ml} enabled. By default,
|
|
when you install {xpack}, all nodes are {ml} nodes. For more information about
|
|
these settings, see <<xpack-settings>>.
|
|
|
|
To use the {xpackml} features to analyze your data, you must create a job and
|
|
send your data to that job.
|
|
|
|
* If your data is stored in {es}:
|
|
|
|
** You can create a {dfeed}, which retrieves data from {es} for analysis.
|
|
** You can use {kib} to expedite the creation of jobs and {dfeeds}.
|
|
|
|
* If your data is not stored in {es}, you can
|
|
{ref}/ml-post-data.html[POST data] from any source directly to an API.
|
|
|
|
The results of {ml} analysis are stored in {es} and you can use {kib} to help
|
|
you visualize and explore the results.
|
|
|
|
For a tutorial that walks you through these configuration steps,
|
|
see <<ml-getting-started>>.
|
|
|
|
Though it is quite simple to analyze your data and provide quick {ml} results,
|
|
gaining deep insights might require some additional planning and configuration.
|
|
The scenarios in this section describe some best practices for generating useful
|
|
{ml} results and insights from your data.
|
|
|
|
* <<ml-configuring-aggregation>>
|
|
* <<ml-configuring-categories>>
|
|
* <<ml-configuring-pop>>
|
|
* <<ml-configuring-transform>>
|
|
|
|
include::aggregations.asciidoc[]
|
|
include::categories.asciidoc[]
|
|
include::populations.asciidoc[]
|
|
include::transforms.asciidoc[]
|