This example showcases a key piece you can use to construct your API Layer to consume Amazon Personalize recommendations and produce real time events
As we can see below this is the architecture that you will be deploying from this project.
Note: The Amazon Personalize Campaigns and Event trackers need to be deployed independently beforehand for you to complete this tutorial. You can deploy your Amazon Personalize Campaign by using the following automation example under the MLOps folder, or by leveraging the getting started folder.
The AWS Serverless Application Model (SAM) is an open-source framework for building serverless applications. It provides shorthand syntax to express functions, APIs, databases, and event source mappings. With just a few lines per resource, you can define the application you want and model it using YAML. During deployment, SAM transforms and expands the SAM syntax into AWS CloudFormation syntax, enabling you to build serverless applications faster.
Install the AWS SAM CLI. This will install the necessary tools to build, deploy, and locally test your project. In this particular example we will be using AWS SAM to build and deploy only. For additional information please visit our documentation.
Create an Amazon Personalize Campaign and attach an event tracker to it, after following our getting started instructions.
You could also automate this part by leveraging this MLOps example
In order to deploy the project you will need to run the following commands:
- Clone the Amazon Personalize Samples repo
git clone https://github.com/aws-samples/amazon-personalize-samples.git
- Navigate into the next_steps/operations/streaming_events directory
cd amazon-personalize-samples/next_steps/operations/streaming_events
- Build your SAM project. Installation instructions
sam build
- Deploy your project. SAM offers a guided deployment option, note that you will need to provide your email address as a parameter to receive a notification.
sam deploy --guided
- Enter the S3 bucket where you will like to store your events data, the Personalize Campaign ARN and EventTracker ID.
- Navigate to the Amazon CloudFormation console
- Select the stack deployed by SAM
- Navigate to the outputs sections where you will find 2 endpoints an API Key:
- POST getRecommendations Endpoint
- POST Events Endopoint
- Redirect to the API Gateway console where you can click on the Show Key section to display the API Key
If you are using PostMan or something similar you will need to provide a header with:
x-api-key: <YOUR API KEY VALUE>
POST getRecommendations example:
Body Parameter:
{
"userId":"12345"
}
Endpoint: https://XXXXXX.execute-api.us-east-1.amazonaws.com/dev2/recommendations
POST event example
For the POST endpoint you need so send an event similar to the following in the body of the request:
Enpoint: https://XXXXXX.execute-api.us-east-1.amazonaws.com/dev2/history
Body:
{
"Event":{
"itemId": "ITEMID",
"eventValue": EVENT-VALUE,
"CONTEXT": "VALUE" //optional
},
"SessionId": "SESSION-ID-IDENTIFIER",
"EventType": "YOUR-EVENT-TYPE",
"UserId": "USERID"
}
Now that you have this architecture in your account, you can consume Amazon Personalize recommendations over the API Gateway POST recommendations endpoint and stream real time interactions data to the POST event endpoint.
There are two additional features to this architecture:
- A S3 bucket containing your events persisted from your Kinesis Stream. You can run analysis on this bucket by using other AWS services such as Glue and Athena. For example you can follow this blog on how to automate an ETL pipeline.
Congratulations! You have successfully deployed and tested the API layer around your Amazon Personalize deployment.
For additional information on Getting Recommendations please visit our documentation