fix(jumpstart): add eusc-de-east-1 buckets and name JumpStart in the bucket error - #6242
Open
evakravi wants to merge 1 commit into
Open
fix(jumpstart): add eusc-de-east-1 buckets and name JumpStart in the bucket error#6242evakravi wants to merge 1 commit into
evakravi wants to merge 1 commit into
Conversation
evakravi
temporarily deployed
to
auto-approve
September 8, 2026 17:13 — with
GitHub Actions
Inactive
evakravi
temporarily deployed
to
auto-approve
September 8, 2026 18:39 — with
GitHub Actions
Inactive
evakravi
temporarily deployed
to
auto-approve
September 8, 2026 22:46 — with
GitHub Actions
Inactive
evakravi
commented
Sep 8, 2026
evakravi
temporarily deployed
to
auto-approve
September 8, 2026 23:41 — with
GitHub Actions
Inactive
evakravi
temporarily deployed
to
auto-approve
September 9, 2026 14:40 — with
GitHub Actions
Inactive
evakravi
temporarily deployed
to
auto-approve
September 9, 2026 15:46 — with
GitHub Actions
Inactive
evakravi
force-pushed
the
fix/jumpstart-neo-bucket-v2
branch
from
September 9, 2026 17:45
759b466 to
db71db2
Compare
evakravi
added a commit
to evakravi/sagemaker-python-sdk
that referenced
this pull request
Sep 9, 2026
`get_jumpstart_content_bucket` named Neo in its error for a region without a JumpStart entry. In v2 this message is the user-visible failure for `deepseek-llm-r1-distill-llama-8b` in `eusc-de-east-1` (aws#6242). Name JumpStart in the error. The integration test loads the DeepSeek public metadata from `eusc-de-east-1` with an unsigned S3 client. --- X-AI-Prompt: What is the minimal source change that fixes the EU Sovereign Cloud JumpStart error? X-AI-Tool: claude-code
evakravi
temporarily deployed
to
auto-approve
September 9, 2026 18:05 — with
GitHub Actions
Inactive
…bucket error `JumpStartModel` for `deepseek-llm-r1-distill-llama-8b` in `eusc-de-east-1` failed with `ValueError: Unable to get content bucket for Neo in eusc-de-east-1 region.` The region configuration had no `eusc-de-east-1` entry, and the JumpStart bucket accessor named Neo in its error. The model does not use Neo. Add the public and gated JumpStart buckets for `eusc-de-east-1`. Name JumpStart in the error. --- X-AI-Prompt: What is the minimal source change that fixes the EU Sovereign Cloud JumpStart error? X-AI-Tool: claude-code
evakravi
force-pushed
the
fix/jumpstart-neo-bucket-v2
branch
from
September 10, 2026 13:14
db71db2 to
408069a
Compare
evakravi
added a commit
to evakravi/sagemaker-python-sdk
that referenced
this pull request
Sep 10, 2026
`get_jumpstart_content_bucket` named Neo in its error for a region without a JumpStart entry. In v2 this message is the user-visible failure for `deepseek-llm-r1-distill-llama-8b` in `eusc-de-east-1` (aws#6242). Name JumpStart in the error. --- X-AI-Prompt: What is the minimal source change that fixes the EU Sovereign Cloud JumpStart error? X-AI-Tool: claude-code
evakravi
force-pushed
the
fix/jumpstart-neo-bucket-v2
branch
from
September 10, 2026 18:26
408069a to
aee2dba
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
In
eusc-de-east-1, the sample notebook cellJumpStartModel(model_id="deepseek-llm-r1-distill-llama-8b", model_version="*", hub_name="SageMakerPublicHub")fails withValueError: Unable to get content bucket for Neo in eusc-de-east-1 region.The model does not use Neo.The v2 region configuration has no
eusc-de-east-1entry, soget_jumpstart_content_bucketraises for the region. Its error names Neo, a copy of the Neo accessor message. v3 got the region entry in #5615.Solution
Add the public and gated JumpStart buckets for
eusc-de-east-1to the region configuration, with no Neo bucket. Name JumpStart in theget_jumpstart_content_bucketerror. #6243 corrects the same error text in v3.Tests
Unit tests read the
eusc-de-east-1public and gated buckets and match the JumpStart error text. The three tests fail onorigin/master-v2and pass on this branch.Result:
12 passed in 1.93s.integ-testsonmaster-v2fails without this change. SageMaker rejects theml.t2.mediumfixture withValidationException: Deprecated instance type "T2"since 2026-09-03,test_jumpstart_gated_modelgetsInsufficientInstanceCapacity, and thebuild_jarteardown deleteshello-spark-java.jarunder xdist. Those tests are outside this change. Thecodestyle-doc-testsfindings are in unchanged files.Merge Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.