Scheduled Jobs in Bitbucket Server
プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム。
この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。 Server* 製品のサポートは 2024 年 2 月 15 日に終了しました。Server 製品を実行している場合は、 アトラシアン Server サポート終了 のお知らせにアクセスして、移行オプションを確認してください。
*Fisheye および Crucible は除く
問題
It may often be required, such as for audit purposes, to list out background / scheduled jobs that run on a default Bitbucket Server installation.
ソリューション
The table bb_clustered_job holds details about the scheduled jobs. A typical query to list all such jobs is:
SELECT job_runner_key FROM bb_clusteredjob ORDER BY job_runner_key;
詳細
The table BB_CLUSTEREDJOB maintains information about scheduled jobs that run periodically on Bitbucket Server instance. These attributes include time when the job was first run, interval between scheduled runs, next run time. It also includes crontab entry for jobs that are scheduled via Linux OS level cron.
この内容はお役に立ちましたか?