Details
-
Bug
-
Status: Closed
-
Major - P3
-
Resolution: Done
-
None
-
ALL
Description
Ran a long aggregation operation, wasn't able to kill it with killop and ctrl-c on mongod also seems to hang until the operation finishes.
Here is the test I ran
c = db.c;
|
c.drop();
|
|
big = new Array(1000).toString();
|
for( i = 0; i < 10; ++i ) {
|
c.save( {b:big} );
|
}
|
|
pipeline = [];
|
for( i = 0; i < 100; ++i ) {
|
pipeline.push( {$skip:1} );
|
}
|
|
c.aggregate( pipeline );
|
|
Attachments
Issue Links
- is depended on by
-
SERVER-447 new aggregation framework
-
- Closed
-
- related to
-
SERVER-4984 make it possible to interrupt operations in mongos
-
- Closed
-
- links to