Update index-creation-threshold in migrate_db.adoc

Closes #36669

(cherry picked from commit a01c8da2bd5d6ccc235fb545784348c64b718291)

Signed-off-by: vramik <vramik@redhat.com>
This commit is contained in:
Vlasta Ramik 2025-01-24 14:36:23 +01:00 committed by GitHub
parent 3333dc1a42
commit e443802f18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,11 +11,11 @@ To perform an automatic migration, start the server connected to the desired dat
For example, creating an index on tables with millions of records can be time-consuming and cause a major service disruption. Therefore, a threshold of `300000` records exists for automatic migration. If the number of records exceeds this threshold, the index is not created. Instead, you find a warning in the server logs with the SQL commands that you can apply manually.
To change the threshold, set the `index-creation-threshold` property, value for the default `connections-liquibase` provider:
To change the threshold, set the `index-creation-threshold` property, value for the `connections-liquibase` provider:
[source,bash]
----
kc.[sh|bat] start --spi-connections-liquibase-default-index-creation-threshold=300000
kc.[sh|bat] start --spi-connections-liquibase-quarkus-index-creation-threshold=300000
----
=== Manual relational database migration