Skip to content

Update Recommender

personalize_update_recommender R Documentation

Updates the recommender to modify the recommender configuration

Description

Updates the recommender to modify the recommender configuration. If you update the recommender to modify the columns used in training, Amazon Personalize automatically starts a full retraining of the models backing your recommender. While the update completes, you can still get recommendations from the recommender. The recommender uses the previous configuration until the update completes. To track the status of this update, use the latestRecommenderUpdate returned in the describe_recommender operation.

Usage

personalize_update_recommender(recommenderArn, recommenderConfig)

Arguments

recommenderArn

[required] The Amazon Resource Name (ARN) of the recommender to modify.

recommenderConfig

[required] The configuration details of the recommender.

Value

A list with the following syntax:

list(
  recommenderArn = "string"
)

Request syntax

svc$update_recommender(
  recommenderArn = "string",
  recommenderConfig = list(
    itemExplorationConfig = list(
      "string"
    ),
    minRecommendationRequestsPerSecond = 123,
    trainingDataConfig = list(
      excludedDatasetColumns = list(
        list(
          "string"
        )
      )
    ),
    enableMetadataWithRecommendations = TRUE|FALSE
  )
)