diff --git a/_search-plugins/knn/api.md b/_search-plugins/knn/api.md
index 1817bf5578..f5cf6c4f11 100644
--- a/_search-plugins/knn/api.md
+++ b/_search-plugins/knn/api.md
@@ -1,6 +1,6 @@
---
layout: default
-title: k-NN API
+title: API
nav_order: 5
parent: k-NN
has_children: false
@@ -8,7 +8,7 @@ has_children: false
# k-NN plugin API
-The k-NN plugin adds two API operations to help you better manage the plugin's functionality.
+The k-NN plugin adds several APIs for managing, monitoring and optimizing your k-NN workload.
## Stats
@@ -23,25 +23,35 @@ GET /_plugins/_knn/nodeId1,nodeId2/stats/statName1,statName2
Statistic | Description
:--- | :---
`circuit_breaker_triggered` | Indicates whether the circuit breaker is triggered. This statistic is only relevant to approximate k-NN search.
-`total_load_time` | The time in nanoseconds that k-NN has taken to load graphs into the cache. This statistic is only relevant to approximate k-NN search.
-`eviction_count` | The number of graphs that have been evicted from the cache due to memory constraints or idle time. This statistic is only relevant to approximate k-NN search.
**Note**: Explicit evictions that occur because of index deletion aren't counted.
-`hit_count` | The number of cache hits. A cache hit occurs when a user queries a graph that's already loaded into memory. This statistic is only relevant to approximate k-NN search.
-`miss_count` | The number of cache misses. A cache miss occurs when a user queries a graph that isn't loaded into memory yet. This statistic is only relevant to approximate k-NN search.
-`graph_memory_usage` | Current cache size (total size of all graphs in memory) in kilobytes. This statistic is only relevant to approximate k-NN search.
-`graph_memory_usage_percentage` | The current weight of the cache as a percentage of the maximum cache capacity.
-`graph_index_requests` | The number of requests to add the `knn_vector` field of a document into a graph.
-`graph_index_errors` | The number of requests to add the `knn_vector` field of a document into a graph that have produced an error.
-`graph_query_requests` | The number of graph queries that have been made.
-`graph_query_errors` | The number of graph queries that have produced an error.
+`total_load_time` | The time in nanoseconds that k-NN has taken to load native library indices into the cache. This statistic is only relevant to approximate k-NN search.
+`eviction_count` | The number of native library indices that have been evicted from the cache due to memory constraints or idle time. This statistic is only relevant to approximate k-NN search.
**Note**: Explicit evictions that occur because of index deletion aren't counted.
+`hit_count` | The number of cache hits. A cache hit occurs when a user queries a native library index that's already loaded into memory. This statistic is only relevant to approximate k-NN search.
+`miss_count` | The number of cache misses. A cache miss occurs when a user queries a native library index that isn't loaded into memory yet. This statistic is only relevant to approximate k-NN search.
+`graph_memory_usage` | The amount of native memory native library indices are using on the node in kilobytes.
+`graph_memory_usage_percentage` | The amount of native memory native library indices are using on the node as a percentage of the maximum cache capacity.
+`graph_index_requests` | The number of requests to add the `knn_vector` field of a document into a native library index.
+`graph_index_errors` | The number of requests to add the `knn_vector` field of a document into a native library index that have produced an error.
+`graph_query_requests` | The number of native library index queries that have been made.
+`graph_query_errors` | The number of native library index queries that have produced an error.
`knn_query_requests` | The number of k-NN query requests received.
`cache_capacity_reached` | Whether `knn.memory.circuit_breaker.limit` has been reached. This statistic is only relevant to approximate k-NN search.
-`load_success_count` | The number of times k-NN successfully loaded a graph into the cache. This statistic is only relevant to approximate k-NN search.
-`load_exception_count` | The number of times an exception occurred when trying to load a graph into the cache. This statistic is only relevant to approximate k-NN search.
-`indices_in_cache` | For each index that has graphs in the cache, this statistic provides the number of graphs that index has and the total `graph_memory_usage` that index is using, in kilobytes.
+`load_success_count` | The number of times k-NN successfully loaded a native library index into the cache. This statistic is only relevant to approximate k-NN search.
+`load_exception_count` | The number of times an exception occurred when trying to load a native library index into the cache. This statistic is only relevant to approximate k-NN search.
+`indices_in_cache` | For each OpenSearch index with a `knn_vector` field and approximate k-NN turned on, this statistic provides the number of native library indices that OpenSearch index has and the total `graph_memory_usage` that the OpenSearch index is using, in kilobytes.
`script_compilations` | The number of times the k-NN script has been compiled. This value should usually be 1 or 0, but if the cache containing the compiled scripts is filled, the k-NN script might be recompiled. This statistic is only relevant to k-NN score script search.
`script_compilation_errors` | The number of errors during script compilation. This statistic is only relevant to k-NN score script search.
`script_query_requests` | The total number of script queries. This statistic is only relevant to k-NN score script search.
`script_query_errors` | The number of errors during script queries. This statistic is only relevant to k-NN score script search.
+`nmslib_initialized` | Boolean value indicating whether the *nmslib* JNI library has been loaded and initialized on the node.
+`faiss_initialized` | Boolean value indicating whether the *faiss* JNI library has been loaded and initialized on the node.
+`model_index_status` | Status of model system index. Valid values are "red", "yellow", "green". If the index does not exist, this will be null.
+`indexing_from_model_degraded` | Boolean value indicating if indexing from a model is degraded. This will happen if there is not enough JVM memory to cache the models.
+`training_requests` | The number of training requests made to the node.
+`training_errors` | The number of training errors that have occurred on the node.
+`training_memory_usage` | The amount of native memory training is using on the node in kilobytes.
+`training_memory_usage_percentage` | The amount of native memory training is using on the node as a percentage of the maximum cache capacity.
+
+**Note**: Some stats contain *graph* in the name. In these cases, *graph* is synonymous with *native library index*. The term *graph* is a legacy detail, coming from when the plugin only supported the HNSW algorithm, which consists of hierarchical graphs.
### Usage
@@ -54,37 +64,45 @@ GET /_plugins/_knn/stats?pretty
"successful" : 1,
"failed" : 0
},
- "cluster_name" : "_run",
+ "cluster_name" : "my-cluster",
"circuit_breaker_triggered" : false,
+ "model_index_status" : "YELLOW",
"nodes" : {
- "HYMrXXsBSamUkcAjhjeN0w" : {
- "eviction_count" : 0,
- "miss_count" : 1,
- "graph_memory_usage" : 1,
- "graph_memory_usage_percentage" : 3.68,
- "graph_index_requests" : 7,
- "graph_index_errors" : 1,
- "knn_query_requests" : 4,
- "graph_query_requests" : 30,
- "graph_query_errors" : 15,
- "indices_in_cache" : {
- "myindex" : {
- "graph_memory_usage" : 2,
- "graph_memory_usage_percentage" : 3.68,
- "graph_count" : 2
- }
- },
- "cache_capacity_reached" : false,
- "load_exception_count" : 0,
- "hit_count" : 0,
- "load_success_count" : 1,
- "total_load_time" : 2878745,
- "script_compilations" : 1,
- "script_compilation_errors" : 0,
- "script_query_requests" : 534,
- "script_query_errors" : 0
- }
+ "JdfxIkOS1-43UxqNz98nw" : {
+ "graph_memory_usage_percentage" : 3.68,
+ "graph_query_requests" : 1420920,
+ "graph_memory_usage" : 2,
+ "cache_capacity_reached" : false,
+ "load_success_count" : 179,
+ "training_memory_usage" : 0,
+ "indices_in_cache" : {
+ "myindex" : {
+ "graph_memory_usage" : 2,
+ "graph_memory_usage_percentage" : 3.68,
+ "graph_count" : 2
+ }
+ },
+ "script_query_errors" : 0,
+ "hit_count" : 1420775,
+ "knn_query_requests" : 147092,
+ "total_load_time" : 2436679306,
+ "miss_count" : 179,
+ "training_memory_usage_percentage" : 0.0,
+ "graph_index_requests" : 656,
+ "faiss_initialized" : true,
+ "load_exception_count" : 0,
+ "training_errors" : 0,
+ "eviction_count" : 0,
+ "nmslib_initialized" : false,
+ "script_compilations" : 0,
+ "script_query_requests" : 0,
+ "graph_query_errors" : 0,
+ "indexing_from_model_degraded" : false,
+ "graph_index_errors" : 0,
+ "training_requests" : 17,
+ "script_compilation_errors" : 0
}
+ }
}
```
@@ -96,7 +114,7 @@ GET /_plugins/_knn/HYMrXXsBSamUkcAjhjeN0w/stats/circuit_breaker_triggered,graph_
"successful" : 1,
"failed" : 0
},
- "cluster_name" : "_run",
+ "cluster_name" : "my-cluster",
"circuit_breaker_triggered" : false,
"nodes" : {
"HYMrXXsBSamUkcAjhjeN0w" : {
@@ -111,13 +129,13 @@ GET /_plugins/_knn/HYMrXXsBSamUkcAjhjeN0w/stats/circuit_breaker_triggered,graph_
Introduced 1.0
{: .label .label-purple }
-The Hierarchical Navigable Small World (HNSW) graphs used to perform an approximate k-Nearest Neighbor (k-NN) search are stored as `.hnsw` files with other Apache Lucene segment files. In order for you to perform a search on these graphs using the k-NN plugin, the plugin needs to load these files into native memory.
+The native library indices used to perform approximate k-Nearest Neighbor (k-NN) search are stored as special files with other Apache Lucene segment files. In order for you to perform a search on these indices using the k-NN plugin, the plugin needs to load these files into native memory.
-If the plugin hasn't loaded the graphs into native memory, it loads them when it receives a search request. The loading time can cause high latency during initial queries. To avoid this situation, users often run random queries during a warmup period. After this warmup period, the graphs are loaded into native memory and their production workloads can begin. This loading process is indirect and requires extra effort.
+If the plugin hasn't loaded the files into native memory, it loads them when it receives a search request. The loading time can cause high latency during initial queries. To avoid this situation, users often run random queries during a warmup period. After this warmup period, the files are loaded into native memory and their production workloads can begin. This loading process is indirect and requires extra effort.
-As an alternative, you can avoid this latency issue by running the k-NN plugin warmup API operation on whatever indices you're interested in searching. This operation loads all the graphs for all of the shards (primaries and replicas) of all the indices specified in the request into native memory.
+As an alternative, you can avoid this latency issue by running the k-NN plugin warmup API operation on whatever indices you're interested in searching. This operation loads all the native library files for all of the shards (primaries and replicas) of all the indices specified in the request into native memory.
-After the process finishes, you can start searching against the indices with no initial latency penalties. The warmup API operation is idempotent, so if a segment's graphs are already loaded into memory, this operation has no impact on those graphs. It only loads graphs that aren't currently in memory.
+After the process finishes, you can start searching against the indices with no initial latency penalties. The warmup API operation is idempotent, so if a segment's native library files are already loaded into memory, this operation has no impact. It only loads files that aren't currently in memory.
### Usage
@@ -150,8 +168,212 @@ After the operation has finished, use the [k-NN `_stats` API operation](#stats)
For the warmup operation to function properly, follow these best practices:
-* Don't run merge operations on indices that you want to warm up. During merge, the k-NN plugin creates new segments, and old segments are sometimes deleted. For example, you could encounter a situation in which the warmup API operation loads graphs A and B into native memory, but segment C is created from segments A and B being merged. The graphs for A and B would no longer be in memory, and graph C would also not be in memory. In this case, the initial penalty for loading graph C is still present.
+* Don't run merge operations on indices that you want to warm up. During merge, the k-NN plugin creates new segments, and old segments are sometimes deleted. For example, you could encounter a situation in which the warmup API operation loads native library indices A and B into native memory, but segment C is created from segments A and B being merged. The native library indices for A and B would no longer be in memory, and native library index C would also not be in memory. In this case, the initial penalty for loading native library index C is still present.
+
+* Confirm that all native library indices you want to warm up can fit into native memory. For more information about the native memory limit, see the [knn.memory.circuit_breaker.limit statistic]({{site.url}}{{site.baseurl}}/search-plugins/knn/settings#cluster-settings). High graph memory usage causes cache thrashing, which can lead to operations constantly failing and attempting to run again.
+
+* Don't index any documents that you want to load into the cache. Writing new information to segments prevents the warmup API operation from loading the native library indices until they're searchable. This means that you would have to run the warmup operation again after indexing finishes.
+
+## Get Model
+Introduced 1.2
+{: .label .label-purple }
+
+Used to retrieve information about models present in the cluster. Some native library index configurations require a
+training step before indexing and querying can begin. The output of training is a model that can then be used to
+initialize native library index files during indexing. The model is serialized in the k-NN model system index.
+
+```
+GET /_plugins/_knn/models/{model_id}
+```
+
+Response Field | Description
+:--- | :---
+`model_id` | The id of the fetched model.
+`model_blob` | The base64 encoded string of the serialized model.
+`state` | Current state of the model. Either "created", "failed", "training".
+`timestamp` | Time when the model was created.
+`description` | User provided description of the model.
+`error` | Error message explaining why the model is in the failed state.
+`space_type` | Space type this model is trained for.
+`dimension` | Dimension this model is for.
+`engine` | Native library used to create model. Either "faiss" or "nmslib".
+
+### Usage
+
+```json
+GET /_plugins/_knn/models/test-model?pretty
+{
+ "model_id" : "test-model",
+ "model_blob" : "SXdGbIAAAAAAAAAAAA...",
+ "state" : "created",
+ "timestamp" : "2021-11-15T18:45:07.505369036Z",
+ "description" : "Default",
+ "error" : "",
+ "space_type" : "l2",
+ "dimension" : 128,
+ "engine" : "faiss"
+}
+```
+
+```json
+GET /_plugins/_knn/models/test-model?pretty&filter_path=model_id,state
+{
+ "model_id" : "test-model",
+ "state" : "created"
+}
+```
+
+## Search Model
+Introduced 1.2
+{: .label .label-purple }
+
+Use an OpenSearch query to search for models in the index.
+
+### Usage
+```json
+GET/POST /_plugins/_knn/models/_search?pretty&_source_excludes=model_blob
+{
+ "query": {
+ ...
+ }
+}
+
+{
+ "took" : 0,
+ "timed_out" : false,
+ "_shards" : {
+ "total" : 1,
+ "successful" : 1,
+ "skipped" : 0,
+ "failed" : 0
+ },
+ "hits" : {
+ "total" : {
+ "value" : 1,
+ "relation" : "eq"
+ },
+ "max_score" : 1.0,
+ "hits" : [
+ {
+ "_index" : ".opensearch-knn-models",
+ "_type" : "_doc",
+ "_id" : "test-model",
+ "_score" : 1.0,
+ "_source" : {
+ "engine" : "faiss",
+ "space_type" : "l2",
+ "description" : "Default",
+ "model_id" : "test-model",
+ "state" : "created",
+ "error" : "",
+ "dimension" : 128,
+ "timestamp" : "2021-11-15T18:45:07.505369036Z"
+ }
+ }
+ ]
+ }
+}
+```
+
+## Delete Model
+Introduced 1.2
+{: .label .label-purple }
+
+Used to delete a particular model in the cluster.
+
+### Usage
+
+```json
+DELETE /_plugins/_knn/models/{model_id}
+{
+ "model_id": {model_id},
+ "acknowledged": true
+}
+```
+
+## Train Model
+Introduced 1.2
+{: .label .label-purple }
+
+Create and train a model that can be used for initializing k-NN native library indices during indexing. This API will
+pull training data from a `knn_vector` field in a training index and then create and train a model and then serialize it
+to the model system index. Training data must match the dimension passed into the body of the request. This request
+will return when training begins. To monitor the state of the model, use the [Get model API](#get-model).
+
+Query Parameter | Description
+:--- | :---
+`model_id` | (Optional) The id of the fetched model. If not specified, a random id will be generated.
+`node_id` | (Optional) Preferred node to execute training. If set, this node will be used to perform training if it is deemed to be capable.
+
+Request Parameter | Description
+:--- | :---
+`training_index` | Index from where training data from.
+`training_field` | `knn_vector` field from `training_index` to grab training data from. Dimension of this field must match `dimension` passed in to this request.
+`dimension` | Dimension this model is for.
+`max_training_vector_count` | (Optional) Maximum number of vectors from the training index to use for training. Defaults to all of the vectors in the index.
+`search_size` | (Optional) Training data is pulled from the training index with scroll queries. Defines the number of results to return per scroll query. Defaults to 10,000.
+`description` | (Optional) User provided description of the model.
+`method` | Configuration of ANN method used for search. For more information on possible methods, refer to the [method documentation]({{site.url}}{{site.baseurl}}/search-plugins/knn/knn-index#method-definitions). Method must require training to be valid.
+
+
+### Usage
-* Confirm that all graphs you want to warm up can fit into native memory. For more information about the native memory limit, see the [knn.memory.circuit_breaker.limit statistic]({{site.url}}{{site.baseurl}}/search-plugins/knn/settings#cluster-settings). High graph memory usage causes cache thrashing, which can lead to operations constantly failing and attempting to run again.
+```json
+POST /_plugins/_knn/models/{model_id}/_train?preference={node_id}
+{
+ "training_index": "train-index-name",
+ "training_field": "train-field-name",
+ "dimension": 16,
+ "max_training_vector_count": 1200,
+ "search_size": 100,
+ "description": "My model",
+ "method": {
+ "name":"ivf",
+ "engine":"faiss",
+ "space_type": "l2",
+ "parameters":{
+ "nlists":128,
+ "encoder":{
+ "name":"pq",
+ "parameters":{
+ "code_size":8
+ }
+ }
+ }
+ }
+}
+
+{
+ "model_id": "model_x"
+}
+```
-* Don't index any documents that you want to load into the cache. Writing new information to segments prevents the warmup API operation from loading the graphs until they're searchable. This means that you would have to run the warmup operation again after indexing finishes.
+```json
+POST /_plugins/_knn/models/_train?preference={node_id}
+{
+ "training_index": "train-index-name",
+ "training_field": "train-field-name",
+ "dimension": 16,
+ "max_training_vector_count": 1200,
+ "search_size": 100,
+ "description": "My model",
+ "method": {
+ "name":"ivf",
+ "engine":"faiss",
+ "space_type": "l2",
+ "parameters":{
+ "nlists":128,
+ "encoder":{
+ "name":"pq",
+ "parameters":{
+ "code_size":8
+ }
+ }
+ }
+ }
+}
+
+{
+ "model_id": "dcdwscddscsad"
+}
+```
diff --git a/_search-plugins/knn/approximate-knn.md b/_search-plugins/knn/approximate-knn.md
index 6d2e8434be..5b0098fbe9 100644
--- a/_search-plugins/knn/approximate-knn.md
+++ b/_search-plugins/knn/approximate-knn.md
@@ -9,19 +9,32 @@ has_math: true
# Approximate k-NN search
-The approximate k-NN method uses [nmslib's](https://github.com/nmslib/nmslib/) implementation of the Hierarchical Navigable Small World (HNSW) algorithm to power k-NN search. In this case, approximate means that for a given search, the neighbors returned are an estimate of the true k-nearest neighbors. Of the three methods, this method offers the best search scalability for large data sets. Generally speaking, once the data set gets into the hundreds of thousands of vectors, this approach is preferred.
+The approximate k-NN search method uses nearest neighbor algorithms from *nmslib* and *faiss* to power
+k-NN search. To see the algorithms that the plugin currently supports, check out the [k-NN Index documentation]({{site.url}}{{site.baseurl}}/search-plugins/knn/knn-index#method-definitions).
+In this case, approximate means that for a given search, the neighbors returned are an estimate of the true k-nearest
+neighbors. Of the three search methods the plugin provides, this method offers the best search scalability for large
+data sets. Generally speaking, once the data set gets into the hundreds of thousands of vectors, this approach is
+preferred.
-The k-NN plugin builds an HNSW graph of the vectors for each "knn-vector field"/ "Lucene segment" pair during indexing that can be used to efficiently find the k-nearest neighbors to a query vector during search. To learn more about Lucene segments, see the [Apache Lucene documentation](https://lucene.apache.org/core/{{site.lucene_version}}/core/org/apache/lucene/codecs/lucene87/package-summary.html#package.description). These graphs are loaded into native memory during search and managed by a cache. To learn more about pre-loading graphs into memory, refer to the [warmup API]({{site.url}}{{site.baseurl}}/search-plugins/knn/api#warmup-operation). Additionally, you can see what graphs are already loaded in memory, which you can learn more about in the [stats API section]({{site.url}}{{site.baseurl}}/search-plugins/knn/api#stats).
+The k-NN plugin builds a native library index of the vectors for each "knn-vector field"/ "Lucene segment" pair during
+indexing that can be used to efficiently find the k-nearest neighbors to a query vector during search. To learn more about
+Lucene segments, see the [Apache Lucene documentation](https://lucene.apache.org/core/{{site.lucene_version}}/core/org/apache/lucene/codecs/lucene87/package-summary.html#package.description).
+These native library indices are loaded into native memory during search and managed by a cache. To learn more about
+pre-loading native library indices into memory, refer to the [warmup API]({{site.url}}{{site.baseurl}}/search-plugins/knn/api#warmup-operation).
+Additionally, you can see what native library indices are already loaded in memory, which you can learn more about in the
+[stats API section]({{site.url}}{{site.baseurl}}/search-plugins/knn/api#stats).
-Because the graphs are constructed during indexing, it is not possible to apply a filter on an index and then use this search method. All filters are applied on the results produced by the approximate nearest neighbor search.
+Because the native library indices are constructed during indexing, it is not possible to apply a filter on an index
+ and then use this search method. All filters are applied on the results produced by the approximate nearest neighbor
+ search.
## Get started with approximate k-NN
-To use the k-NN plugin's approximate search functionality, you must first create a k-NN index with setting `index.knn` to `true`. This setting tells the plugin to create HNSW graphs for the index.
+To use the k-NN plugin's approximate search functionality, you must first create a k-NN index with setting `index.knn`
+to `true`. This setting tells the plugin to create native library indices for the index.
-Additionally, if you're using the approximate k-nearest neighbor method, specify `knn.space_type` to the space you're interested in. You can't change this setting after it's set. To see what spaces we support, see [spaces](#spaces). By default, `index.knn.space_type` is `l2`. For more information about index settings, such as algorithm parameters you can tweak to tune performance, see [Index settings]({{site.url}}{{site.baseurl}}/search-plugins/knn/knn-index#index-settings).
-
-Next, you must add one or more fields of the `knn_vector` data type. This example creates an index with two `knn_vector` fields and uses cosine similarity:
+Next, you must add one or more fields of the `knn_vector` data type. This example creates an index with two
+`knn_vector`'s, one using *faiss*, the other using *nmslib*, fields:
```json
PUT my-knn-index-1
@@ -52,8 +65,8 @@ PUT my-knn-index-1
"dimension": 4,
"method": {
"name": "hnsw",
- "space_type": "cosinesimil",
- "engine": "nmslib",
+ "space_type": "innerproduct",
+ "engine": "faiss",
"parameters": {
"ef_construction": 256,
"m": 48
@@ -65,9 +78,14 @@ PUT my-knn-index-1
}
```
-The `knn_vector` data type supports a vector of floats that can have a dimension of up to 10,000, as set by the dimension mapping parameter.
+In the example above, both `knn_vector`'s are configured from method definitions. Additionally, `knn_vector`'s can also
+be configured from models. Learn more about it [here]({{site.url}}{{site.baseurl}}/search-plugins/knn/knn-index#knn_vector-data-type)!
+
+The `knn_vector` data type supports a vector of floats that can have a dimension of up to 10,000, as set by the
+dimension mapping parameter.
-In OpenSearch, codecs handle the storage and retrieval of indices. The k-NN plugin uses a custom codec to write vector data to graphs so that the underlying k-NN search library can read it.
+In OpenSearch, codecs handle the storage and retrieval of indices. The k-NN plugin uses a custom codec to write vector
+data to native library indices so that the underlying k-NN search library can read it.
{: .tip }
After you create the index, you can add some data to it:
@@ -112,10 +130,131 @@ GET my-knn-index-1/_search
}
```
-`k` is the number of neighbors the search of each graph will return. You must also include the `size` option, which indicates how many results the query actually returns. The plugin returns `k` amount of results for each shard (and each segment) and `size` amount of results for the entire query. The plugin supports a maximum `k` value of 10,000.
+`k` is the number of neighbors the search of each graph will return. You must also include the `size` option, which
+indicates how many results the query actually returns. The plugin returns `k` amount of results for each shard
+(and each segment) and `size` amount of results for the entire query. The plugin supports a maximum `k` value of 10,000.
+
+### Building a k-NN index from a model
+
+For some of the algorithms that we support, the native library index needs to be trained before it can be used. Training
+everytime a segment is created would be very expensive, so, instead, we introduce the concept of a *model* that is used
+to initialize the native library index during segment creation. A *model* is created by calling the [Train API]({{site.url}}{{site.baseurl}}/search-plugins/knn/api#train-model),
+passing in the source of training data as well as the method definition of the model. Once training is complete, the
+model will be serialized to a k-NN model system index. Then, during indexing, the model is pulled from this index to
+initialize the segments.
+
+In order to train a model, we first need an OpenSearch index with training data in it. Training data can come from
+any `knn_vector` field that has a dimension matching the dimension of the model you want to create. Training data can be
+the same data that you are going to index or a separate set. Let's create a training index:
+
+```json
+PUT /train-index
+{
+ "settings" : {
+ "number_of_shards" : 3,
+ "number_of_replicas" : 0
+ },
+ "mappings": {
+ "properties": {
+ "train-field": {
+ "type": "knn_vector",
+ "dimension": 4
+ }
+ }
+ }
+}
+```
+
+Notice that `index.knn` is not set in the index settings. This ensures that we do not create native library indices for
+this index.
+
+Next, let's add some data to it:
+```json
+POST _bulk
+{ "index": { "_index": "train-index", "_id": "1" } }
+{ "train-field": [1.5, 5.5, 4.5, 6.4]}
+{ "index": { "_index": "train-index", "_id": "2" } }
+{ "train-field": [2.5, 3.5, 5.6, 6.7]}
+{ "index": { "_index": "train-index", "_id": "3" } }
+{ "train-field": [4.5, 5.5, 6.7, 3.7]}
+{ "index": { "_index": "train-index", "_id": "4" } }
+{ "train-field": [1.5, 5.5, 4.5, 6.4]}
+...
+```
+
+After indexing into the training index completes, we can call our the Train API:
+```json
+POST /_plugins/_knn/models/_train/my-model
+{
+ "training_index": "train-index",
+ "training_field": "train-field",
+ "dimension": 4,
+ "description": "My models description",
+ "search_size": 500,
+ "method": {
+ "name":"hnsw",
+ "engine":"faiss",
+ "parameters":{
+ "encoder":{
+ "name":"pq",
+ "parameters":{
+ "code_size": 8,
+ "m": 8
+ }
+ }
+ }
+ }
+}
+```
+
+The Train API will return as soon as the training job is started. To check its status, we can use the Get Model API:
+```json
+GET /_plugins/_knn/models/my-model?filter_path=state&pretty
+{
+ "state": "training"
+}
+```
+
+Once the model enters the "created" state, we can create an index that will use this model to initialize it's native
+library indices:
+```json
+PUT /target-index
+{
+ "settings" : {
+ "number_of_shards" : 3,
+ "number_of_replicas" : 1,
+ "index.knn": true
+ },
+ "mappings": {
+ "properties": {
+ "target-field": {
+ "type": "knn_vector",
+ "model_id": "my-model"
+ }
+ }
+ }
+}
+```
+
+Lastly, we can add the documents we want to be searched to the index:
+```json
+POST _bulk
+{ "index": { "_index": "target-index", "_id": "1" } }
+{ "target-field": [1.5, 5.5, 4.5, 6.4]}
+{ "index": { "_index": "target-index", "_id": "2" } }
+{ "target-field": [2.5, 3.5, 5.6, 6.7]}
+{ "index": { "_index": "target-index", "_id": "3" } }
+{ "target-field": [4.5, 5.5, 6.7, 3.7]}
+{ "index": { "_index": "target-index", "_id": "4" } }
+{ "target-field": [1.5, 5.5, 4.5, 6.4]}
+...
+```
+
+After data is ingested, it can be search just like any other `knn_vector` field!
### Using approximate k-NN with filters
-If you use the `knn` query alongside filters or other clauses (e.g. `bool`, `must`, `match`), you might receive fewer than `k` results. In this example, `post_filter` reduces the number of results from 2 to 1:
+If you use the `knn` query alongside filters or other clauses (e.g. `bool`, `must`, `match`), you might receive fewer
+than `k` results. In this example, `post_filter` reduces the number of results from 2 to 1:
```json
GET my-knn-index-1/_search
@@ -142,7 +281,12 @@ GET my-knn-index-1/_search
## Spaces
-A space corresponds to the function used to measure the distance between two points in order to determine the k-nearest neighbors. From the k-NN perspective, a lower score equates to a closer and better result. This is the opposite of how OpenSearch scores results, where a greater score equates to a better result. To convert distances to OpenSearch scores, we take 1 / (1 + distance). Currently, the k-NN plugin supports the following spaces:
+A space corresponds to the function used to measure the distance between two points in order to determine the k-nearest
+neighbors. From the k-NN perspective, a lower score equates to a closer and better result. This is the opposite of how
+OpenSearch scores results, where a greater score equates to a better result. To convert distances to OpenSearch scores,
+we take 1 / (1 + distance). The k-NN plugin the spaces the plugin supports are below. Not every method supports each of
+these spaces. Be sure to check out [the method documentation]({{site.url}}{{site.baseurl}}/search-plugins/knn/knn-index#method-definitions) to make sure the space you are
+interested in is supported.