-
Type: Bug
-
Resolution: Fixed
-
Priority: Critical - P2
-
Affects Version/s: None
-
Component/s: Internal Code
-
None
-
Fully Compatible
-
ALL
-
v3.6
-
Platforms 2018-02-12
-
(copied to CRM)
The batches created by the LogicalSessionCache can exceed the 16mb bson size limit for bson on the wire. This will cause the refresh step to fail, preventing logical sessions from ever being synced to the global collection.
This happens because we don't explicitly size our batches (we were relying on the write_cmd item batch limit, rather than a byte limit). Previously the write_cmd batch limit had been 1000 items, which allowed for 16k per record. The new limit is 100k, which gives a 160 byte budget we can exceed with very large user names (as we sync the lsid + the user@db name).
By forcing a new 10k limit on username sizes used with logical sessions we can then ensure that a lower 1k limit will always be safe.
- is related to
-
DRIVERS-453 Decrease likelihood of implicit session leaks
- Closed
- related to
-
JAVA-2778 Implicit sessions are sometimes leaked
- Closed