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

[FSTORE-1537][APPEND] Managed feature group doc fix #349

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions python/hsfs/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def plus_two(value):
periodically. The value can be either an integer representing the number of hours between each run
or a string representing a cron expression. Set the value to None to avoid scheduling the materialization
job. Defaults to None (i.e no scheduling).
storage_connector: the storage connector to use to establish connectivity
storage_connector: the storage connector used to establish connectivity
with the data source.
path: The location within the scope of the storage connector, from where to read
the data for the external feature group
Expand Down Expand Up @@ -793,7 +793,7 @@ def get_or_create_feature_group(
periodically. The value can be either an integer representing the number of hours between each run
or a string representing a cron expression. Set the value to None to avoid scheduling the materialization
job. Defaults to None (i.e no automatic scheduling). Applies only on Feature Group creation.
storage_connector: the storage connector to use to establish connectivity
storage_connector: the storage connector used to establish connectivity
with the data source.
path: The location within the scope of the storage connector, from where to read
the data for the external feature group
Expand Down Expand Up @@ -877,7 +877,7 @@ def create_on_demand_feature_group(

# Arguments
name: Name of the external feature group to create.
storage_connector: the storage connector to use to establish connectivity
storage_connector: the storage connector used to establish connectivity
with the data source.
query: A string containing a SQL query valid for the target data source.
the query will be used to pull data from the data sources when the
Expand Down Expand Up @@ -1034,7 +1034,7 @@ def create_external_feature_group(

# Arguments
name: Name of the external feature group to create.
storage_connector: the storage connector to use to establish connectivity
storage_connector: the storage connector used to establish connectivity
with the data source.
query: A string containing a SQL query valid for the target data source.
the query will be used to pull data from the data sources when the
Expand Down
2 changes: 1 addition & 1 deletion python/hsfs/storage_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def spark_options(self) -> None:

def prepare_spark(self, path: Optional[str] = None) -> Optional[str]:
_logger.info(
"This Storage Connector cannot be prepare for Spark."
"This Storage Connector cannot be prepared for Spark."
)
return path

Expand Down
Loading