@@ -702,26 +702,26 @@ def ingest(
702
702
) -> IngestionManagerPandas :
703
703
"""Ingest the content of a pandas DataFrame to feature store.
704
704
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
706
706
``data_frame`` in parallel.
707
707
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
709
709
partitions of the ``data_frame`` in parallel, each with ``max_worker`` threads.
710
710
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
712
712
Feature Store throws an exception if it fails to ingest any records.
713
713
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.
716
716
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
720
720
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
723
723
``IngestionError.failed_rows`` object saves all of the rows that failed to ingest.
724
-
724
+
725
725
`profile_name` argument is an optional one. It will use the default credential if None is
726
726
passed. This `profile_name` is used in the sagemaker_featurestore_runtime client only. See
727
727
https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html for more
0 commit comments