Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions jobs/cloud_controller_ng/spec
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,9 @@ properties:
default: 1800
ccdb.migration_psql_worker_memory_kb:
description: "Allows operators to set the worker memory for PostgreSQL database migrations"
ccdb.skip_bigint_id_migration:
description: "Optionally opt-out of the id (primary key) migration from int to bigint. This must be set before any migration steps have started, otherwise it has no effect."
default: false
ccdb.connection_expiration_timeout:
description: "The period in seconds after which connections are expired (omit to never expire connections), passed directly to the Sequel gem - see https://sequel.jeremyevans.net/rdoc-plugins/files/lib/sequel/extensions/connection_expiration_rb.html for details"
ccdb.connection_expiration_random_delay:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ db: &db
max_migration_duration_in_minutes: <%= p("ccdb.max_migration_duration_in_minutes") %>
max_migration_statement_runtime_in_seconds: <%= p("ccdb.max_migration_statement_runtime_in_seconds") %>
migration_psql_concurrent_statement_timeout_in_seconds: <%= p("ccdb.migration_psql_concurrent_statement_timeout_in_seconds") %>
skip_bigint_id_migration: <%= p("ccdb.skip_bigint_id_migration") %>
login:
url: <%= p("login.enabled") ? login_url : uaa_url %>
uaa:
Expand Down