product updateAmazon Web Services

AWS SageMaker HyperPod adds three-tier data capture, direct Hugging Face deployment, and NVMe caching for enterprise inf

TL;DR

Amazon SageMaker HyperPod has launched infrastructure updates for enterprise inference workloads. The platform now captures inference data at three points—endpoint, load balancer, and model pod—with configurable sampling and S3 storage. Teams can deploy models directly from Hugging Face Hub without pre-staging weights, with support for gated access across vLLM, TGI, and SGLang runtimes.

3 min read
0

AWS SageMaker HyperPod adds three-tier data capture, direct Hugging Face deployment, and NVMe caching for enterprise inference

Amazon SageMaker HyperPod has launched a set of infrastructure capabilities designed for organizations running large model inference in production. The updates focus on observability, deployment flexibility, and performance optimization.

Three-tier data capture system

HyperPod now captures inference request and response data at three independent points in the inference path:

Tier 1 - SageMaker endpoint: Captures full input/output payloads at the SageMaker Runtime API boundary. Required for SageMaker Model Monitor compatibility. Data stored at {s3Uri}/{hash}/sme/.

Tier 2 - Application Load Balancer: Enables ALB access logs capturing request metadata including client IPs, request paths, and latencies. Data stored at {s3Uri}/{hash}/alb/.

Tier 3 - Model pod: Captures full inference payloads at the container level with configurable sampling (0-100%), buffer batch size, flush intervals, and payload size limits up to specified KB. Works without endpoint registration. Data stored at {s3Uri}/{hash}/pod/.

Each tier can be enabled independently through declarative CRD configuration. Teams can set sampling percentages per tier, specify KMS encryption keys, and define S3 storage locations. If no S3 URI is specified, HyperPod defaults to the TLS certificate bucket with a /data-capture/ prefix.

According to AWS, the same deployment generates the same S3 prefix across multiple CRD submissions, consolidating capture artifacts from a single deployment into one subfolder.

Direct Hugging Face Hub deployment

HyperPod now supports deploying models directly from Hugging Face Hub without pre-staging weights to S3 or FSx storage. The integration includes:

  • Gated model access through tokenSecretRef stored in Kubernetes Secrets
  • Revision pinning via commitSHA specification
  • Token isolation across deployments
  • Compatibility with vLLM, TGI, and SGLang inference runtimes

The Inference Operator emits Kubernetes events tracking deployment status and failures. Required fields include a valid modelId, a Kubernetes Secret containing the Hugging Face API token for gated models, and a GPU-enabled worker node with volume mounts for downloaded weights.

NVMe caching and DNS management

The platform now loads model weights from node-local NVMe storage to reduce cold-start latency, with automatic fallback to cloud storage when local storage is unavailable. Pricing for NVMe storage not disclosed.

HyperPod automatically manages custom domain DNS records through Route 53 integration. Infrastructure teams can set granular pod-level IAM permissions for security boundaries.

IAM requirements

To enable data capture on existing clusters, teams must add S3 PutObject permissions to the Inference Operator Execution Role with resource scope arn:aws:s3:::hyperpod-tls*/data-capture/*. Customer-managed KMS keys require additional kms:Decrypt and kms:GenerateDataKey permissions.

AWS recommends starting with lower sampling percentages in production, using maxPayloadSizeKB limits to control storage costs, and placing sensitive data in POST request bodies rather than query parameters since ALB logs (Tier 2) capture URLs and query strings.

What this means

These updates address three operational bottlenecks in production AI infrastructure: observability without custom logging pipelines, deployment friction from weight staging requirements, and cold-start latency from remote storage reads. The three-tier capture system is particularly relevant for regulated industries requiring audit trails at multiple infrastructure layers. Direct Hugging Face integration removes a manual step that previously required teams to download, version, and upload multi-gigabyte model files before deployment. The NVMe caching targets the cold-start problem that affects autoscaling inference workloads, though AWS has not disclosed performance benchmarks comparing NVMe versus S3/FSx load times.

Related Articles

product update

Hugging Face and AWS launch one-click deployment to SageMaker Studio

Hugging Face and Amazon Web Services have integrated a one-click workflow that takes developers from model discovery on Hugging Face directly into AWS SageMaker Studio. The integration eliminates manual setup steps by automatically provisioning domains with pre-configured IAM permissions and displaying GPU quota availability inline.

product update

Anthropic launches Claude apps gateway for AWS, enabling centralized control of Claude Code and Claude Desktop deploymen

Anthropic has released Claude apps gateway for AWS, a self-hosted control plane that gives enterprises centralized management of Claude Code and Claude Desktop deployments. The gateway runs as a stateless container on AWS infrastructure and handles identity through OIDC, policy enforcement, telemetry, request routing to Amazon Bedrock or Claude Platform on AWS, and per-user spend caps.

product update

Meta launches Muse Image generator that can use public Instagram photos without user notification

Meta launched Muse Image on Tuesday, an AI image generator that allows users to create images using photos from any public Instagram account without notification. Users can opt out through privacy settings by disabling "Allow people to create with and reuse your content" for posts and reels.

product update

Google identifies top 10 Gemini app issues after 1,400 user feedback responses

Google collected over 1,400 feedback responses in 12 hours from Gemini app users. Gemini lead Josh Woodward published a prioritized list of the top 10 requested improvements, with Google Workspace integration reliability ranking as the clear number one concern.

Comments

Loading...