Details
-
Bug
-
Resolution: Done
-
Major - P3
-
3.0.8, 3.0.9
-
None
-
Fully Compatible
-
ALL
Description
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)
|
}
|
}
|