Skip to content
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

feat(clients): add new realtime-personalization api #4613

Merged
merged 25 commits into from
Mar 25, 2025

Conversation

benamib
Copy link
Contributor

@benamib benamib commented Mar 17, 2025

🧭 What and Why

🎟 JIRA Ticket: https://algolia.atlassian.net/browse/PRED-3652

Changes included:

  • Add new API specs for Realtime Perso

TODO

  • Update Doc link

🧪 Test

Sorry, something went wrong.

Verified

This commit was signed with the committer’s verified signature.
BurntSushi Andrew Gallant
@algolia-bot
Copy link
Collaborator

algolia-bot commented Mar 17, 2025

✔️ Code generated!

Name Link
🪓 Triggered by 39454ae80d3496227968df1d9739a855fb6aad69
🍃 Generated commit 580fa5f72801a773e53ed09d5471731bbae7beb4
🌲 Generated branch generated/PRED-3652/realtime-perso-api
📊 Benchmark results

Benchmarks performed on the method using a mock server, the results might not reflect the real-world performance.

Language Req/s
javascript 1600
go 1558
php 1518
csharp 1333
python 1084
java 1080
ruby 808
swift 742
scala 23

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
@benamib benamib changed the title feat(realtime-perso): add new realtime-perso api docs(realtime-perso): add new realtime-perso api Mar 19, 2025
$ref: '#/searchFilters'

searchFilters:
type: object
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this allow us to store search configurations for multiple groups of indices, and have a dynamic name?

Example extracted from Francois' presentation:
Screenshot 2025-03-19 at 17 19 59

Not sure how we represent that in the spec though.

Copy link
Contributor Author

@benamib benamib Mar 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The attribute additionalProperties allows us to tell the generator that the key of the object can be dynamic but that the format of the value should be of type searchFilters.

I'm not fond of this method but we don't have too much choice to respect the response we want.
We could still challenge the response format to replace the objects by arrays which would make the specs clearer imo like:

...
"search": [
	{ "aliases": "abc", "strategy": "def", "filters": {...} }
]
...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With the current specs the generated exemples looks like this :

{
  "version": "string",
  "userID": "string",
  "search": {
    "additionalProp1": {
      "indices": [
        "storefront",
        "storefront_price_asc",
        "storefront_price_desc"
      ],
      "strategy": "session",
      "filters": {
        "session": [
          "brand:Dyson<score=12>"
        ],
        "additionalProp1": {}
      },
      "additionalProp1": {}
    },
    "additionalProp2": {
      "indices": [
        "storefront",
        "storefront_price_asc",
        "storefront_price_desc"
      ],
      "strategy": "session",
      "filters": {
        "session": [
          "brand:Dyson<score=12>"
        ],
        "additionalProp1": {}
      },
      "additionalProp1": {}
    },
    "additionalProp3": {
      "indices": [
        "storefront",
        "storefront_price_asc",
        "storefront_price_desc"
      ],
      "strategy": "session",
      "filters": {
        "session": [
          "brand:Dyson<score=12>"
        ],
        "additionalProp1": {}
      },
      "additionalProp1": {}
    }
  },
  "additionalProp1": {}
}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe the reason for this structure was so that the FE could retrieve the required attributes as quick as possible (it's more time consuming to filter an array based on a key than it is to get a specific key from a map).

This looks good for now, but if it causes issues we can rethink it

Bilel Benamira added 5 commits March 20, 2025 11:08
@benamib benamib marked this pull request as ready for review March 24, 2025 16:52
@benamib benamib requested a review from a team as a code owner March 24, 2025 16:52
@benamib benamib self-assigned this Mar 24, 2025
benamib and others added 5 commits March 24, 2025 17:52
@shortcuts shortcuts changed the title docs(realtime-perso): add new realtime-perso api feat(clients): add new realtime-personalization api Mar 24, 2025
@shortcuts shortcuts merged commit 3994f53 into main Mar 25, 2025
28 checks passed
@shortcuts shortcuts deleted the PRED-3652/realtime-perso-api branch March 25, 2025 09:41
@@ -0,0 +1,8 @@
# path
UserToken:
name: userToken
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We call this userID in all the personalization APIs.

name: userToken
in: path
required: true
description: Unique identifier representing a user for which to fetch the personalization profile.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: Unique identifier representing a user for which to fetch the personalization profile.
description: Unique identifier used to retrieve the personalization profile of a specific user.

- name: users
x-displayName: Users
description: |
User profiles contains the search filters each user has for the different facets in your index.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
User profiles contains the search filters each user has for the different facets in your index.
User profiles contain search filters that personalize search results in real time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants