From 1f59f9ee5bd791ef28fc8569a4203307b6a50675 Mon Sep 17 00:00:00 2001 From: Stephen Atherton Date: Mon, 22 Jan 2018 15:04:14 -0800 Subject: [PATCH] Reduce restore dispatch transaction size. --- fdbclient/Knobs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdbclient/Knobs.cpp b/fdbclient/Knobs.cpp index e03b86cb51..a87c1cabb8 100644 --- a/fdbclient/Knobs.cpp +++ b/fdbclient/Knobs.cpp @@ -117,7 +117,7 @@ ClientKnobs::ClientKnobs(bool randomize) { init( BACKUP_RANGEFILE_BLOCK_SIZE, 1024 * 1024); init( BACKUP_LOGFILE_BLOCK_SIZE, 1024 * 1024); init( BACKUP_DISPATCH_ADDTASK_SIZE, 50 ); - init( RESTORE_DISPATCH_ADDTASK_SIZE, 1000 ); + init( RESTORE_DISPATCH_ADDTASK_SIZE, 150 ); init( RESTORE_DISPATCH_BATCH_SIZE, 30000 ); if( randomize && BUGGIFY ) RESTORE_DISPATCH_BATCH_SIZE = 1; init( RESTORE_WRITE_TX_SIZE, 256 * 1024 ); init( APPLY_MAX_LOCK_BYTES, 1e9 );