-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add elasticsearch online store - update method #63
Conversation
f8783a6
to
9383ea9
Compare
for i in range(n) | ||
] | ||
|
||
index_param_list = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you move this under the import section?
if not resp.body: | ||
self._create_index(es, fv) | ||
|
||
def _create_index(self, es, fv): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move this to the bottom of the file
): | ||
pass | ||
|
||
def get_data_type(self, t: FeastType) -> str: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this could be private, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only minor formatting but you can address later if you want
What this PR does / why we need it:
Add Elasticsearch as an option for vector embeddings and features.
This implements the update method with full unit tests.