You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/dist/service_types.yml
+40-6Lines changed: 40 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -258,7 +258,7 @@ alloydbomni:
258
258
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.
259
259
type: integer
260
260
minimum: 4
261
-
maximum: 64
261
+
maximum: 256
262
262
max_parallel_workers:
263
263
title: max_parallel_workers
264
264
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:
288
288
description: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
289
289
type: integer
290
290
minimum: 8
291
-
maximum: 64
291
+
maximum: 256
292
292
max_slot_wal_keep_size:
293
293
title: max_slot_wal_keep_size
294
294
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:
313
313
type: integer
314
314
minimum: 1
315
315
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
316
322
max_wal_senders:
317
323
title: max_wal_senders
318
324
description: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
@@ -324,7 +330,7 @@ alloydbomni:
324
330
description: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
325
331
type: integer
326
332
minimum: 8
327
-
maximum: 96
333
+
maximum: 288
328
334
password_encryption:
329
335
title: password_encryption
330
336
description: Chooses the algorithm for encrypting passwords.
@@ -4308,6 +4314,23 @@ mysql:
4308
4314
minimum: 1
4309
4315
maximum: 2.147483e+06
4310
4316
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
4311
4334
mysql_version:
4312
4335
title: MySQL major version
4313
4336
type: string
@@ -6100,6 +6123,11 @@ pg:
6100
6123
type: integer
6101
6124
minimum: -1
6102
6125
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
6103
6131
max_files_per_process:
6104
6132
title: max_files_per_process
6105
6133
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:
6117
6145
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.
6118
6146
type: integer
6119
6147
minimum: 4
6120
-
maximum: 64
6148
+
maximum: 256
6121
6149
max_parallel_workers:
6122
6150
title: max_parallel_workers
6123
6151
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:
6147
6175
description: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
6148
6176
type: integer
6149
6177
minimum: 8
6150
-
maximum: 64
6178
+
maximum: 256
6151
6179
max_slot_wal_keep_size:
6152
6180
title: max_slot_wal_keep_size
6153
6181
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:
6172
6200
type: integer
6173
6201
minimum: 1
6174
6202
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
6175
6209
max_wal_senders:
6176
6210
title: max_wal_senders
6177
6211
description: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
@@ -6183,7 +6217,7 @@ pg:
6183
6217
description: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
6184
6218
type: integer
6185
6219
minimum: 8
6186
-
maximum: 96
6220
+
maximum: 288
6187
6221
password_encryption:
6188
6222
title: password_encryption
6189
6223
description: Chooses the algorithm for encrypting passwords.
0 commit comments