From cd5f2d9845501a33b812cd7e5aa147b116c346b4 Mon Sep 17 00:00:00 2001 From: Rongjian Lan Date: Thu, 28 Mar 2019 09:38:00 -0700 Subject: [PATCH] Increase shard size to 50 --- core/resharding.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/resharding.go b/core/resharding.go index b6ae3fd6b..1cb6858c4 100644 --- a/core/resharding.go +++ b/core/resharding.go @@ -24,7 +24,7 @@ const ( // GenesisShardNum is the number of shard at genesis GenesisShardNum = 4 // GenesisShardSize is the size of each shard at genesis - GenesisShardSize = 10 + GenesisShardSize = 50 // CuckooRate is the percentage of nodes getting reshuffled in the second step of cuckoo resharding. CuckooRate = 0.1 )