Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
khaf committed Mar 24, 2023
1 parent e76f76f commit 8f5a387
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Change History


## March 24 2023: v4.6.0
Major feature release. We recommend testing your app vigorously before deploying this version if yoiu depend on batch requests.

* **New Features**

- [CLIENT-2238] Convert batch calls with just a few keys per node in sub-batches to sequential Get requests. If the number keys for a sub-batch to a node is equal or less then the value set in `BatchPolicy.DirectGetThreshold`, the client use direct get instead of batch commands to reduce the load/latency on the server.
- [CLIENT-2240] Add more client statistics.
- Adds the following statistics:
- "circuit-breaker-hits": Number of times circuit breaker was hit
- "connections-error-other": Connection errors other than timeouts
- "connections-error-timeout": Connection Timeout errors
- "connections-idle-dropped": The connection was idle and dropped
- "connections-pool-overflow": The command offered the connection to the pool, but the pool was full and the connection was closed
- "exceeded-max-retries": Number of transactions where exceeded maximum number of retries specified in the policy
- "exceeded-total-timeout": Number of transactions that exceeded the specified total timeout
- "total-nodes": Total number of nodes in the cluster


## May 28 2021: v4.5.2
Minor fix release.

Expand Down

0 comments on commit 8f5a387

Please sign in to comment.