cargo mongodb 1.2.0

latest releases: 3.0.0-beta, 2.8.2, 2.8.1...
3 years ago

Description

The MongoDB Rust driver team is pleased to announce the v1.2.0 release of the driver.

Release Notes

Serde Integration Improvements

This release contains several improvements to the driver's integration with Serde.

  • RUST-562 Return deserializable data types from find methods
  • RUST-561 Accept serializable data types as arguments to insert methods

Connection Pooling Improvements

This release contains several bug fixes and improvements to the connection pooling behavior in the driver. These improvements should both improve performance and also reduce the risk of “connection storms”.

Some highlighted changes:

  • The driver was erroneously holding onto the mutex on the connection pool while establishing connections, greatly limiting throughput. This has been fixed, so now the pool may be used even when new connections are being established. (RUST-542)
  • Concurrent connection creation is now limited to 2 at a time, reducing the spike in connections that can happen after an increase in load, a primary election, or a reduction in throughput server-side. This limit also favors the reuse of existing connections over concurrently creating large amounts of connections, which in initial benchmarks is shown to have a positive impact on throughput. (RUST-556)
  • The server selection algorithm now considers the load of suitable servers when choosing among them, opting for nodes currently experiencing less load. This should more evenly distribute the workload across the deployment. (RUST-575)
  • Once the driver notices a server has gone down, it now “pauses” the associated connection pool, ensuring no new connection establishment attempts can be made against that server until it enters a known state again. Previously, there was a window in which these connection establishments could still be attempted even after the driver noticed that a server went down, and these establishment attempts could put unnecessary strain on such servers that were likely already struggling. (RUST-690)
  • The driver no longer incorrectly uses the “maxPoolSize” URI option to set “minPoolSize”. (RUST-566)

Other New Features

Improvements

  • RUST-623 Upgrade os_info to 3.0.1
  • RUST-690 Pause connection pool when server is marked Unknown
  • RUST-613 Upgrade typed-builder to 0.4.0
  • RUST-598 Perform handshake when establishing monitoring connections
  • RUST-562 Exclude unnecessary files

Bug Fixes

  • RUST-592 Fix race condition in server monitoring
  • RUST-576 Fix count_document fails when writeConcern set on Collection
  • RUST-565 Properly report connection closures due to error

Don't miss a new mongodb release

NewReleases is sending notifications on new releases.