-
Type: Bug
-
Resolution: Duplicate
-
Priority: Minor - P4
-
None
-
Affects Version/s: 3.2.12, 3.4.10
-
Component/s: None
-
ALL
-
I wanted to disable the cursorTimeout, since I do huge aggregate queries (and no_cursor_timeout does not exist for aggregate framework).
I accidentaly found a long integer overflow:
> db.getSiblingDB('admin').runCommand( { setParameter: 1, cursorTimeoutMillis: 2592000000 } ) { "was" : 18000001, "ok" : 1 } > db.getSiblingDB('admin').runCommand( { setParameter: 1, cursorTimeoutMillis: 2592000001 } ) { "was" : -2147483648, "ok" : 1 }
- duplicates
-
SERVER-30389 Simple and generic way to restrict server parameter values
- Closed