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

[FSTORE-1652] generate and add prefix automatically to joins if there is name clash #452

Merged
merged 1 commit into from
Feb 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/user_guides/fs/feature_view/query.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@ features for the join key of the left and right feature group. The join key list
.join(merchantDetailsFg.selectAll(), Seq("merchant_id"), Seq("id"), "inner"))
```

!!! warning
If there is feature name clash in the query then prefixes will be automatically generated and applied. Generated prefix is feature group
alias in the query (e.g. fg1, fg2). Prefix is applied to the right feature group of the query.


### Data modeling in Hopsworks

Since v4.0 Hopsworks Feature selection API supports both Star and Snowflake Schema data models.
Expand Down