You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each OP_MSG MUST NOT exceed the maxMessageSizeBytes as configured by the MongoDB Handshake.
Currently the experimental support for OP_MSG (contributed by @feliixx - thanks!) does not gracefully handle a message exceeding maxMessageSizeBytes - in the future this limit should be handled transparently by the driver.
In socket.go we return an error from sendMessage() when the limit is exceeded - ideally the driver should split the requests into messages that do not exceed this limit internally.
The text was updated successfully, but these errors were encountered:
NOTE: this issue is for an experimental feature, and does not affect the production driver.
The OP_MSG specification states:
Currently the experimental support for OP_MSG (contributed by @feliixx - thanks!) does not gracefully handle a message exceeding
maxMessageSizeBytes
- in the future this limit should be handled transparently by the driver.In socket.go we return an error from
sendMessage()
when the limit is exceeded - ideally the driver should split the requests into messages that do not exceed this limit internally.The text was updated successfully, but these errors were encountered: