Skip to content

Commit 8b58c94

Browse files
chore(updater): bump pkg/dist/*.yml (2025-07-15) (#338)
Co-authored-by: GitHub <[email protected]>
1 parent 86e8290 commit 8b58c94

File tree

1 file changed

+40
-6
lines changed

1 file changed

+40
-6
lines changed

pkg/dist/service_types.yml

Lines changed: 40 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ alloydbomni:
258258
description: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
259259
type: integer
260260
minimum: 4
261-
maximum: 64
261+
maximum: 256
262262
max_parallel_workers:
263263
title: max_parallel_workers
264264
description: Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
@@ -288,7 +288,7 @@ alloydbomni:
288288
description: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
289289
type: integer
290290
minimum: 8
291-
maximum: 64
291+
maximum: 256
292292
max_slot_wal_keep_size:
293293
title: max_slot_wal_keep_size
294294
description: PostgreSQL maximum WAL size (MB) reserved for replication slots. If `-1` is specified, replication slots may retain an unlimited amount of WAL files. The default is `-1` (upstream default). wal_keep_size minimum WAL size setting takes precedence over this.
@@ -313,6 +313,12 @@ alloydbomni:
313313
type: integer
314314
minimum: 1
315315
maximum: 4.32e+07
316+
max_sync_workers_per_subscription:
317+
title: max_sync_workers_per_subscription
318+
description: Maximum number of synchronization workers per subscription. The default is `2`.
319+
type: integer
320+
minimum: 2
321+
maximum: 8
316322
max_wal_senders:
317323
title: max_wal_senders
318324
description: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
@@ -324,7 +330,7 @@ alloydbomni:
324330
description: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
325331
type: integer
326332
minimum: 8
327-
maximum: 96
333+
maximum: 288
328334
password_encryption:
329335
title: password_encryption
330336
description: Chooses the algorithm for encrypting passwords.
@@ -4308,6 +4314,23 @@ mysql:
43084314
minimum: 1
43094315
maximum: 2.147483e+06
43104316
example: "28800"
4317+
mysql_incremental_backup:
4318+
title: MySQL incremental backup configuration
4319+
type: object
4320+
required:
4321+
- enabled
4322+
properties:
4323+
enabled:
4324+
title: Enable incremental backups
4325+
description: Enable periodic incremental backups. When enabled, full_backup_week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive.
4326+
type: boolean
4327+
example: true
4328+
full_backup_week_schedule:
4329+
title: Full backup week schedule
4330+
description: 'Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun'
4331+
type: string
4332+
pattern: ^[a-z]+(,[a-z]+)*$
4333+
example: sun,wed
43114334
mysql_version:
43124335
title: MySQL major version
43134336
type: string
@@ -6100,6 +6123,11 @@ pg:
61006123
type: integer
61016124
minimum: -1
61026125
maximum: 2.147483647e+09
6126+
max_connections:
6127+
title: max_connections
6128+
description: PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
6129+
type: integer
6130+
minimum: 25
61036131
max_files_per_process:
61046132
title: max_files_per_process
61056133
description: PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
@@ -6117,7 +6145,7 @@ pg:
61176145
description: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
61186146
type: integer
61196147
minimum: 4
6120-
maximum: 64
6148+
maximum: 256
61216149
max_parallel_workers:
61226150
title: max_parallel_workers
61236151
description: Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
@@ -6147,7 +6175,7 @@ pg:
61476175
description: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
61486176
type: integer
61496177
minimum: 8
6150-
maximum: 64
6178+
maximum: 256
61516179
max_slot_wal_keep_size:
61526180
title: max_slot_wal_keep_size
61536181
description: PostgreSQL maximum WAL size (MB) reserved for replication slots. If `-1` is specified, replication slots may retain an unlimited amount of WAL files. The default is `-1` (upstream default). wal_keep_size minimum WAL size setting takes precedence over this.
@@ -6172,6 +6200,12 @@ pg:
61726200
type: integer
61736201
minimum: 1
61746202
maximum: 4.32e+07
6203+
max_sync_workers_per_subscription:
6204+
title: max_sync_workers_per_subscription
6205+
description: Maximum number of synchronization workers per subscription. The default is `2`.
6206+
type: integer
6207+
minimum: 2
6208+
maximum: 8
61756209
max_wal_senders:
61766210
title: max_wal_senders
61776211
description: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
@@ -6183,7 +6217,7 @@ pg:
61836217
description: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
61846218
type: integer
61856219
minimum: 8
6186-
maximum: 96
6220+
maximum: 288
61876221
password_encryption:
61886222
title: password_encryption
61896223
description: Chooses the algorithm for encrypting passwords.

0 commit comments

Comments
 (0)