forked from domodwyer/mgo
-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MongoDB 3.6: implement the new wire protocol #61
Merged
Merged
Commits on Nov 13, 2017
-
Configuration menu - View commit details
-
Copy full SHA for c1fc70d - Browse repository at this point
Copy the full SHA c1fc70dView commit details
Commits on Nov 27, 2017
-
- use last minor version for each major serie of mongodb - use travis 'go' param instead of eval "$(gimme $GO)" as it fails to install correctly last minor version ( 1.8.x notation for example)
Configuration menu - View commit details
-
Copy full SHA for 0eaf023 - Browse repository at this point
Copy the full SHA 0eaf023View commit details -
also re-enable TestFindIterSnapshot as it was fixed a long time ago
Configuration menu - View commit details
-
Copy full SHA for b5082c2 - Browse repository at this point
Copy the full SHA b5082c2View commit details -
fix TestAuthX509CredRDNConstruction test: need to create an user with {"username": subject} before trying to login
Configuration menu - View commit details
-
Copy full SHA for f2ad0ee - Browse repository at this point
Copy the full SHA f2ad0eeView commit details -
Make sure that "rs3/127.0.0.1/40031" is elected at primary. Create user before running 'addShard' command as it requires root access Also add a retry mechanism to make sure that shard are correctly added cf https://docs.mongodb.com/manual/tutorial/deploy-shard-cluster/
Configuration menu - View commit details
-
Copy full SHA for 3b9a65f - Browse repository at this point
Copy the full SHA 3b9a65fView commit details
Commits on Dec 4, 2017
-
implement OP_MSG wire protocole
require maxWireVersion >= 6 on server side, and `experimental=opmsg` in the connection string - get `MaxMessageSizeBytes` and `MaxWriteBatchSize` from handshake - allow unacknowledged writes with `moreToCome` flag - split bulk operations in batch of `maxWriteBatchSize` - add 'experimental' param in URL. To enable an experimental feature, add `experimental=featureName` in the connection URL flush logout directly Previously, `flushLogout()` was called at the beginning of each Query to the database. To avoid these useless calls, we flush logout directly when `Logout()` or `LogoutAll()` is called
Configuration menu - View commit details
-
Copy full SHA for d2ccced - Browse repository at this point
Copy the full SHA d2cccedView commit details -
re-enable TestViewWithCollation
SERVER-31049 is fixed in 3.4.10, so re-enable it
Configuration menu - View commit details
-
Copy full SHA for 5e766ed - Browse repository at this point
Copy the full SHA 5e766edView commit details
Commits on Dec 6, 2017
-
use the same pool for send and received messages. Slices are returned to the pool without being resized. Default allocation size might need to be updated (currently 256, no benchmarks available yet)
Configuration menu - View commit details
-
Copy full SHA for 145c587 - Browse repository at this point
Copy the full SHA 145c587View commit details -
Configuration menu - View commit details
-
Copy full SHA for 019a38f - Browse repository at this point
Copy the full SHA 019a38fView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.