-
Notifications
You must be signed in to change notification settings - Fork 627
Add Agentic Memory APIs #10714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Agentic Memory APIs #10714
Conversation
|
Thank you for submitting your PR. The PR states are In progress (or Draft) -> Tech review -> Doc review -> Editorial review -> Merged. Before you submit your PR for doc review, make sure the content is technically accurate. If you need help finding a tech reviewer, tag a maintainer. When you're ready for doc review, tag the assignee of this PR. The doc reviewer may push edits to the PR directly or leave comments and editorial suggestions for you to address (let us know in a comment if you have a preference). The doc reviewer will arrange for an editorial review. |
|
Thank you, @nathaliellenaa! Could you provide a Response fields table for all responses that have meaningful fields as described in the API template? Also, please make the headings include the word "Agentic". So, "Get Agentic Memory API", etc. This is to differentiate this API from the regular Get Memory API. Thanks! Let me know when the PR is ready for doc review. |
fdb4d02 to
51ef65f
Compare
|
LGTM |
|
@kolchfa-aws This PR is ready for doc review. |
| `messages` | List | Required | The list of messages, currently limited to one message per request. | ||
| `session_id` | String | Optional | The session ID. | ||
| `agent_id` | String | Optional | The agent ID. | ||
| `infer` | Boolean | Optional | Whether to infer context from messages. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the default for this parameter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Default should be true, will update the description
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Default is true when LLM_MODEL_ID specified, otherwise false.
| { | ||
| "id": "T9jtmpgBOh0h20Y91WtZ", | ||
| "text": "Machine learning is a subset of artificial intelligence", | ||
| "event": "ADD" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are all possible values for event and what do they mean?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
event should always be ADD in this API
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, event can be ADD, UPDATE and DELETE here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an API to add a memory - in what scenario is the event field going to be anything other than ADD?
| "memory": "Machine learning is a subset of artificial intelligence", | ||
| "memory_type": "RAW_MESSAGE", | ||
| "user_id": "admin", | ||
| "role": "assistant", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are all possible roles?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Roles can be assistant or user
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually we don't have a constraint on that. It's just in current LLMs user and assistant are most common roles we seen.
| `embedding_model_id` | String | Optional | The embedding model ID. | ||
| `embedding_model_type` | String | Optional | The embedding model type. Supported types are `TEXT_EMBEDDING` and `SPARSE_ENCODING`. | ||
| `llm_model_id` | String | Optional | The LLM model ID. | ||
| `max_infer_size` | Integer | Optional | The maximum infer size, limit is 10. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does it mean "limit is 10"? Can this parameter be an integer from 1 to 10, inclusive? Does it specify the maximum number of messages the LLM processes for inference in a single request?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
max_infer_size can only be an integer from 1 to 10 inclusive. When greater than 10, it will throw an error
| `embedding_model_type` | String | Optional | The embedding model type. Supported types are `TEXT_EMBEDDING` and `SPARSE_ENCODING`. | ||
| `llm_model_id` | String | Optional | The LLM model ID. | ||
| `max_infer_size` | Integer | Optional | The maximum infer size, limit is 10. | ||
| `memory_index_name` | String | Optional | The memory index name. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the index where memories are stored? If you don't specify it, where are the memories stores or does it matter for the user? What is the use case for specifying the index?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this is the index where memories are stored. When users don't specify it, the system will auto generate default index name.
|
@nathaliellenaa Please review my edits and answer the questions above. Once addressed, we can move to editorial review. |
Signed-off-by: Nathalie Jonathan <[email protected]>
Signed-off-by: Nathalie Jonathan <[email protected]>
Signed-off-by: Nathalie Jonathan <[email protected]>
Signed-off-by: Nathalie Jonathan <[email protected]>
Signed-off-by: Nathalie Jonathan <[email protected]>
2881e38 to
16ccf97
Compare
_ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md
Outdated
Show resolved
Hide resolved
| --- | ||
|
|
||
| # Add Agentic Memory API | ||
| **Introduced 3.2** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should mark this as experimental
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is marked as experimental on line 13
_ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md
Outdated
Show resolved
Hide resolved
_ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md
Outdated
Show resolved
Hide resolved
Signed-off-by: kolchfa-aws <[email protected]>
| `embedding_model_id` | String | Optional | The embedding model ID. | ||
| `embedding_model_type` | String | Optional | The embedding model type. Supported types are `TEXT_EMBEDDING` and `SPARSE_ENCODING`. | ||
| `llm_model_id` | String | Optional | The large language model (LLM) ID. | ||
| `max_infer_size` | Integer | Optional | The maximum number of messages the LLM processes for inference in a single request. Valid values are 1--9, inclusive. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a default for max_infer_size?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Default value should be 5
_ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md
Outdated
Show resolved
Hide resolved
…iner.md Signed-off-by: kolchfa-aws <[email protected]>
Signed-off-by: kolchfa-aws <[email protected]>
| `messages` | List | Required | A list of messages. | ||
| `session_id` | String | Optional | The session ID associated with the memory. | ||
| `agent_id` | String | Optional | The agent ID associated with the memory. | ||
| `infer` | Boolean | Optional | Controls whether the LLM infers context from messages. Default is `true`. When `true`, the LLM extracts factual information from the original text and stores it as the memory. When `false`, the memory contains the unprocessed message and you must explicitly specify the `role` in each message. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this role be an arbitrary string? How does the user know what to specify as a role?
natebower
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Editorial review
_ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md
Outdated
Show resolved
Hide resolved
_ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md
Outdated
Show resolved
Hide resolved
_ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md
Outdated
Show resolved
Hide resolved
Signed-off-by: Nathan Bower <[email protected]>
* Add agentic memory APIs Signed-off-by: Nathalie Jonathan <[email protected]> * Add agentic memory APIs Signed-off-by: Nathalie Jonathan <[email protected]> * Address comments Signed-off-by: Nathalie Jonathan <[email protected]> * Add more info Signed-off-by: Nathalie Jonathan <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Address comments Signed-off-by: Nathalie Jonathan <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Update _ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md Signed-off-by: kolchfa-aws <[email protected]> * Update _ml-commons-plugin/api/agentic-memory-apis/get-memory.md Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Nathalie Jonathan <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]>
* Update IAM and configuration order in migration scenarios Signed-off-by: Brian Presley <[email protected]> * Update main Migration Assistnat page. Signed-off-by: Brian Presley <[email protected]> * Remove checklist item from Is Migration Assistant right for you? Signed-off-by: Brian Presley <[email protected]> * Updated key components Signed-off-by: Brian Presley <[email protected]> * Removed deprecated documentation from IAM and security groups Signed-off-by: Brian Presley <[email protected]> * k-NN Add ADC and Random Rotation documentation to binary quantization (#10657) * k-NN Add ADC and Random Rotation documentation to binary quantization Signed-off-by: Finn Roblin <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Finn Roblin <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * fix dynamic tool link issue in tool index page (#10699) Signed-off-by: zane-neo <[email protected]> * TLS settings for gRPC (#10653) * Add gRPC tls settings. Signed-off-by: Finn Carroll <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Fix gRPC heading level -> 2. Signed-off-by: Finn Carroll <[email protected]> * Clarify keystore/trusstore alias behavior. Signed-off-by: Finn Carroll <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Finn Carroll <[email protected]> Signed-off-by: Finn <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Remove dynamic tool due to critical issue (#10700) * fix dynamic tool link issue in tool index page Signed-off-by: zane-neo <[email protected]> * Remove publishing dynamic tool due to critical issue Signed-off-by: zane-neo <[email protected]> --------- Signed-off-by: zane-neo <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Fix typo in neural-sparse-with-pipelines.md (#10701) `ran_features` should be `rank_features` Signed-off-by: Matt Janssen <[email protected]> * Highlight support for wildcard field (#10707) * Highlight support for wildcard field Signed-off-by: Fanit Kolchina <[email protected]> * Update _field-types/supported-field-types/wildcard.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Add a rule to replace old-style doc links with variables for spec-insert tool (#10710) Signed-off-by: Fanit Kolchina <[email protected]> * Add built-in Migration Assistant field data type transformation documentation (#10649) * Add flattened type handling documentation for Migration Assistant Signed-off-by: Andre Kurait <[email protected]> * Add flattened type conversion link for MA Signed-off-by: Andre Kurait <[email protected]> * Add string type deprecation page for MA Signed-off-by: Andre Kurait <[email protected]> * Ad dense_vector to knn transformation Signed-off-by: Andre Kurait <[email protected]> * Update for dense_vector support Signed-off-by: Andre Kurait <[email protected]> * Cleanup vale comments Signed-off-by: Andre Kurait <[email protected]> * Update for vale Signed-off-by: Andre Kurait <[email protected]> * Add section on identifying if cluster has field type Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-flattened-flat-object.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-string-text-keyword.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-string-text-keyword.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-string-text-keyword.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-dense-vector-knn-vector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Apply suggestions from code review Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Improve documentation on KNN plugin for MA Transform Signed-off-by: Andre Kurait <[email protected]> * Improve MA documentation by linking to field type documentation in transforms documentation Signed-off-by: Andre Kurait <[email protected]> * Apply suggestions from code review Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Adjust wording on metadata migrations Signed-off-by: Andre Kurait <[email protected]> * Update title Transform string fields to text/keyword Signed-off-by: Andre Kurait <[email protected]> * Cleanup string to text logic Signed-off-by: Andre Kurait <[email protected]> --------- Signed-off-by: Andre Kurait <[email protected]> Signed-off-by: Andre Kurait <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * adding docker examples for custom configuration (#10684) * adding docker examples for custom configuration Signed-off-by: Anton Rubin <[email protected]> * updating description for link for Shared file system Signed-off-by: Anton Rubin <[email protected]> * adding helm chart repo links Signed-off-by: Anton Rubin <[email protected]> * elaboring on providing configuration at start up using -E flag Signed-off-by: Anton Rubin <[email protected]> * fixing the CORS configuration Signed-off-by: Anton Rubin <[email protected]> * Update docker.md Signed-off-by: AntonEliatra <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: AntonEliatra <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: AntonEliatra <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Update cat-allocation.md (#10715) Very minor formatting change, previously disk.percent and host were not separated, just separated them. Signed-off-by: Utkarsh Agarwal <[email protected]> * Update ACORN filtering optimization section in efficient filtering. (#10698) * Update ACORN filtering optimiztaion section in efficient filtering. Signed-off-by: Dooyong Kim <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Dooyong Kim <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Dooyong Kim <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Added GPU-Access to systemd-Service Definition (#10694) * Update parent title for install and configure benchmark pages (#10686) Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Konstantin Nebel <[email protected]> * Delete unused images from the site and correct image formatting (#10691) * Remove unused images Signed-off-by: Fanit Kolchina <[email protected]> * Delete icons file and correct image formatting Signed-off-by: Fanit Kolchina <[email protected]> * Heading formatting Signed-off-by: Fanit Kolchina <[email protected]> --------- Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Konstantin Nebel <[email protected]> * Added GPU-Access for systemd --------- Signed-off-by: Konstantin Nebel <[email protected]> * Update _ml-commons-plugin/gpu-acceleration.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: TheBigK02 <[email protected]> * Update _ml-commons-plugin/gpu-acceleration.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: TheBigK02 <[email protected]> --------- Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Konstantin Nebel <[email protected]> Signed-off-by: TheBigK02 <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Konstantin Nebel <[email protected]> * Update hybrid collapse documentation for 3.2 (#10664) * Update hybrid collapse documentation for 3.2 Signed-off-by: Ryan Bogan <[email protected]> * Address comments Signed-off-by: Ryan Bogan <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Remove hybrid_search_disabled setting Signed-off-by: Fanit Kolchina <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Ryan Bogan <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Updating helm commands to work with latest version (#10716) * updating helm commands to work with latest version Signed-off-by: Anton Rubin <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: AntonEliatra <[email protected]> * Update helm.md Signed-off-by: AntonEliatra <[email protected]> * Update helm.md Signed-off-by: AntonEliatra <[email protected]> * Update helm.md Signed-off-by: AntonEliatra <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: AntonEliatra <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * [Migration Assistant] Add version command for migration console command reference (#10567) * Add version command for migration console command reference Signed-off-by: Tanner Lewis <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> --------- Signed-off-by: Tanner Lewis <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * adding clarification on quick start docs (#10722) * adding clarification on quick start docs Signed-off-by: Anton Rubin <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: AntonEliatra <[email protected]> * Update _getting-started/quickstart.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: AntonEliatra <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Add command reference for CURL also fix headings across the file (#10726) * Add command reference for CURL also fix headings across the file Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> --------- Signed-off-by: Peter Nied <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Trace analytics update for 3.2 (#10727) * update trace changes for 3.2 Signed-off-by: Adam Tackett <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Adam Tackett <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Adam Tackett <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * [DOC] ML-Commons agent framework updates (#10682) * per_agent_updates Signed-off-by: Pavan Yekbote <[email protected]> * remove redundant versioning Signed-off-by: Pavan Yekbote <[email protected]> * fix: prompts and remove the 3.0 details Signed-off-by: Pavan Yekbote <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Remove copy button from endpoints Signed-off-by: Fanit Kolchina <[email protected]> * Update _ml-commons-plugin/agents-tools/agents/plan-execute-reflect.md Signed-off-by: kolchfa-aws <[email protected]> * Update _ml-commons-plugin/agents-tools/agents/plan-execute-reflect.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Pavan Yekbote <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Add documentation for derived source in source field metadata (#10674) * Add documentation for derived source in source field metadata Signed-off-by: Tanik Pansuriya <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Update the derived source documentation and add settings in index settings page Signed-off-by: Tanik Pansuriya <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Tanik Pansuriya <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Revamp docs as UBI has evolved. (#8800) * Revamp docs as UBI has evolved. Signed-off-by: Eric Pugh <[email protected]> * Use proper spelling Signed-off-by: Eric Pugh <[email protected]> * Discuss tracking events and guids Signed-off-by: Eric Pugh <[email protected]> * Using iso 8601 datetime Signed-off-by: Eric Pugh <[email protected]> * Restructure content into clearer four types. Signed-off-by: Eric Pugh <[email protected]> * Move links around Signed-off-by: Eric Pugh <[email protected]> * Fix missing link Signed-off-by: Eric Pugh <[email protected]> * Responding to feedback Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/schemas.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/schemas.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/schemas.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Language tweak for name Signed-off-by: Eric Pugh <[email protected]> * Provide clickable links Signed-off-by: Eric Pugh <[email protected]> * lots of clean ups * Fix html formatting Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/schemas.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Final review for 3.2 release Signed-off-by: Eric Pugh <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Apply suggestions from code review Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Fix bad link Signed-off-by: Eric Pugh <[email protected]> --------- Signed-off-by: Eric Pugh <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * adding the link to update settings (#10738) * adding the link to update setting Signed-off-by: Anton Rubin <[email protected]> * Update _install-and-configure/configuring-opensearch/index-settings.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Update remote index build to announce fp16, byte and binary are supported with remote index. [3.2] (#10745) * Update remote index build to announce fp16, byte and binary are supported with remote index. Signed-off-by: Dooyong Kim <[email protected]> * Update _vector-search/remote-index-build.md Signed-off-by: Nathan Bower <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> --------- Signed-off-by: Dooyong Kim <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: Dooyong Kim <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Atlassian sources added (#10739) * Atlassian sources added Signed-off-by: Santhosh <[email protected]> * below to following Signed-off-by: Santhosh <[email protected]> * addressing review comments Signed-off-by: Santhosh <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> * addressing review comments Signed-off-by: Santhosh <[email protected]> * Update _data-prepper/pipelines/configuration/sources/atlassian-confluence.md Signed-off-by: Nathan Bower <[email protected]> * Update _data-prepper/pipelines/configuration/sources/atlassian-confluence.md Signed-off-by: Nathan Bower <[email protected]> * fixing build issues Signed-off-by: Santhosh <[email protected]> --------- Signed-off-by: Santhosh <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Implement breaking changes for examples to work with opensearch-py v3 (#10753) opensearch-py v3 has introduced a breaking change, introduced [here](opensearch-project/opensearch-py#907). Due to the change, one has to mandatorily specify argument names on all APIs. Signed-off-by: Sokratis Papadopoulos <[email protected]> * [Doc] Live Queries dashboard (#10090) (#10709) * [Doc] Live Queries dashboard (#10090) * Live Queries Dash Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Add writer edits Signed-off-by: Naarcha-AWS <[email protected]> * Update query-insights-dashboard.md Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Signed-off-by: Naarcha-AWS <[email protected]> * Fix table information Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Naarcha-AWS <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Updated the Live queries doc for cancellation features Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Update _observing-your-data/query-insights/query-insights-dashboard.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Update _observing-your-data/query-insights/query-insights-dashboard.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Update _observing-your-data/query-insights/query-insights-dashboard.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Naarcha-AWS <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Revert "Temporarily remove blogs and events from search results (#10346)" (#10757) This reverts commit ae6eabc. Signed-off-by: Peter Zhu <[email protected]> * Breaking changes selector in Migration Assistant to reference individual transformation pages (#10720) * breaking changes selector to refernece individual transformation pages Signed-off-by: Jugal Chauhan <[email protected]> * resolve comments on PR Signed-off-by: Jugal Chauhan <[email protected]> * First word and proper-noun capitalized Signed-off-by: Jugal Chauhan <[email protected]> * fix capitalization in sentences Signed-off-by: Jugal Chauhan <[email protected]> * fix capitalization in sentences Signed-off-by: Jugal Chauhan <[email protected]> --------- Signed-off-by: Jugal Chauhan <[email protected]> * Add rds source doc for Data Prepper (#10781) * Add rds source doc Signed-off-by: Hai Yan <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Hai Yan <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Add Agentic Memory APIs (#10714) * Add agentic memory APIs Signed-off-by: Nathalie Jonathan <[email protected]> * Add agentic memory APIs Signed-off-by: Nathalie Jonathan <[email protected]> * Address comments Signed-off-by: Nathalie Jonathan <[email protected]> * Add more info Signed-off-by: Nathalie Jonathan <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Address comments Signed-off-by: Nathalie Jonathan <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Update _ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md Signed-off-by: kolchfa-aws <[email protected]> * Update _ml-commons-plugin/api/agentic-memory-apis/get-memory.md Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Nathalie Jonathan <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * [GRPC] Documentation for 3.2 GRPC GA (Bulk and k-NN Search) (#10651) * [GRPC] Documentation for 3.2 GRPC GA (Bulk + KNN Search) Signed-off-by: Karen Xu <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Karen X <[email protected]> * additional cleanup Signed-off-by: Karen Xu <[email protected]> * api fixes Signed-off-by: Karen Xu <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Karen X <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Karen X <[email protected]> * fix descriptions Signed-off-by: Karen Xu <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Karen X <[email protected]> * Update formatting Signed-off-by: Karen Xu <[email protected]> * Fix section formatting Signed-off-by: Fanit Kolchina <[email protected]> * update supported query type links Signed-off-by: Karen Xu <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> * Update _api-reference/grpc-apis/bulk.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Karen Xu <[email protected]> Signed-off-by: Karen X <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * update Search Relevance Workbench docs for 3.2 (#10514) * add query set size validation information Signed-off-by: wrigleyDan <[email protected]> * add explanation of different types of query sets (with and without reference texts) Signed-off-by: wrigleyDan <[email protected]> * add experiment dashbords to docs Signed-off-by: wrigleyDan <[email protected]> * add and parameters to implicit judgment generation Signed-off-by: wrigleyDan <[email protected]> * change misleading name in LLM_JUDGMENT example Signed-off-by: wrigleyDan <[email protected]> * update navigation structure in left nav Signed-off-by: wrigleyDan <[email protected]> * Update _search-plugins/search-relevance/explore-experiment-results.md Co-authored-by: Eric Pugh <[email protected]> Signed-off-by: Daniel Wrigley <[email protected]> * remove experimental tag Signed-off-by: wrigleyDan <[email protected]> * add section on reinstalling dashboards and rework section on updating dashboards Signed-off-by: wrigleyDan <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: wrigleyDan <[email protected]> Signed-off-by: Daniel Wrigley <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Eric Pugh <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * add explain pf key_name parameter for json codec of s3 source (#10559) * add explain pf key_name parameter for json codec of s3 source PR for issue #10558 Signed-off-by: tkykenmt <[email protected]> * add explain pf key_name parameter for json codec of s3 source - fix some terms to reflect review Signed-off-by: tkykenmt <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: tkykenmt <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Revert "Revert "Including info on OpenID Additional Parameters (#5600)" (#5686)" (#10789) This reverts commit 3ec0aa4. * Add field data cache page (#10747) * Add field data cache page Signed-off-by: Peter Alfonsi <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> * Update _search-plugins/caching/field-data-cache.md Signed-off-by: Nathan Bower <[email protected]> * change line 65 Signed-off-by: Peter Alfonsi <[email protected]> * fix link Signed-off-by: Peter Alfonsi <[email protected]> --------- Signed-off-by: Peter Alfonsi <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Peter Alfonsi <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Edits to additional parameters (#10794) Signed-off-by: natebower <[email protected]> * Add 3.2 release notes (#10743) Signed-off-by: Fanit Kolchina <[email protected]> * Add 3.2 to version history (#10741) Signed-off-by: Fanit Kolchina <[email protected]> * Add 3.2 version (#10740) Signed-off-by: Fanit Kolchina <[email protected]> * Add `false_allow_templates` as a dynamic mapping option (#10749) * Add documentation for false_allow_templates Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/supported-field-types/object.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/mapping-parameters/dynamic.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/mapping-parameters/dynamic.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/mapping-parameters/dynamic.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/mapping-parameters/dynamic.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Bruce Hong <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Minor copy updates with the start of phase navigation. Signed-off-by: Brian Presley <[email protected]> * Add migration phase navigation and update migration scenarios - Add new migration-phase-navigation.html include for consistent navigation - Update migration-scenarios.yml data file with phase information - Update migration-scenarios.html include template - Update all migration phase documentation files with navigation - Improve user experience for migration assistant documentation Signed-off-by: Brian Presley <[email protected]> * Update _migration-assistant/key-components.md Co-authored-by: Tanner Lewis <[email protected]> Signed-off-by: Brian Presley <[email protected]> * Update _migration-assistant/migration-phases/create-snapshot.md Co-authored-by: Tanner Lewis <[email protected]> Signed-off-by: Brian Presley <[email protected]> * Update IAM role string Signed-off-by: Brian Presley <[email protected]> * Removed TODO Signed-off-by: Brian Presley <[email protected]> * Fix typo Signed-off-by: Brian Presley <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Brian Presley <[email protected]> Signed-off-by: Finn Roblin <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Signed-off-by: zane-neo <[email protected]> Signed-off-by: Finn Carroll <[email protected]> Signed-off-by: Finn <[email protected]> Signed-off-by: Matt Janssen <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Andre Kurait <[email protected]> Signed-off-by: Andre Kurait <[email protected]> Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: AntonEliatra <[email protected]> Signed-off-by: Utkarsh Agarwal <[email protected]> Signed-off-by: Dooyong Kim <[email protected]> Signed-off-by: Konstantin Nebel <[email protected]> Signed-off-by: TheBigK02 <[email protected]> Signed-off-by: Ryan Bogan <[email protected]> Signed-off-by: Tanner Lewis <[email protected]> Signed-off-by: Peter Nied <[email protected]> Signed-off-by: Adam Tackett <[email protected]> Signed-off-by: Pavan Yekbote <[email protected]> Signed-off-by: Tanik Pansuriya <[email protected]> Signed-off-by: Eric Pugh <[email protected]> Signed-off-by: Santhosh <[email protected]> Signed-off-by: Sokratis Papadopoulos <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Signed-off-by: Peter Zhu <[email protected]> Signed-off-by: Jugal Chauhan <[email protected]> Signed-off-by: Hai Yan <[email protected]> Signed-off-by: Nathalie Jonathan <[email protected]> Signed-off-by: Karen Xu <[email protected]> Signed-off-by: Karen X <[email protected]> Signed-off-by: wrigleyDan <[email protected]> Signed-off-by: Daniel Wrigley <[email protected]> Signed-off-by: tkykenmt <[email protected]> Signed-off-by: Peter Alfonsi <[email protected]> Signed-off-by: natebower <[email protected]> Signed-off-by: Bruce Hong <[email protected]> Signed-off-by: Brian Presley <[email protected]> Co-authored-by: Finn <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Co-authored-by: zane-neo <[email protected]> Co-authored-by: Finn <[email protected]> Co-authored-by: Matt Janssen <[email protected]> Co-authored-by: Andre Kurait <[email protected]> Co-authored-by: AntonEliatra <[email protected]> Co-authored-by: Utkarsh Agarwal <[email protected]> Co-authored-by: Doo Yong Kim <[email protected]> Co-authored-by: Dooyong Kim <[email protected]> Co-authored-by: TheBigK02 <[email protected]> Co-authored-by: Konstantin Nebel <[email protected]> Co-authored-by: Ryan Bogan <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Tanner Lewis <[email protected]> Co-authored-by: Peter Nied <[email protected]> Co-authored-by: Adam Tackett <[email protected]> Co-authored-by: Adam Tackett <[email protected]> Co-authored-by: Pavan Yekbote <[email protected]> Co-authored-by: tanik98 <[email protected]> Co-authored-by: Eric Pugh <[email protected]> Co-authored-by: Santhosh Gandhe <[email protected]> Co-authored-by: Sokratis Papadopoulos <[email protected]> Co-authored-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Naarcha-AWS <[email protected]> Co-authored-by: Peter Zhu <[email protected]> Co-authored-by: Jugal Deepak Chauhan <[email protected]> Co-authored-by: Hai Yan <[email protected]> Co-authored-by: Nathalie Jonathan <[email protected]> Co-authored-by: Karen X <[email protected]> Co-authored-by: Daniel Wrigley <[email protected]> Co-authored-by: Takayuki Enomoto <[email protected]> Co-authored-by: Peter Alfonsi <[email protected]> Co-authored-by: Peter Alfonsi <[email protected]> Co-authored-by: Bruce Hong <[email protected]>
* Update IAM and configuration order in migration scenarios Signed-off-by: Brian Presley <[email protected]> * Update main Migration Assistnat page. Signed-off-by: Brian Presley <[email protected]> * Remove checklist item from Is Migration Assistant right for you? Signed-off-by: Brian Presley <[email protected]> * Updated key components Signed-off-by: Brian Presley <[email protected]> * Removed deprecated documentation from IAM and security groups Signed-off-by: Brian Presley <[email protected]> * k-NN Add ADC and Random Rotation documentation to binary quantization (#10657) * k-NN Add ADC and Random Rotation documentation to binary quantization Signed-off-by: Finn Roblin <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Finn Roblin <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * fix dynamic tool link issue in tool index page (#10699) Signed-off-by: zane-neo <[email protected]> * TLS settings for gRPC (#10653) * Add gRPC tls settings. Signed-off-by: Finn Carroll <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Update _security/configuration/tls.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Finn <[email protected]> * Fix gRPC heading level -> 2. Signed-off-by: Finn Carroll <[email protected]> * Clarify keystore/trusstore alias behavior. Signed-off-by: Finn Carroll <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Finn Carroll <[email protected]> Signed-off-by: Finn <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Remove dynamic tool due to critical issue (#10700) * fix dynamic tool link issue in tool index page Signed-off-by: zane-neo <[email protected]> * Remove publishing dynamic tool due to critical issue Signed-off-by: zane-neo <[email protected]> --------- Signed-off-by: zane-neo <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Fix typo in neural-sparse-with-pipelines.md (#10701) `ran_features` should be `rank_features` Signed-off-by: Matt Janssen <[email protected]> * Highlight support for wildcard field (#10707) * Highlight support for wildcard field Signed-off-by: Fanit Kolchina <[email protected]> * Update _field-types/supported-field-types/wildcard.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Add a rule to replace old-style doc links with variables for spec-insert tool (#10710) Signed-off-by: Fanit Kolchina <[email protected]> * Add built-in Migration Assistant field data type transformation documentation (#10649) * Add flattened type handling documentation for Migration Assistant Signed-off-by: Andre Kurait <[email protected]> * Add flattened type conversion link for MA Signed-off-by: Andre Kurait <[email protected]> * Add string type deprecation page for MA Signed-off-by: Andre Kurait <[email protected]> * Ad dense_vector to knn transformation Signed-off-by: Andre Kurait <[email protected]> * Update for dense_vector support Signed-off-by: Andre Kurait <[email protected]> * Cleanup vale comments Signed-off-by: Andre Kurait <[email protected]> * Update for vale Signed-off-by: Andre Kurait <[email protected]> * Add section on identifying if cluster has field type Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-flattened-flat-object.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-string-text-keyword.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-string-text-keyword.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-string-text-keyword.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/index.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Update _migration-assistant/migration-phases/migrate-metadata/transform-dense-vector-knn-vector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Apply suggestions from code review Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Improve documentation on KNN plugin for MA Transform Signed-off-by: Andre Kurait <[email protected]> * Improve MA documentation by linking to field type documentation in transforms documentation Signed-off-by: Andre Kurait <[email protected]> * Apply suggestions from code review Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Andre Kurait <[email protected]> * Adjust wording on metadata migrations Signed-off-by: Andre Kurait <[email protected]> * Update title Transform string fields to text/keyword Signed-off-by: Andre Kurait <[email protected]> * Cleanup string to text logic Signed-off-by: Andre Kurait <[email protected]> --------- Signed-off-by: Andre Kurait <[email protected]> Signed-off-by: Andre Kurait <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * adding docker examples for custom configuration (#10684) * adding docker examples for custom configuration Signed-off-by: Anton Rubin <[email protected]> * updating description for link for Shared file system Signed-off-by: Anton Rubin <[email protected]> * adding helm chart repo links Signed-off-by: Anton Rubin <[email protected]> * elaboring on providing configuration at start up using -E flag Signed-off-by: Anton Rubin <[email protected]> * fixing the CORS configuration Signed-off-by: Anton Rubin <[email protected]> * Update docker.md Signed-off-by: AntonEliatra <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: AntonEliatra <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: AntonEliatra <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Update cat-allocation.md (#10715) Very minor formatting change, previously disk.percent and host were not separated, just separated them. Signed-off-by: Utkarsh Agarwal <[email protected]> * Update ACORN filtering optimization section in efficient filtering. (#10698) * Update ACORN filtering optimiztaion section in efficient filtering. Signed-off-by: Dooyong Kim <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Dooyong Kim <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Dooyong Kim <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Added GPU-Access to systemd-Service Definition (#10694) * Update parent title for install and configure benchmark pages (#10686) Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Konstantin Nebel <[email protected]> * Delete unused images from the site and correct image formatting (#10691) * Remove unused images Signed-off-by: Fanit Kolchina <[email protected]> * Delete icons file and correct image formatting Signed-off-by: Fanit Kolchina <[email protected]> * Heading formatting Signed-off-by: Fanit Kolchina <[email protected]> --------- Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Konstantin Nebel <[email protected]> * Added GPU-Access for systemd --------- Signed-off-by: Konstantin Nebel <[email protected]> * Update _ml-commons-plugin/gpu-acceleration.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: TheBigK02 <[email protected]> * Update _ml-commons-plugin/gpu-acceleration.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: TheBigK02 <[email protected]> --------- Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Konstantin Nebel <[email protected]> Signed-off-by: TheBigK02 <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Konstantin Nebel <[email protected]> * Update hybrid collapse documentation for 3.2 (#10664) * Update hybrid collapse documentation for 3.2 Signed-off-by: Ryan Bogan <[email protected]> * Address comments Signed-off-by: Ryan Bogan <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Remove hybrid_search_disabled setting Signed-off-by: Fanit Kolchina <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Ryan Bogan <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Updating helm commands to work with latest version (#10716) * updating helm commands to work with latest version Signed-off-by: Anton Rubin <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: AntonEliatra <[email protected]> * Update helm.md Signed-off-by: AntonEliatra <[email protected]> * Update helm.md Signed-off-by: AntonEliatra <[email protected]> * Update helm.md Signed-off-by: AntonEliatra <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: AntonEliatra <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * [Migration Assistant] Add version command for migration console command reference (#10567) * Add version command for migration console command reference Signed-off-by: Tanner Lewis <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> --------- Signed-off-by: Tanner Lewis <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * adding clarification on quick start docs (#10722) * adding clarification on quick start docs Signed-off-by: Anton Rubin <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: AntonEliatra <[email protected]> * Update _getting-started/quickstart.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: AntonEliatra <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Add command reference for CURL also fix headings across the file (#10726) * Add command reference for CURL also fix headings across the file Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> * Update _migration-assistant/migration-console/migration-console-commands-references.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Peter Nied <[email protected]> --------- Signed-off-by: Peter Nied <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Trace analytics update for 3.2 (#10727) * update trace changes for 3.2 Signed-off-by: Adam Tackett <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Adam Tackett <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Adam Tackett <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * [DOC] ML-Commons agent framework updates (#10682) * per_agent_updates Signed-off-by: Pavan Yekbote <[email protected]> * remove redundant versioning Signed-off-by: Pavan Yekbote <[email protected]> * fix: prompts and remove the 3.0 details Signed-off-by: Pavan Yekbote <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Remove copy button from endpoints Signed-off-by: Fanit Kolchina <[email protected]> * Update _ml-commons-plugin/agents-tools/agents/plan-execute-reflect.md Signed-off-by: kolchfa-aws <[email protected]> * Update _ml-commons-plugin/agents-tools/agents/plan-execute-reflect.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Pavan Yekbote <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Add documentation for derived source in source field metadata (#10674) * Add documentation for derived source in source field metadata Signed-off-by: Tanik Pansuriya <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Update the derived source documentation and add settings in index settings page Signed-off-by: Tanik Pansuriya <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Tanik Pansuriya <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Revamp docs as UBI has evolved. (#8800) * Revamp docs as UBI has evolved. Signed-off-by: Eric Pugh <[email protected]> * Use proper spelling Signed-off-by: Eric Pugh <[email protected]> * Discuss tracking events and guids Signed-off-by: Eric Pugh <[email protected]> * Using iso 8601 datetime Signed-off-by: Eric Pugh <[email protected]> * Restructure content into clearer four types. Signed-off-by: Eric Pugh <[email protected]> * Move links around Signed-off-by: Eric Pugh <[email protected]> * Fix missing link Signed-off-by: Eric Pugh <[email protected]> * Responding to feedback Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/schemas.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/schemas.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/schemas.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Language tweak for name Signed-off-by: Eric Pugh <[email protected]> * Provide clickable links Signed-off-by: Eric Pugh <[email protected]> * lots of clean ups * Fix html formatting Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/schemas.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Final review for 3.2 release Signed-off-by: Eric Pugh <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Update _search-plugins/ubi/ubi-javascript-collector.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Apply suggestions from code review Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Eric Pugh <[email protected]> * Fix bad link Signed-off-by: Eric Pugh <[email protected]> --------- Signed-off-by: Eric Pugh <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * adding the link to update settings (#10738) * adding the link to update setting Signed-off-by: Anton Rubin <[email protected]> * Update _install-and-configure/configuring-opensearch/index-settings.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Update remote index build to announce fp16, byte and binary are supported with remote index. [3.2] (#10745) * Update remote index build to announce fp16, byte and binary are supported with remote index. Signed-off-by: Dooyong Kim <[email protected]> * Update _vector-search/remote-index-build.md Signed-off-by: Nathan Bower <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> --------- Signed-off-by: Dooyong Kim <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Co-authored-by: Dooyong Kim <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Atlassian sources added (#10739) * Atlassian sources added Signed-off-by: Santhosh <[email protected]> * below to following Signed-off-by: Santhosh <[email protected]> * addressing review comments Signed-off-by: Santhosh <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> * addressing review comments Signed-off-by: Santhosh <[email protected]> * Update _data-prepper/pipelines/configuration/sources/atlassian-confluence.md Signed-off-by: Nathan Bower <[email protected]> * Update _data-prepper/pipelines/configuration/sources/atlassian-confluence.md Signed-off-by: Nathan Bower <[email protected]> * fixing build issues Signed-off-by: Santhosh <[email protected]> --------- Signed-off-by: Santhosh <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Implement breaking changes for examples to work with opensearch-py v3 (#10753) opensearch-py v3 has introduced a breaking change, introduced [here](opensearch-project/opensearch-py#907). Due to the change, one has to mandatorily specify argument names on all APIs. Signed-off-by: Sokratis Papadopoulos <[email protected]> * [Doc] Live Queries dashboard (#10090) (#10709) * [Doc] Live Queries dashboard (#10090) * Live Queries Dash Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Add writer edits Signed-off-by: Naarcha-AWS <[email protected]> * Update query-insights-dashboard.md Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Signed-off-by: Naarcha-AWS <[email protected]> * Fix table information Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Naarcha-AWS <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Updated the Live queries doc for cancellation features Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Update _observing-your-data/query-insights/query-insights-dashboard.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Update _observing-your-data/query-insights/query-insights-dashboard.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Update _observing-your-data/query-insights/query-insights-dashboard.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Naarcha-AWS <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> * Revert "Temporarily remove blogs and events from search results (#10346)" (#10757) This reverts commit ae6eabc. Signed-off-by: Peter Zhu <[email protected]> * Breaking changes selector in Migration Assistant to reference individual transformation pages (#10720) * breaking changes selector to refernece individual transformation pages Signed-off-by: Jugal Chauhan <[email protected]> * resolve comments on PR Signed-off-by: Jugal Chauhan <[email protected]> * First word and proper-noun capitalized Signed-off-by: Jugal Chauhan <[email protected]> * fix capitalization in sentences Signed-off-by: Jugal Chauhan <[email protected]> * fix capitalization in sentences Signed-off-by: Jugal Chauhan <[email protected]> --------- Signed-off-by: Jugal Chauhan <[email protected]> * Add rds source doc for Data Prepper (#10781) * Add rds source doc Signed-off-by: Hai Yan <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Hai Yan <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Add Agentic Memory APIs (#10714) * Add agentic memory APIs Signed-off-by: Nathalie Jonathan <[email protected]> * Add agentic memory APIs Signed-off-by: Nathalie Jonathan <[email protected]> * Address comments Signed-off-by: Nathalie Jonathan <[email protected]> * Add more info Signed-off-by: Nathalie Jonathan <[email protected]> * Doc review Signed-off-by: Fanit Kolchina <[email protected]> * Address comments Signed-off-by: Nathalie Jonathan <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Update _ml-commons-plugin/api/agentic-memory-apis/create-memory-container.md Signed-off-by: kolchfa-aws <[email protected]> * Update _ml-commons-plugin/api/agentic-memory-apis/get-memory.md Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Nathalie Jonathan <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * [GRPC] Documentation for 3.2 GRPC GA (Bulk and k-NN Search) (#10651) * [GRPC] Documentation for 3.2 GRPC GA (Bulk + KNN Search) Signed-off-by: Karen Xu <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Karen X <[email protected]> * additional cleanup Signed-off-by: Karen Xu <[email protected]> * api fixes Signed-off-by: Karen Xu <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Karen X <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Karen X <[email protected]> * fix descriptions Signed-off-by: Karen Xu <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Karen X <[email protected]> * Update formatting Signed-off-by: Karen Xu <[email protected]> * Fix section formatting Signed-off-by: Fanit Kolchina <[email protected]> * update supported query type links Signed-off-by: Karen Xu <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> * Update _api-reference/grpc-apis/bulk.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Karen Xu <[email protected]> Signed-off-by: Karen X <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * update Search Relevance Workbench docs for 3.2 (#10514) * add query set size validation information Signed-off-by: wrigleyDan <[email protected]> * add explanation of different types of query sets (with and without reference texts) Signed-off-by: wrigleyDan <[email protected]> * add experiment dashbords to docs Signed-off-by: wrigleyDan <[email protected]> * add and parameters to implicit judgment generation Signed-off-by: wrigleyDan <[email protected]> * change misleading name in LLM_JUDGMENT example Signed-off-by: wrigleyDan <[email protected]> * update navigation structure in left nav Signed-off-by: wrigleyDan <[email protected]> * Update _search-plugins/search-relevance/explore-experiment-results.md Co-authored-by: Eric Pugh <[email protected]> Signed-off-by: Daniel Wrigley <[email protected]> * remove experimental tag Signed-off-by: wrigleyDan <[email protected]> * add section on reinstalling dashboards and rework section on updating dashboards Signed-off-by: wrigleyDan <[email protected]> * Apply suggestions from code review Signed-off-by: kolchfa-aws <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: wrigleyDan <[email protected]> Signed-off-by: Daniel Wrigley <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Eric Pugh <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * add explain pf key_name parameter for json codec of s3 source (#10559) * add explain pf key_name parameter for json codec of s3 source PR for issue #10558 Signed-off-by: tkykenmt <[email protected]> * add explain pf key_name parameter for json codec of s3 source - fix some terms to reflect review Signed-off-by: tkykenmt <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: tkykenmt <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Revert "Revert "Including info on OpenID Additional Parameters (#5600)" (#5686)" (#10789) This reverts commit 3ec0aa4. * Add field data cache page (#10747) * Add field data cache page Signed-off-by: Peter Alfonsi <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> * Update _search-plugins/caching/field-data-cache.md Signed-off-by: Nathan Bower <[email protected]> * change line 65 Signed-off-by: Peter Alfonsi <[email protected]> * fix link Signed-off-by: Peter Alfonsi <[email protected]> --------- Signed-off-by: Peter Alfonsi <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: Peter Alfonsi <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Edits to additional parameters (#10794) Signed-off-by: natebower <[email protected]> * Add 3.2 release notes (#10743) Signed-off-by: Fanit Kolchina <[email protected]> * Add 3.2 to version history (#10741) Signed-off-by: Fanit Kolchina <[email protected]> * Add 3.2 version (#10740) Signed-off-by: Fanit Kolchina <[email protected]> * Add `false_allow_templates` as a dynamic mapping option (#10749) * Add documentation for false_allow_templates Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/supported-field-types/object.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/mapping-parameters/dynamic.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/mapping-parameters/dynamic.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/mapping-parameters/dynamic.md Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Bruce Hong <[email protected]> * Update _field-types/mapping-parameters/dynamic.md Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Bruce Hong <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> * Minor copy updates with the start of phase navigation. Signed-off-by: Brian Presley <[email protected]> * Add migration phase navigation and update migration scenarios - Add new migration-phase-navigation.html include for consistent navigation - Update migration-scenarios.yml data file with phase information - Update migration-scenarios.html include template - Update all migration phase documentation files with navigation - Improve user experience for migration assistant documentation Signed-off-by: Brian Presley <[email protected]> * Update _migration-assistant/key-components.md Co-authored-by: Tanner Lewis <[email protected]> Signed-off-by: Brian Presley <[email protected]> * Update _migration-assistant/migration-phases/create-snapshot.md Co-authored-by: Tanner Lewis <[email protected]> Signed-off-by: Brian Presley <[email protected]> * Update IAM role string Signed-off-by: Brian Presley <[email protected]> * Removed TODO Signed-off-by: Brian Presley <[email protected]> * Fix typo Signed-off-by: Brian Presley <[email protected]> * Apply suggestions from code review Signed-off-by: Nathan Bower <[email protected]> --------- Signed-off-by: Brian Presley <[email protected]> Signed-off-by: Finn Roblin <[email protected]> Signed-off-by: kolchfa-aws <[email protected]> Signed-off-by: Nathan Bower <[email protected]> Signed-off-by: zane-neo <[email protected]> Signed-off-by: Finn Carroll <[email protected]> Signed-off-by: Finn <[email protected]> Signed-off-by: Matt Janssen <[email protected]> Signed-off-by: Fanit Kolchina <[email protected]> Signed-off-by: Andre Kurait <[email protected]> Signed-off-by: Andre Kurait <[email protected]> Signed-off-by: Anton Rubin <[email protected]> Signed-off-by: AntonEliatra <[email protected]> Signed-off-by: Utkarsh Agarwal <[email protected]> Signed-off-by: Dooyong Kim <[email protected]> Signed-off-by: Konstantin Nebel <[email protected]> Signed-off-by: TheBigK02 <[email protected]> Signed-off-by: Ryan Bogan <[email protected]> Signed-off-by: Tanner Lewis <[email protected]> Signed-off-by: Peter Nied <[email protected]> Signed-off-by: Adam Tackett <[email protected]> Signed-off-by: Pavan Yekbote <[email protected]> Signed-off-by: Tanik Pansuriya <[email protected]> Signed-off-by: Eric Pugh <[email protected]> Signed-off-by: Santhosh <[email protected]> Signed-off-by: Sokratis Papadopoulos <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Signed-off-by: Kishore Kumaar Natarajan <[email protected]> Signed-off-by: Peter Zhu <[email protected]> Signed-off-by: Jugal Chauhan <[email protected]> Signed-off-by: Hai Yan <[email protected]> Signed-off-by: Nathalie Jonathan <[email protected]> Signed-off-by: Karen Xu <[email protected]> Signed-off-by: Karen X <[email protected]> Signed-off-by: wrigleyDan <[email protected]> Signed-off-by: Daniel Wrigley <[email protected]> Signed-off-by: tkykenmt <[email protected]> Signed-off-by: Peter Alfonsi <[email protected]> Signed-off-by: natebower <[email protected]> Signed-off-by: Bruce Hong <[email protected]> Signed-off-by: Brian Presley <[email protected]> Co-authored-by: Finn <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Co-authored-by: zane-neo <[email protected]> Co-authored-by: Finn <[email protected]> Co-authored-by: Matt Janssen <[email protected]> Co-authored-by: Andre Kurait <[email protected]> Co-authored-by: AntonEliatra <[email protected]> Co-authored-by: Utkarsh Agarwal <[email protected]> Co-authored-by: Doo Yong Kim <[email protected]> Co-authored-by: Dooyong Kim <[email protected]> Co-authored-by: TheBigK02 <[email protected]> Co-authored-by: Konstantin Nebel <[email protected]> Co-authored-by: Ryan Bogan <[email protected]> Co-authored-by: Fanit Kolchina <[email protected]> Co-authored-by: Tanner Lewis <[email protected]> Co-authored-by: Peter Nied <[email protected]> Co-authored-by: Adam Tackett <[email protected]> Co-authored-by: Adam Tackett <[email protected]> Co-authored-by: Pavan Yekbote <[email protected]> Co-authored-by: tanik98 <[email protected]> Co-authored-by: Eric Pugh <[email protected]> Co-authored-by: Santhosh Gandhe <[email protected]> Co-authored-by: Sokratis Papadopoulos <[email protected]> Co-authored-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Kishore Kumaar Natarajan <[email protected]> Co-authored-by: Naarcha-AWS <[email protected]> Co-authored-by: Peter Zhu <[email protected]> Co-authored-by: Jugal Deepak Chauhan <[email protected]> Co-authored-by: Hai Yan <[email protected]> Co-authored-by: Nathalie Jonathan <[email protected]> Co-authored-by: Karen X <[email protected]> Co-authored-by: Daniel Wrigley <[email protected]> Co-authored-by: Takayuki Enomoto <[email protected]> Co-authored-by: Peter Alfonsi <[email protected]> Co-authored-by: Peter Alfonsi <[email protected]> Co-authored-by: Bruce Hong <[email protected]> (cherry picked from commit c9483f2) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Description
Add Agentic Memory APIs
Issues Resolved
Closes #10706
Version
3.2
Frontend features
If you're submitting documentation for an OpenSearch Dashboards feature, add a video that shows how a user will interact with the UI step by step. A voiceover is optional.
Checklist
For more information on following Developer Certificate of Origin and signing off your commits, please check here.