Skip to content

Commit 7213b5a

Browse files
authored
change: Fix hyperlinks in feature_processor.scheduler parameter descriptions (#4208)
1 parent dba2dbb commit 7213b5a

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

doc/amazon_sagemaker_featurestore.rst

+8-4
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,11 @@ The following code from the fraud detection example shows a minimal
230230
    enable_online_store=True
231231
)
232232
233-
Creating a feature group takes time as the data is loaded. You will need
234-
to wait until it is created before you can use it. You can check status
235-
using the following method.
233+
Creating a feature group takes time as the data is loaded. You will
234+
need to wait until it is created before you can use it. You can
235+
check status using the following method. Note that it can take
236+
approximately 10-15 minutes to provision an online ``FeatureGroup``
237+
with the ``InMemory`` ``StorageType``.
236238

237239
.. code:: python
238240
@@ -480,7 +482,9 @@ Feature Store `DatasetBuilder API Reference
480482
.. rubric:: Delete a feature group
481483
:name: bCe9CA61b78
482484

483-
You can delete a feature group with the ``delete`` function.
485+
You can delete a feature group with the ``delete`` function. Note that it
486+
can take approximately 10-15 minutes to delete an online ``FeatureGroup``
487+
with the ``InMemory`` ``StorageType``.
484488

485489
.. code:: python
486490

src/sagemaker/feature_store/feature_processor/feature_scheduler.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -281,13 +281,13 @@ def schedule(
281281
Args:
282282
pipeline_name (str): The SageMaker Pipeline name that will be scheduled.
283283
schedule_expression (str): The expression that defines when the schedule runs. It supports
284-
at expression, rate expression and cron expression. See https://docs.aws.amazon.com/
285-
scheduler/latest/APIReference/API_CreateSchedule.html#scheduler-CreateSchedule-request
286-
-ScheduleExpression for more details.
284+
at expression, rate expression and cron expression. See '''https://docs.aws.amazon.com\
285+
/scheduler/latest/APIReference/API_CreateSchedule.html#scheduler-CreateSchedule-\
286+
request-ScheduleExpression''' for more details.
287287
state (str): Specifies whether the schedule is enabled or disabled. Valid values are
288-
ENABLED and DISABLED. See https://docs.aws.amazon.com/scheduler/latest/APIReference/
289-
API_CreateSchedule.html#scheduler-CreateSchedule-request-State for more details.
290-
If not specified, it will default to ENABLED.
288+
ENABLED and DISABLED. See '''https://docs.aws.amazon.com/scheduler/latest/APIReference\
289+
/API_CreateSchedule.html#scheduler-CreateSchedule-request-State'''
290+
for more details. If not specified, it will default to ENABLED.
291291
start_date (Optional[datetime]): The date, in UTC, after which the schedule can begin
292292
invoking its target. Depending on the schedule’s recurrence expression, invocations
293293
might occur on, or after, the StartDate you specify.

0 commit comments

Comments
 (0)