Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix localcompute
Signed-off-by: HaoXuAI <sduxuhao@gmail.com>
  • Loading branch information
HaoXuAI committed May 22, 2025
commit 8a29f655b08d0983bd5d4c5eea12ead4b2dc94a5
6 changes: 3 additions & 3 deletions sdk/python/feast/infra/offline_stores/dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,13 +358,13 @@ def evaluate_func():
@staticmethod
def evaluate_offline_job(
config: RepoConfig,
data_source: DataSource,
data_source: FileSource,
join_key_columns: List[str],
timestamp_field: str,
created_timestamp_column: Optional[str] = None,
start_date: Optional[datetime] = None,
end_date: Optional[datetime] = None,
) -> dd:
) -> dd.DataFrame:
# Create lazy function that is only called from the RetrievalJob object
source_df = _read_datasource(data_source, config.repo_path)

Expand Down Expand Up @@ -680,7 +680,7 @@ def _merge(
def _normalize_timestamp(
df_to_join: dd.DataFrame,
timestamp_field: str,
created_timestamp_column: str,
created_timestamp_column: Optional[str] = None,
) -> dd.DataFrame:
df_to_join_types = df_to_join.dtypes
timestamp_field_type = df_to_join_types[timestamp_field]
Expand Down
Loading