From a8a394fa5063257da6aaa4eddf0c0d2117907bfa Mon Sep 17 00:00:00 2001 From: Dan Notestein Date: Fri, 28 Nov 2025 23:51:47 -0500 Subject: [PATCH] Switch data-cache-storage jobs to hive-builder-9 Builder-9 has better single-thread performance (32-core 5950X) compared to builder-5 (48-core 3960x), resulting in ~40% faster sync times. --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bbcdb31..e5bfbb4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -79,6 +79,7 @@ haf-node-replay: - docker-build tags: - data-cache-storage + - hive-builder-9 ######## End replay ######## @@ -93,6 +94,7 @@ haf_api_node_replay_data_copy: - haf-node-replay tags: - data-cache-storage + - hive-builder-9 # Tests if HAF API node is working properly haf_api_node_test: @@ -103,6 +105,7 @@ haf_api_node_test: - haf_api_node_replay_data_copy tags: - data-cache-storage + - hive-builder-9 ######## End test ######## @@ -199,6 +202,7 @@ cleanup_haf_api_node_pipeline_cache: - when: always tags: - data-cache-storage + - hive-builder-9 # Deletes all HAF API node replay data cleanup_haf_api_node_cache_manual: @@ -216,6 +220,7 @@ cleanup_haf_api_node_cache_manual: allow_failure: true tags: - data-cache-storage + - hive-builder-9 # Deletes HAF API node replay data older than 7 days cleanup_old_haf_api_node_cache: @@ -226,5 +231,6 @@ cleanup_old_haf_api_node_cache: CLEANUP_PATH_PATTERN: "${REPLAY_DIRECTORY_PREFIX}*" tags: - data-cache-storage + - hive-builder-9 ######## End cleanup ######## -- GitLab