I have a mongodb 7.0.14. I am trying to increase the eviction threads .
this is my conf file
mongod.conf
for documentation of all options, see:
http://docs.mongodb.org/manual/reference/configuration-options/
Where and how to store data.
storage:
dbPath: “C:\Program Files\MongoDB\Server\7.0\data”
where to write logging data.
systemLog:
destination: file
logAppend: true
path: C:\Program Files\MongoDB\Server\7.0\log\mongod.log
network interfaces
net:
port: 27017
bindIp: 0.0.0.0
#processManagement:
#security:
#operationProfiling:
replication:
replSetName: replocal
#sharding:
Enterprise-Only Options:
#auditLog:
when i add the set parameter the mongo doesn’t start. It starts if i remove the set parameter value.
db.adminCommand({
setParameter: 1,
wiredTigerEngineRuntimeConfig: “eviction=(threads_min=8,threads_max=16)”
}) this works however, if i restart the mongo the eviction thread goes to the default values, Can somebody help me with this. I am very new to mongo