-
Type:
Bug
-
Resolution: Done
-
Priority:
Major - P3
-
Affects Version/s: 3.0.8, 3.0.9
-
Component/s: WiredTiger
-
None
-
Fully Compatible
-
ALL
-
None
-
None
-
None
-
None
-
None
-
None
-
None
Test case creates collections and indexes and then drops them at a high rate through point A below. WT data handles accumulate and are never closed.

Problem reproduces in several 3.0 versions, but not in 3.2.1.
Repro script:
function create(t) {
for (var i=0; i<100; i++) {
c = db['c.'+t+'.'+i]
c.insert({})
c.createIndex({x:1})
c.createIndex({y:1})
c.createIndex({z:1})
c.drop()
if (i%100==0)
print(i)
}
}