sagemaker-core 1.0.20__py3-none-any.whl → 1.0.21__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of sagemaker-core might be problematic. Click here for more details.
- sagemaker_core/main/resources.py +1 -1
- sagemaker_core/main/shapes.py +4 -4
- {sagemaker_core-1.0.20.dist-info → sagemaker_core-1.0.21.dist-info}/METADATA +1 -1
- {sagemaker_core-1.0.20.dist-info → sagemaker_core-1.0.21.dist-info}/RECORD +7 -7
- {sagemaker_core-1.0.20.dist-info → sagemaker_core-1.0.21.dist-info}/LICENSE +0 -0
- {sagemaker_core-1.0.20.dist-info → sagemaker_core-1.0.21.dist-info}/WHEEL +0 -0
- {sagemaker_core-1.0.20.dist-info → sagemaker_core-1.0.21.dist-info}/top_level.txt +0 -0
sagemaker_core/main/resources.py
CHANGED
|
@@ -3280,7 +3280,7 @@ class Cluster(Base):
|
|
|
3280
3280
|
Parameters:
|
|
3281
3281
|
cluster_name: The name for the new SageMaker HyperPod cluster.
|
|
3282
3282
|
instance_groups: The instance groups to be created in the SageMaker HyperPod cluster.
|
|
3283
|
-
vpc_config:
|
|
3283
|
+
vpc_config: Specifies the Amazon Virtual Private Cloud (VPC) that is associated with the Amazon SageMaker HyperPod cluster. You can control access to and from your resources by configuring your VPC. For more information, see Give SageMaker access to resources in your Amazon VPC. If you configure your VPC with IPv6 support and specify subnets with IPv6 addressing enabled in your VPC configuration, the cluster automatically uses IPv6 addressing for network communication. For information about adding IPv6 support for your VPC, see IPv6 support for your VPC. For information about creating a new VPC for use with IPv6, see Create a VPC.
|
|
3284
3284
|
tags: Custom tags for managing the SageMaker HyperPod cluster as an Amazon Web Services resource. You can add tags to your cluster in the same way you add them in other Amazon Web Services services that support tagging. To learn more about tagging Amazon Web Services resources in general, see Tagging Amazon Web Services Resources User Guide.
|
|
3285
3285
|
orchestrator: The type of orchestrator to use for the SageMaker HyperPod cluster. Currently, the only supported value is "eks", which is to use an Amazon Elastic Kubernetes Service (EKS) cluster as the orchestrator.
|
|
3286
3286
|
node_recovery: The node recovery mode for the SageMaker HyperPod cluster. When set to Automatic, SageMaker HyperPod will automatically reboot or replace faulty nodes when issues are detected. When set to None, cluster administrators will need to manually manage any faulty cluster instances.
|
sagemaker_core/main/shapes.py
CHANGED
|
@@ -3153,7 +3153,7 @@ class ClusterInstanceGroupDetails(Base):
|
|
|
3153
3153
|
status: The current status of the cluster instance group. InService: The instance group is active and healthy. Creating: The instance group is being provisioned. Updating: The instance group is being updated. Failed: The instance group has failed to provision or is no longer healthy. Degraded: The instance group is degraded, meaning that some instances have failed to provision or are no longer healthy. Deleting: The instance group is being deleted.
|
|
3154
3154
|
training_plan_arn: The Amazon Resource Name (ARN); of the training plan associated with this cluster instance group. For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see CreateTrainingPlan .
|
|
3155
3155
|
training_plan_status: The current status of the training plan associated with this cluster instance group.
|
|
3156
|
-
override_vpc_config
|
|
3156
|
+
override_vpc_config: The customized VPC configuration at the instance group level that overrides the default VPC configuration of the SageMaker HyperPod cluster.
|
|
3157
3157
|
"""
|
|
3158
3158
|
|
|
3159
3159
|
current_count: Optional[int] = Unassigned()
|
|
@@ -3187,7 +3187,7 @@ class ClusterInstanceGroupSpecification(Base):
|
|
|
3187
3187
|
instance_storage_configs: Specifies the additional storage configurations for the instances in the SageMaker HyperPod cluster instance group.
|
|
3188
3188
|
on_start_deep_health_checks: A flag indicating whether deep health checks should be performed when the cluster instance group is created or updated.
|
|
3189
3189
|
training_plan_arn: The Amazon Resource Name (ARN); of the training plan to use for this cluster instance group. For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see CreateTrainingPlan .
|
|
3190
|
-
override_vpc_config
|
|
3190
|
+
override_vpc_config: To configure multi-AZ deployments, customize the VPC configuration at the instance group level. You can specify different subnets and security groups across different AZs in the instance group specification to override a SageMaker HyperPod cluster's default VPC configuration. For more information about deploying a cluster in multiple AZs, see Setting up SageMaker HyperPod clusters across multiple AZs. If you configure your VPC with IPv6 support and specify subnets with IPv6 addressing enabled in your instance group VPC configuration, the nodes automatically use IPv6 addressing for network communication. For information about adding IPv6 support for your VPC, see IPv6 support for your VPC. For information about creating a new VPC for use with IPv6, see Create a VPC.
|
|
3191
3191
|
"""
|
|
3192
3192
|
|
|
3193
3193
|
instance_count: int
|
|
@@ -3245,11 +3245,11 @@ class ClusterNodeDetails(Base):
|
|
|
3245
3245
|
instance_type: The type of the instance.
|
|
3246
3246
|
launch_time: The time when the instance is launched.
|
|
3247
3247
|
life_cycle_config: The LifeCycle configuration applied to the instance.
|
|
3248
|
-
override_vpc_config
|
|
3248
|
+
override_vpc_config: The customized VPC configuration at the instance group level that overrides the default VPC configuration of the SageMaker HyperPod cluster.
|
|
3249
3249
|
threads_per_core: The number of threads per CPU core you specified under CreateCluster.
|
|
3250
3250
|
instance_storage_configs: The configurations of additional storage specified to the instance group where the instance (node) is launched.
|
|
3251
3251
|
private_primary_ip: The private primary IP address of the SageMaker HyperPod cluster node.
|
|
3252
|
-
private_primary_ipv6: The private primary IPv6 address of the SageMaker HyperPod cluster node.
|
|
3252
|
+
private_primary_ipv6: The private primary IPv6 address of the SageMaker HyperPod cluster node when configured with an Amazon VPC that supports IPv6 and includes subnets with IPv6 addressing enabled in either the cluster VPC configuration or the instance group VPC configuration.
|
|
3253
3253
|
private_dns_hostname: The private DNS hostname of the SageMaker HyperPod cluster node.
|
|
3254
3254
|
placement: The placement details of the SageMaker HyperPod cluster node.
|
|
3255
3255
|
"""
|
|
@@ -7,8 +7,8 @@ sagemaker_core/main/config_schema.py,sha256=kfQvf_japrsitTwXTdUaYhOPqKTBBwIE_-eb
|
|
|
7
7
|
sagemaker_core/main/exceptions.py,sha256=87DUlrmHxaWoiYNlpNY9ixxFMPRk_dIGPsA2e_xdVwQ,5602
|
|
8
8
|
sagemaker_core/main/intelligent_defaults_helper.py,sha256=5SDM6UavZtp-k5LhqRL7GRIDgzFB5UsC_p7YuiSPK9A,8334
|
|
9
9
|
sagemaker_core/main/logs.py,sha256=yfEH7uP91nbE1lefymOlBr81ziBzsDSIOF2Qyd54FJE,6241
|
|
10
|
-
sagemaker_core/main/resources.py,sha256=
|
|
11
|
-
sagemaker_core/main/shapes.py,sha256=
|
|
10
|
+
sagemaker_core/main/resources.py,sha256=OFjI3Uf7pT2R1z80pZXfE2HYbkN2L5qxTiS9PsPuxnc,1406128
|
|
11
|
+
sagemaker_core/main/shapes.py,sha256=G5TFVlkSjdHk-x6rTEtTWwxCsPVw1c8GJ8gKsEL-oDg,725079
|
|
12
12
|
sagemaker_core/main/user_agent.py,sha256=BPYDAfDd70ObP-VAjl7aDHALHyGknkpRP21ktVr_LDw,2744
|
|
13
13
|
sagemaker_core/main/utils.py,sha256=LCFDM6oxf6_e1i-_Dgtkm3ehl7YfoEpJ2kTTFTL6iOU,18471
|
|
14
14
|
sagemaker_core/main/code_injection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -28,8 +28,8 @@ sagemaker_core/tools/resources_extractor.py,sha256=hN61ehZbPnhFW-2FIVDi7NsEz4rLv
|
|
|
28
28
|
sagemaker_core/tools/shapes_codegen.py,sha256=_ve959bwH8usZ6dPlpXxi2on9t0hLpcmhRWnaWHCWMQ,11745
|
|
29
29
|
sagemaker_core/tools/shapes_extractor.py,sha256=GFy55JHGW0V8cwN5SL5gGLUxihLGswueyh5iNCn1sYk,12310
|
|
30
30
|
sagemaker_core/tools/templates.py,sha256=yX2RQKeClgYwKS5Qu_mDpnWJIBCuj0yELrdm95aiTpk,23262
|
|
31
|
-
sagemaker_core-1.0.
|
|
32
|
-
sagemaker_core-1.0.
|
|
33
|
-
sagemaker_core-1.0.
|
|
34
|
-
sagemaker_core-1.0.
|
|
35
|
-
sagemaker_core-1.0.
|
|
31
|
+
sagemaker_core-1.0.21.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
32
|
+
sagemaker_core-1.0.21.dist-info/METADATA,sha256=h2hh5OJVWaVbJWCH-Ae2EXGYAlYcJD5ysLyWnIwLcrw,4863
|
|
33
|
+
sagemaker_core-1.0.21.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
34
|
+
sagemaker_core-1.0.21.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
|
|
35
|
+
sagemaker_core-1.0.21.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|