mirror of https://gitee.com/bigwinds/arangodb
checking agency failures for high catchup data
This commit is contained in:
parent
c93e794568
commit
9ca79d216a
|
@ -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 {
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue