You're viewing version 2.13 of the OpenSearch documentation. This version is no longer maintained. For the latest version, see the current documentation. For information about OpenSearch version maintenance, see Release Schedule and Maintenance Policy.
Personalize search ranking processor
The personalize_search_ranking
search response processor intercepts a search response and uses Amazon Personalize to rerank search results according to their Amazon Personalize ranking. This ranking is based on the user’s past behavior and metadata about the search items and the user.
To use the personalize_search_ranking
processor, you must first install the Amazon Personalize Search Ranking (opensearch-search-processor
) plugin. For detailed instructions, see Installing and configuring the Amazon Personalize Search Ranking plugin.
Request fields
The following table lists all available request fields.
Field | Data type | Description |
---|---|---|
campaign_arn | String | The Amazon Resource Name (ARN) of the Amazon Personalize campaign used to personalize results. Required. |
recipe | String | The name of the Amazon Personalize recipe to use. Currently, the only supported value for this field is aws-personalized-ranking . Required. |
weight | Float | The weight to use with rankings provided by OpenSearch and Amazon Personalize. Valid values are in the [0.0, 1.0] range. The closer the weight is to 1.0, the more weight is given to Amazon Personalize as opposed to OpenSearch when calculating the ranking. If you specify 0.0, OpenSearch rankings are used. If you specify 1.0, Amazon Personalize rankings are used. Required. |
item_id_field | String | If the _id field for an indexed document in OpenSearch doesn’t correspond with your Amazon Personalize itemId , specify the name of the field that does. By default, the plugin assumes the _id data matches the itemId in your Amazon Personalize data. |
iam_role_arn | String | If you use multiple roles to restrict permissions for different groups of users in your organization, specify the ARN of the role that has permission to access Amazon Personalize. If you use only the AWS credentials in your OpenSearch keystore, you can omit this field. Optional. |
tag | String | The processor’s identifier. Optional. |
description | String | A description of the processor. Optional. |
ignore_failure | Boolean | If true , OpenSearch ignores any failure of this processor and continues to run the remaining processors in the search pipeline. Optional. Default is false . |
Example
The following example demonstrates using a search pipeline with a personalize_search_ranking
processor.
Creating a search pipeline
The following request creates a search pipeline with a personalize_search_ranking
response processor:
PUT /_search/pipeline/my-pipeline
{
"description": "A pipeline to apply custom reranking from Amazon Personalize",
"response_processors" : [
{
"personalized_search_ranking" : {
"campaign_arn" : "Amazon Personalize Campaign ARN",
"item_id_field" : "productId",
"recipe" : "aws-personalized-ranking",
"weight" : "0.3",
"tag" : "personalize-processor",
"iam_role_arn": "Role ARN",
"aws_region": "AWS region"
}
}
]
}
Using a search pipeline
To search with a pipeline, specify the pipeline name in the search_pipeline
query parameter. For example, the following request searches for comedies using the pipeline set up in the previous section:
GET /movies/_search?search_pipeline=my-pipeline
{
"query": {
"multi_match": {
"query": "Comedy",
"fields": ["GENRES"]
}
},
"ext": {
"personalize_request_parameters": {
"user_id": "user ID",
"context": { "DEVICE" : "mobile phone" }
}
}
}
For additional details, see Personalizing search results from OpenSearch (self-managed).