legacy-knowledge-base
公開されました Sep. 10, 2025

JSPファイル処理時のスレッドカウントのパフォーマンス問題

written-by

Justin Choi

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

この記事は、Liferay DXP 7.0において、アクティブなスレッド数が最大許容スレッド数に近づいた場合に、管理者がパフォーマンスを調整するためのものです。

このパフォーマンスの問題は、 layout.prototype.merge.lock.max.time および layout.set.prototype.merge.lock.max.time のプロパティ値が 秒ではなく ミリ秒 として扱われているためです。 つまり、サイトテンプレートのマージに0.5秒以上の時間がかかり、多くの人が同じサイトを訪れると、デッドロックが発生します。

また、管理者がJSPファイルを処理する際に、一部のスレッドがブロックされることがあります。

解像度

一時的な解決策としては、ポータルのプロパティをデフォルト値の1000倍に設定することです。

	#layout.prototype.merge.lock.max.time=300
	layout.prototype.merge.lock.max.time=300000

	#layout.set.prototype.merge.lock.max.time=600
	layout.set.prototype.merge.lock.max.time=600000
	

追加情報

LPS-76668 を参照し、問題の解決に努めてください。

did-this-article-resolve-your-issue

legacy-knowledge-base