Skip to content

Commit a67f761

Browse files
kibanamachinejbudz
andauthored
[8.19] [ci] Disable composite uploads (#271521) (#271588)
# Backport This will backport the following commits from `main` to `8.19`: - [[ci] Disable composite uploads (#271521)](#271521) <!--- Backport version: 9.6.6 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sorenlouv/backport) <!--BACKPORT [{"author":{"name":"Jon","email":"jon@elastic.co"},"sourceCommit":{"committedDate":"2026-05-27T20:54:36Z","message":"[ci] Disable composite uploads (#271521)\n\nCurrently we're running multiple composite uploads in parallel. This can\noccasionally cause issues:\n[example](https://buildkite.com/elastic/kibana-pull-request/builds/448905#019e69bd-ca57-434f-ae87-8a80bab26b53/L2173).\n\nThis disables composite uploads.","sha":"120c2cfe73b85005302b936eb0582116bb6a2844","branchLabelMapping":{"^v9.5.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Operations","release_note:skip","backport:all-open","v9.5.0"],"title":"[ci] Disable composite uploads","number":271521,"url":"https://github.com/elastic/kibana/pull/271521","mergeCommit":{"message":"[ci] Disable composite uploads (#271521)\n\nCurrently we're running multiple composite uploads in parallel. This can\noccasionally cause issues:\n[example](https://buildkite.com/elastic/kibana-pull-request/builds/448905#019e69bd-ca57-434f-ae87-8a80bab26b53/L2173).\n\nThis disables composite uploads.","sha":"120c2cfe73b85005302b936eb0582116bb6a2844"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.5.0","branchLabelMappingKey":"^v9.5.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/271521","number":271521,"mergeCommit":{"message":"[ci] Disable composite uploads (#271521)\n\nCurrently we're running multiple composite uploads in parallel. This can\noccasionally cause issues:\n[example](https://buildkite.com/elastic/kibana-pull-request/builds/448905#019e69bd-ca57-434f-ae87-8a80bab26b53/L2173).\n\nThis disables composite uploads.","sha":"120c2cfe73b85005302b936eb0582116bb6a2844"}}]}] BACKPORT--> Co-authored-by: Jon <jon@elastic.co>
1 parent 4fc0dc0 commit a67f761

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.buildkite/scripts/common/util.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,9 @@ upload_tmp_artifact() {
218218
"${SCRIPTS_COMMON_DIR}/activate_service_account.sh" "kibana-ci-artifacts-${GCS_CI_ARTIFACT_REGIONS[0]}"
219219

220220
printf '%s\n' "${GCS_CI_ARTIFACT_REGIONS[@]}" | xargs -P 0 -I{} \
221-
gcloud storage cp "$local_path" "gs://kibana-ci-artifacts-{}/tmp/builds/${build_id}/${artifact_name}"
221+
env CLOUDSDK_STORAGE_PARALLEL_COMPOSITE_UPLOAD_ENABLED=False gcloud storage cp \
222+
"$local_path" \
223+
"gs://kibana-ci-artifacts-{}/tmp/builds/${build_id}/${artifact_name}"
222224
}
223225

224226
print_if_dry_run() {

0 commit comments

Comments
 (0)