How to identify batched notifications information in the database
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
Server* 製品のサポートは 2024 年 2 月 15 日をもって終了します。Server 製品を利用している場合は、Atlassian Server のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
目的
Find the information regarding batched notifications in the database
ソリューション
To verify if mail batching is enabled, run the following query:
SELECT * FROM feature WHERE feature_name = 'mail.batching.enabled';
If there are no result returned, mail batching is not enabled.
To find the scheduled job for mail batching, run the following query:
SELECT id, job_id, interval_millis, first_run, next_run FROM clusteredjob WHERE job_runner_key LIKE '%batch%';
最終更新日 2019 年 9 月 17 日
Powered by Confluence and Scroll Viewport.