Skip to content

Commit

Permalink
Increase the maximum size of block in State Transfer from 10M to 30M (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
toly-kournik authored Oct 13, 2020
1 parent d8912fc commit ba28b33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ struct Config {
uint16_t maxNumberOfChunksInBatch = 32;
#endif

uint32_t maxBlockSize = 10 * 1024 * 1024; // 10MB
uint32_t maxBlockSize = 30 * 1024 * 1024; // 30MB
uint32_t maxPendingDataFromSourceReplica = 256 * 1024 * 1024; // Maximal internal buffer size for all ST data
uint32_t maxNumOfReservedPages = 2048;
uint32_t sizeOfReservedPage = 4096;
Expand Down

0 comments on commit ba28b33

Please sign in to comment.