keycloak-scim/server_installation/topics/clustering/serialized.adoc

24 lines
1 KiB
Text
Raw Normal View History

2016-04-30 04:39:32 +00:00
2016-04-28 22:25:54 +00:00
[[_clustering_db_lock]]
=== Serialized Cluster Startup
2016-04-29 20:12:12 +00:00
{{book.project.name}} cluster nodes are allowed to boot concurrenty.
When {{book.project.name}} server instance boots up it may do some database migration, importing, or first time initializations.
A DB lock is used to prevent start actions from conflicting with one another when cluster nodes boot up concurrently.
2016-04-28 22:25:54 +00:00
2016-04-29 20:12:12 +00:00
By default, the maximum timeout for this lock is 900 seconds. If a node is waiting on this lock for more than the timeout
it will fail to boot.
Typically you won't need to increase/decrease the default value, but just in case it's possible to configure it in
`standalone.xml`, `standalone-ha.xml`, or `domain.xml` file in your distribution. The location of this file
depends on your <<fake/../../operating-mode.adoc#_operating-mode, operating mode>>.
2016-04-28 22:25:54 +00:00
[source,xml]
2016-04-28 22:25:54 +00:00
----
<spi name="dblock">
<provider name="jpa" enabled="true">
<properties>
<property name="lockWaitTimeout" value="900"/>
</properties>
</provider>
</spi>
2017-02-16 09:55:31 +00:00
----