Fix Neural search pipeline example (#2177)

* Fix Neural search pipeline example

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Fix cluster settings

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
This commit is contained in:
Naarcha-AWS 2022-12-13 15:33:01 -06:00 committed by GitHub
parent 6c0a9072b4
commit 320244db63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@ If `true`, ML Commons tasks and models run machine learning (ML) tasks on ML nod
- Default value: `false`
- Value range: `true` or `false`
## Dispatch tasks to ML node with least load
## Dispatch tasks to ML node
### Setting
@ -42,7 +42,7 @@ plugins.ml_commons.task_dispatch_policy: round_robin
### Values
- Dafault value: `round_robin`
- Value range: `round_robin or least_load`
- Value range: `round_robin` or `least_load`
## Set sync up job intervals

View File

@ -42,7 +42,7 @@ output_field_name | string | The name of the field in which output text is stor
Use the following example request to create a pipeline:
```json
```
PUT _ingest/pipeline/nlp-pipeline
{
"description": "An example neural search pipeline",
@ -51,7 +51,7 @@ PUT _ingest/pipeline/nlp-pipeline
"text_embedding": {
"model_id": "bxoDJ7IHGM14UqatWc_2j",
"field_map": {
"text": "text_knn"
"passage_text": "passage_embedding"
}
}
}