|
I confirm this as a dup of SERVER-14143.
Before 2.7.2 (including 2.6.x):
- Long-running query operations are interruptible during yields of the database read lock.
- In addition, operations that use server-side Javascript are interruptible when transitioning in and out of Javascript execution.
As of 2.7.2, things are different:
SERVER-13922 removed query yielding entirely (including the interrupt point associated with yields).
SERVER-14069 removed Javascript interruption entirely.
Thus, the count operation posted above is no longer interruptible. It will be interruptible again once SERVER-14143 restores interrupting Javascript operations.
|