mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-07 05:53:46 +00:00
parent
785e450e28
commit
cc01e19ae1
@ -148,6 +148,13 @@ database:
|
|||||||
password: ${DB_USER_PASSWORD:-openmetadata_password}
|
password: ${DB_USER_PASSWORD:-openmetadata_password}
|
||||||
# the JDBC URL; the database is called openmetadata_db
|
# the JDBC URL; the database is called openmetadata_db
|
||||||
url: jdbc:${DB_SCHEME:-mysql}://${DB_HOST:-localhost}:${DB_PORT:-3306}/${OM_DATABASE:-openmetadata_db}?${DB_PARAMS:-allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=UTC}
|
url: jdbc:${DB_SCHEME:-mysql}://${DB_HOST:-localhost}:${DB_PORT:-3306}/${OM_DATABASE:-openmetadata_db}?${DB_PARAMS:-allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=UTC}
|
||||||
|
maxSize: ${DB_CONNECTION_POOL_MAX_SIZE:-50}
|
||||||
|
minSize: ${DB_CONNECTION_POOL_MIN_SIZE:-10}
|
||||||
|
initialSize: ${DB_CONNECTION_POOL_INITIAL_SIZE:-10}
|
||||||
|
checkConnectionWhileIdle: ${DB_CONNECTION_CHECK_CONNECTION_WHILE_IDLE:-true}
|
||||||
|
checkConnectionOnBorrow: ${DB_CONNECTION_CHECK_CONNECTION_ON_BORROW:-true}
|
||||||
|
evictionInterval: ${DB_CONNECTION_EVICTION_INTERVAL:-5 minutes}
|
||||||
|
minIdleTime: ${DB_CONNECTION_MIN_IDLE_TIME:-1 minute}
|
||||||
|
|
||||||
migrationConfiguration:
|
migrationConfiguration:
|
||||||
flywayPath: "./bootstrap/sql/migrations/flyway"
|
flywayPath: "./bootstrap/sql/migrations/flyway"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user