1
0
Fork 0

checking agency failures for high catchup data

This commit is contained in:
Kaveh Vahedipour 2017-02-06 15:49:55 +01:00
parent c93e794568
commit 9ca79d216a
2 changed files with 2 additions and 4 deletions

View File

@ -37,7 +37,7 @@ config_t::config_t()
_supervision(false),
_waitForSync(true),
_supervisionFrequency(5.0),
_compactionStepSize(2000),
_compactionStepSize(200000),
_compactionKeepSize(500),
_supervisionGracePeriod(15.0),
_cmdLineTimings(false),
@ -706,7 +706,7 @@ bool config_t::merge(VPackSlice const& conf) {
_compactionStepSize = conf.get(compactionStepSizeStr).getUInt();
ss << _compactionStepSize << " (persisted)";
} else {
_compactionStepSize = 2000;
_compactionStepSize = 200000;
ss << _compactionStepSize << " (default)";
}
} else {

View File

@ -151,7 +151,6 @@ fi
MINP=0.5
MAXP=2.0
SFRE=2.5
COMP=1000
BASE=5000
if [ "$GOSSIP_MODE" = "0" ]; then
@ -192,7 +191,6 @@ for aid in "${aaid[@]}"; do
--agency.activate true \
$GOSSIP_PEERS \
--agency.my-address $TRANSPORT://localhost:$port \
--agency.compaction-step-size $COMP \
--agency.pool-size $POOLSZ \
--agency.size $NRAGENTS \
--agency.supervision true \