Skip to content

Commit 1f8964d

Browse files
authored
documentation: get rid of white spaces
1 parent 4d9257d commit 1f8964d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/sagemaker/feature_store/feature_group.py

+11-11
Original file line numberDiff line numberDiff line change
@@ -702,26 +702,26 @@ def ingest(
702702
) -> IngestionManagerPandas:
703703
"""Ingest the content of a pandas DataFrame to feature store.
704704
705-
``max_worker`` the number of threads created to work on different partitions of the
705+
``max_worker`` the number of threads created to work on different partitions of the
706706
``data_frame`` in parallel.
707707
708-
``max_processes`` the number of processes will be created to work on different
708+
``max_processes`` the number of processes will be created to work on different
709709
partitions of the ``data_frame`` in parallel, each with ``max_worker`` threads.
710710
711-
The ingest function attempts to ingest all records in the data frame. SageMaker
711+
The ingest function attempts to ingest all records in the data frame. SageMaker
712712
Feature Store throws an exception if it fails to ingest any records.
713713
714-
If ``wait`` is ``True``, Feature Store runs the ``ingest`` function synchronously.
715-
You receive an ``IngestionError`` if there are any records that can't be ingested.
714+
If ``wait`` is ``True``, Feature Store runs the ``ingest`` function synchronously.
715+
You receive an ``IngestionError`` if there are any records that can't be ingested.
716716
If ``wait`` is ``False``, Feature Store runs the ``ingest`` function asynchronously.
717-
718-
Instead of setting ``wait`` to ``True`` in the ``ingest`` function, you can invoke
719-
the ``wait`` function on the returned instance of ``IngestionManagerPandas`` to run
717+
718+
Instead of setting ``wait`` to ``True`` in the ``ingest`` function, you can invoke
719+
the ``wait`` function on the returned instance of ``IngestionManagerPandas`` to run
720720
the ``ingest`` function synchronously.
721-
722-
To access the rows that failed to ingest, set ``wait`` to ``False``. The
721+
722+
To access the rows that failed to ingest, set ``wait`` to ``False``. The
723723
``IngestionError.failed_rows`` object saves all of the rows that failed to ingest.
724-
724+
725725
`profile_name` argument is an optional one. It will use the default credential if None is
726726
passed. This `profile_name` is used in the sagemaker_featurestore_runtime client only. See
727727
https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html for more

0 commit comments

Comments
 (0)