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

support for redshift super -> feast array types. #3871

Closed
robhowley opened this issue Dec 22, 2023 · 0 comments · Fixed by #3874
Closed

support for redshift super -> feast array types. #3871

robhowley opened this issue Dec 22, 2023 · 0 comments · Fixed by #3874
Labels
kind/feature New feature or request

Comments

@robhowley
Copy link
Contributor

Is your feature request related to a problem? Please describe.
Redshift's super column type allows for JSON. Currently the best approach with feast appears to be using either ValueType.Bytes with a super column or ValueType.String with a varchar and serialize the data ahead of time. Neither are optimal since the online store will then receive either bytes or a string instead of an array.

Describe the solution you'd like
Would like to be able to define a column as Array(base_type=[appropriate primitive) for Field backed by a super column. When we materialize the appropriate type is loaded into and eventually returned from the online stoer at request time.

Describe alternatives you've considered
Working with json strings or bytes and having the client be in charge of deserializing.

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/feature New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant