Use SparkCache CUDA restore terminology - #26
Closed
FujitsuPolycom wants to merge 1 commit into
Closed
Conversation
Expose SparkCache CUDA restore and CUDA placement names in connector configuration, environment variables, deployment profiles, CLI options, logs, and documentation. Preserve legacy native-restore keys and Python symbols as compatibility aliases; conflicting canonical and legacy values reject startup and legacy-only input warns once per process. Cache identity, digest salts, chunk geometry, and stored bytes are unchanged. Validation: 746 SparkCache tests passed with 7 skipped; 108 deployment tests passed with 1 skipped; Ruff passed.
This was referenced Aug 30, 2026
Owner
Author
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.
Result
Status: implemented.
SparkCache exposes the capability as SparkCache CUDA restore and the data-movement component as SparkCache CUDA placement. Connector settings, environment variables, GLM deployment profiles, CLI options, runtime messages, and repository prose use those terms.
Canonical Python modules and class/function aliases provide CUDA-named imports. The implementation modules and symbols containing
nativeremain available as compatibility interfaces and refer to the same objects.Compatibility
Legacy connector keys, environment variables, profile arguments, and CLI flags remain accepted. Legacy-only input emits one concise warning per process. Supplying canonical and legacy values that disagree rejects startup.
Cache identity, digest salts, chunk geometry, on-disk schemas, the placement C ABI, and
libspark_cache_placement.soare unchanged. Cache namespace impact: none.Historical validation artifact paths remain stable so existing evidence links continue to resolve.
Validation
python -m pytest sparkcache -q: 746 passed, 7 skippedpython -m pytest deploy -q: 108 passed, 1 skippedpython -m ruff check .: passedThis draft is stacked on #25 because it names the reconstructed-page CUDA placement interface introduced by that change.