From f2ad5b58ce8e96e7f3190e5699e61e8c654ece65 Mon Sep 17 00:00:00 2001 From: Evan Bonsignori Date: Tue, 27 May 2025 14:49:27 -0700 Subject: [PATCH] Only run 2 parallel indexing jobs (#55814) --- .github/workflows/index-general-search.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/index-general-search.yml b/.github/workflows/index-general-search.yml index cbc60585b4..151bfec63b 100644 --- a/.github/workflows/index-general-search.yml +++ b/.github/workflows/index-general-search.yml @@ -108,7 +108,9 @@ jobs: # the whole job fast. # As of June 2023, it takes about 10+ minutes to index one whole # language and we have 8 non-English languages. - max-parallel: 3 + # As of May 2025, we index so many pages that we are being rate-limited by + # Elasticsearch. So we are shrinking this value to 2, down from 3 + max-parallel: 2 matrix: language: ${{ fromJSON(needs.figureOutMatrix.outputs.matrix) }} steps: