opensearch-project / opensearch-project/data-prepper

Personalize as Sink

Open
#4,804 0 comments 0 reactions 1 assignee View on GitHub

@ivan-tse is already working on this.

Since Aug 8, 2024.

Dominant language
Java
Stars
374
Forks
355
Avg merge
3d 18h
Merged PRs (30d)
8

Description

Is your feature request related to a problem? Please describe.
Enable users to send events to Amazon Personalize

Describe the solution you'd like
Create a new sink in Data Prepper which sends data to Amazon Personalize. It should support

  • End-to-end acknowledgements
  • Retries
  • Metrics
  • DLQ
  • Ingestion into Personalize datasets (items, users, interactions)

Sample YAML for items dataset:

pipeline:
  ...
  sink:
    - personalize:
        aws:
          region: us-west-2
          sts_role_arn: arn:aws:iam::123456789012:role/Data-Prepper
        max_retries: 5
        dataset_type: items
        dataset_arn: arn:aws:personalize:us-west-2:123456789012:dataset/dataset-name

Sample YAML for users dataset:

pipeline:
  ...
  sink:
    - personalize:
        aws:
          region: us-west-2
          sts_role_arn: arn:aws:iam::123456789012:role/Data-Prepper
        max_retries: 5
        dataset_type: users
        dataset_arn: arn:aws:personalize:us-west-2:123456789012:dataset/dataset-name

Sample YAML for interactions dataset:

pipeline:
  ...
  sink:
    - personalize:
        aws:
          region: us-west-2
          sts_role_arn: arn:aws:iam::123456789012:role/Data-Prepper
        max_retries: 5
        dataset_type: interactions
        tracking_id: 1234567890

Additional context
Add any other context or screenshots about the feature request here.

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.