Skip to content

Commit

Permalink
Updated docs for 2.4.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenick committed Aug 19, 2016
1 parent b35ebde commit 72c03d6
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 6 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 1,28 @@
2.4.3
===========
August 22, 2016

Features
--------
* Contact points are now randomized by default (CPP-193)
* Token-aware routing can be used without enabling schema metadata (CPP-387)
* Multiple IP addresses can be resolved from a single domain (CPP-364)

Other
--------
* Fixed issue that would cause quadradic ring processing with invalid
replilcation factors (CPP-298)
* Fixed issue where schema change handler could hang if an error is returned by
Cassandra (CPP-381)
* Fixed crash caused by connecting seperate sessions in multiple threads
(CPP-385)
* Fixed issue where the control connection could timeout as a result of schema
or token map processing (CPP-388)
* Greatly improved the performance of building the token map for token aware
routing (CPP-389)
* Fixed issue where heartbeats were restarted on unresponseive connections and
prevented the connection from being terminated (CPP-392)

2.4.2
===========
June 24, 2016
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 21,7 @@ Cassandra's native protocol and Cassandra Query Language v3.
- [Blacklist], [whitelist DC], and [blacklist DC] load balancing policies
- [Custom] authenticators
- [Reverse DNS] with SSL peer identity verification support
- Randomized contact points

More information about features included in 2.3 can be found in this [blog
post](http://www.datastax.com/dev/blog/datastax-c-driver-2-3-ga-released).
Expand Down
2 changes: 1 addition & 1 deletion include/cassandra.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 52,7 @@

#define CASS_VERSION_MAJOR 2
#define CASS_VERSION_MINOR 4
#define CASS_VERSION_PATCH 2
#define CASS_VERSION_PATCH 3
#define CASS_VERSION_SUFFIX ""

#ifdef __cplusplus
Expand Down
1 change: 0 additions & 1 deletion topics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 184,6 @@ Here are some features that are missing from the C/C driver, but are included
- Query tracing
- Event registration and notification
- Callback interfaces for load balancing, authentication, reconnection and retry
- Generic SASL authentication interface
[`cass_int32_t`]: http://datastax.github.io/cpp-driver/api/cassandra.h/#cass-int32-t
[`cass_result_first_row()`]: http://datastax.github.io/cpp-driver/api/CassResult/#cass-result-first-row
3 changes: 0 additions & 3 deletions topics/basics/schema_metadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 48,6 @@ overhead. This can be useful to improve the startup performance of the
short-lived sessions or an environment where up-to-date schema metadata is
unnecessary.
**Important**: This also disables token-aware routing because it depends on
schema metadata.
```c
/* Disable schema metdata */
cass_cluster_set_use_schema(cluster, cass_false);
Expand Down
2 changes: 1 addition & 1 deletion topics/configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 53,7 @@ in conjunction with other load balancing and routing policies.
cass_cluster_set_token_aware_routing(cluster, cass_true);
/* Disable token-aware routing */
cass_cluster_set_token_aware_routing(cluster, cass_true);
cass_cluster_set_token_aware_routing(cluster, cass_false);
```

### Latency-aware Routing
Expand Down

0 comments on commit 72c03d6

Please sign in to comment.