Details
-
Bug
-
Resolution: Won't Fix
-
Major - P3
-
None
-
3.2.15, 3.4.6, 3.5.5
-
None
-
Query
-
ALL
Description
Start a replica set with these options:
mongod --enableMajorityReadConcern --profile 2 --wiredTigerCacheSizeGB 2 ...
|
Then start a workload of reads but no writes:
db.c.insert({})
|
for (var i = 0; ; i++) {
|
if (i%1000 == 0)
|
print(i)
|
db.c.findOne()
|
}
|
Range of pinned ids and dirty data grows, and instance hangs when dirty data in cache reaches 20%:

Attachments
Issue Links
- is related to
-
SERVER-23892 Do periodic replicated writes every 10 seconds while idle (for maxStalenessMS)
-
- Closed
-