-
Notifications
You must be signed in to change notification settings - Fork 376
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
Show identity alias in identity overrides list inside feature detail #4663
Comments
This is actually much harder than first anticipated since it would mean modifying the structure of the identity overrides in another dynamodb table that would be a bit of a nightmare to keep in sync for environments where there are a lot of identity overrides. For a bit more context, any update to the dashboard alias for a given identity would then also need to update all the identity override records in the Some other options that we have as a compromise:
We could also implement (2) without the need for the additional click to show the dashboard aliases, but I don't think we'd want to do this for each feature unless it was necessary. To be honest though, option 1 is likely not that useful and option 2 is messy. I will continue to think on this, but I'm not sure there's an easy option here. There's an option that we actually store this data in postgres instead, but then if we want to expose this to our SDKs, we need to find a way to write this data from dynamodb / lambda back to postgres. |
This seems like the most feasible option. Option 1 is not a good solution and option 2 is not scalable. We could improve option 2 by introducing a cache between the Core API and DynamoDB but that adds all sorts of complexity for just this one feature.
I'm okay with never supporting this - so far the only use case for identity aliases is purely administrative, i.e. Admin API only. If a legit use case for exposing this to SDKs comes up, we can revisit. It would allow us to eventually support aliases in self-hosted as well? |
Is your feature request related to a problem? Please describe.
We currently support identity aliases to provide human-readable names for identities that might otherwise have meaningless IDs. These IDs are used in the identities list and details, but not in the list of identity overrides inside a feature (
foo
here is an identifier, not an alias):Describe the solution you'd like.
If an identity has an alias, show it inside this page the same way we show it elsewhere.
Describe alternatives you've considered
🤷
Additional context
No response
The text was updated successfully, but these errors were encountered: