How to bulk update the "After branch inactivity in repository" setting in Bamboo
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
本記事で説明している手順は、現時点でのものとなります。そのため、一部のお客様で特定の状況下で動作したという報告がありますが、正式にサポートされているわけではなく、お客様の特定のシナリオで動作することを保証するものではありません。
本番環境での実施の前に一通り非本番環境で検証し、成功しなかった場合にはサポートされている代替案にフォール バックしてください。
要約
This article explains how to update the "After branch inactivity in repository" setting located inside the Plan > Default plan configuration > Branches page directly in the database. This option is part of the automatic branch management settings and is used by Bamboo to determine when to delete a plan branch after it has gone inactive in the remote repository.
環境
Bamboo versions 7.0 and higher.
ソリューション
It is currently not possible to bulk update this setting across different plans from the user interface. The only alternative is to make this change directly in the database. In the following examples we will demonstrate how to identify and enable/disable the "After branch inactivity in repository" setting.
データベースの変更を行う場合は必ず事前にバックアップを取得してください。可能な場合は、まずステージング サーバーで SQL コマンドの変更、挿入、更新、または削除を行うようにします。
The following SQL statements have been tested on PostgreSQL and may need to be adjusted to work on different database engines.
Disable the "After branch inactivity in repository" option
Get a list of all the plans with Plan > Default plan configuration > Branches > Delete plan branch > After branch inactivity in repository enabled:
SELECT build.full_key, build_definition.build_id, build.created_date, build.updated_date FROM build JOIN build_definition ON build.build_id = build_definition.build_id WHERE build.marked_for_deletion IS NOT NULL AND build_definition.xml_definition_data LIKE '%<inactiveBranchCleanupEnabled>true</inactiveBranchCleanupEnabled>%' AND build_type = 'CHAIN' ORDER BY updated_date ASC;
Take note of the BUILD_ID from the plans that you want to disable the "After branch inactivity in repository" option.
Stop Bamboo.
Replace the BUILD_ID in the following update query with the ID of plan(s) you want to update:
UPDATE build_definition SET xml_definition_data = REPLACE(xml_definition_data,'<inactiveBranchCleanupEnabled>true</inactiveBranchCleanupEnabled>','<inactiveBranchCleanupEnabled>false</inactiveBranchCleanupEnabled>') WHERE build_definition.build_id IN ('BUILD_ID');
You can add a list of BUILD_IDs separated by comma if you're looking to update multiple plans (e.g. '1234','5678','9012' and etc).
- Run the update query to disable the option.
- Start Bamboo.
Enable the "After branch inactivity in repository" option
Get a list of all the plans with Plan > Default plan configuration > Branches > Delete plan branch > After branch inactivity in repository disabled:
SELECT build.full_key, build_definition.build_id, build.created_date, build.updated_date FROM build JOIN build_definition ON build.build_id = build_definition.build_id WHERE build.marked_for_deletion IS NOT NULL AND build_definition.xml_definition_data LIKE '%<inactiveBranchCleanupEnabled>false</inactiveBranchCleanupEnabled>%' AND build_type = 'CHAIN' ORDER BY updated_date ASC;
Take note of the BUILD_ID from the plans that you want to enable the "After branch inactivity in repository" option.
Stop Bamboo.
Replace the BUILD_ID in the following update query with the ID of plan(s) you want to update:
UPDATE build_definition SET xml_definition_data = REPLACE(xml_definition_data,'<inactiveBranchCleanupEnabled>false</inactiveBranchCleanupEnabled>','<inactiveBranchCleanupEnabled>true</inactiveBranchCleanupEnabled>') WHERE build_definition.build_id IN ('BUILD_ID');
You can add a list of BUILD_IDs separated by comma if you're looking to update multiple plans (e.g. '1234','5678','9012' and etc).
Replace the BUILD_ID in the following update query with the ID of plan(s) you want to update and yourInactiveDays with the number of days Bamboo should wait before deleting an inactive plan branch (e.g. 10, 30, 45 and etc)
UPDATE build_definition SET xml_definition_data = Regexp_replace(xml_definition_data,'<inactivityInDays>\d+</inactivityInDays>','<inactivityInDays>yourInactiveDays</inactivityInDays>','g') WHERE build_definition.build_id IN ('BUILD_ID');
- Run the update queries to enable the "After branch inactivity in repository" option and set the number of days.
- Start Bamboo.