[FF] maven_checksum_upload_fast_path -- fast-path Maven checksum uploads
Summary
Roll out the feature currently behind the maven_checksum_upload_fast_path feature flag.
- DRI: @mkhalifa3
- Team Slack channel:
#g_package
Note
Process and guidance live in the docs — this issue is just the commands and a place to track the rollout. "Rolling out" means incrementally enabling the flag on GitLab.com to validate stability — it is not the same as releasing the feature, which happens when the flag is removed. Feature flag controls · Feature flag lifecycle
What could go wrong?
The flag guards the Maven package finalize endpoint (PUT .../packages/maven/*path/:file_name) for .sha1/.md5 uploads only. Real-artifact uploads and the flag-off path are unchanged. Blast radius is limited to checksum verification; watch package registry API error rates and latency on the rails/API dashboards on https://dashboards.gitlab.net.
Rollout
Run all production /chatops in #production and cross-post the results to #g_package. Background: incremental rollout process, feature actors.
Non-production
/chatops gitlab run feature set maven_checksum_upload_fast_path 50 --actors --dev --pre --staging --staging-ref
/chatops gitlab run feature set maven_checksum_upload_fast_path true --dev --pre --staging --staging-refProduction — percentage rollout (wait ≥15 min between steps, watch dashboards):
/chatops gitlab run feature set maven_checksum_upload_fast_path <percentage> --actorsOr target specific actors instead:
/chatops gitlab run feature set --project=gitlab-org/gitlab,gitlab-org/gitlab-foss maven_checksum_upload_fast_path true
/chatops gitlab run feature set --group=gitlab-org,gitlab-com maven_checksum_upload_fast_path true
/chatops gitlab run feature set --user=mkhalifa3 maven_checksum_upload_fast_path trueBefore global rollout
Confirm the relevant gotchas before going to 100% — see enabling a feature for GitLab.com:
- Docs + version history updated
- Breaking changes announced, if any
- Change management issue opened, if required
- External API consumers handled with a fail-open mechanism, if applicable
Cleanup
Remove the flag once deemed stable — see cleaning up. Remove the flag and its YAML definition from the codebase, then:
/chatops gitlab run release check <merge-request-url> <milestone>
/chatops gitlab run feature delete maven_checksum_upload_fast_path --dev --pre --staging --staging-ref --productionRollback
/chatops gitlab run feature set maven_checksum_upload_fast_path false # production
/chatops gitlab run feature set maven_checksum_upload_fast_path false --dev --pre --staging --staging-ref # non-production
/chatops gitlab run feature delete maven_checksum_upload_fast_path --dev --pre --staging --staging-ref --production # remove entirely