diff --git a/engine/configs/config.example.logical_generic.yml b/engine/configs/config.example.logical_generic.yml index a3381ca3c00d2c9628bb584a1d26f618f9534e44..117e05964fe956e79812dd79c00a0d2f970d44f2 100644 --- a/engine/configs/config.example.logical_generic.yml +++ b/engine/configs/config.example.logical_generic.yml @@ -235,7 +235,8 @@ retrieval: # Use parallel jobs to dump faster. # It’s ignored if “immediateRestore.enabled: true” is present because “pg_dump | pg_restore” is always single-threaded. - parallelJobs: 2 + # If your source database has 4 vCPUs or less, and you don't want to saturate them, use 2 or 1. + parallelJobs: 4 # Options for direct restore to Database Lab Engine instance. # Uncomment this if you prefer restoring from the dump on the fly. In this case, @@ -261,7 +262,8 @@ retrieval: dumpLocation: "/var/lib/dblab/dblab_pool/dump" # Use parallel jobs to restore faster. - parallelJobs: 2 + # If your machine with DLE has 4 vCPUs or less, and you don't want to saturate them, use 2 or 1. + parallelJobs: 4 # Restore data even if the Postgres directory (`global.dataDir`) is not empty. diff --git a/engine/configs/config.example.logical_rds_iam.yml b/engine/configs/config.example.logical_rds_iam.yml index c13b91173db5e3687be8b288ed6cd0333915cc35..fe76528e5f1551e8065d3a7494582f97f417d6a8 100644 --- a/engine/configs/config.example.logical_rds_iam.yml +++ b/engine/configs/config.example.logical_rds_iam.yml @@ -232,7 +232,8 @@ retrieval: # Use parallel jobs to dump faster. # It’s ignored if “immediateRestore.enabled: true” is present because “pg_dump | pg_restore” is always single-threaded. - parallelJobs: 2 + # If your source database has 4 vCPUs or less, and you don't want to saturate them, use 2 or 1. + parallelJobs: 4 # Options for direct restore to Database Lab Engine instance. # Uncomment this if you prefer restoring from the dump on the fly. In this case, @@ -258,7 +259,8 @@ retrieval: dumpLocation: "/var/lib/dblab/dblab_pool/dump" # Use parallel jobs to restore faster. - parallelJobs: 2 + # If your machine with DLE has 4 vCPUs or less, and you don't want to saturate them, use 2 or 1. + parallelJobs: 4 # Restore data even if the Postgres directory (`global.dataDir`) is not empty. # Note the existing data will be overwritten.