-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: Offline store update pull_all_from_table_or_query to make timestampfield optional #5281
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
112014e
Update offline store pull all API date field optional
HaoXuAI c75c264
Update offline store pull all API date field optional
HaoXuAI b62fd1a
update
HaoXuAI 8b5bdae
update
HaoXuAI e92d015
update
HaoXuAI 4765d8f
fix test
HaoXuAI 0bbdbbc
update source read node
HaoXuAI 0336318
fix linting
HaoXuAI ac03a75
fix linting
HaoXuAI 0033b9c
fix linting
HaoXuAI 743a490
fix linting
HaoXuAI 4285b5f
fix linting
HaoXuAI 618c4b8
fix test
HaoXuAI afcaf9c
fix test
HaoXuAI 8e02747
fix test
HaoXuAI 71daec2
fix test
HaoXuAI 23a0fb4
fix test
HaoXuAI bcf1d7a
fix test
HaoXuAI 89ad0da
fix test
HaoXuAI cdae95b
fix test
HaoXuAI File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update
Signed-off-by: HaoXuAI <sduxuhao@gmail.com>
- Loading branch information
commit e92d01549f60e64691881ea922e20acef7ac8ce1
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,6 @@ | |
|
|
||
| from feast.infra.common.materialization_job import MaterializationTask | ||
| from feast.infra.common.retrieval_task import HistoricalRetrievalTask | ||
| from feast.infra.compute_engines.dag.plan import ExecutionPlan | ||
| from feast.infra.compute_engines.feature_builder import FeatureBuilder | ||
| from feast.infra.compute_engines.local.backends.base import DataFrameBackend | ||
| from feast.infra.compute_engines.local.nodes import ( | ||
|
|
@@ -95,25 +94,3 @@ def build_output_nodes(self, input_node): | |
| node = LocalOutputNode("output") | ||
| node.add_input(input_node) | ||
| self.nodes.append(node) | ||
|
|
||
| def build(self) -> ExecutionPlan: | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we can remove it as it is the same with the Parent |
||
| last_node = self.build_source_node() | ||
|
|
||
| if isinstance(self.task, HistoricalRetrievalTask): | ||
| last_node = self.build_join_node(last_node) | ||
|
|
||
| last_node = self.build_filter_node(last_node) | ||
|
|
||
| if self._should_aggregate(): | ||
| last_node = self.build_aggregation_node(last_node) | ||
| elif isinstance(self.task, HistoricalRetrievalTask): | ||
| last_node = self.build_dedup_node(last_node) | ||
|
|
||
| if self._should_transform(): | ||
| last_node = self.build_transformation_node(last_node) | ||
|
|
||
| if self._should_validate(): | ||
| last_node = self.build_validation_node(last_node) | ||
|
|
||
| self.build_output_nodes(last_node) | ||
| return ExecutionPlan(self.nodes) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
without entity_df provided, the join node is just a pass through node