mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.X' into trunk
This commit is contained in:
commit
a052dbfe6f
|
|
@ -1,5 +1,5 @@
|
||||||
4.0
|
4.0
|
||||||
|
* Reject invalid replication settings when creating or altering a keyspace (CASSANDRA-12681)
|
||||||
|
|
||||||
3.10
|
3.10
|
||||||
* cdc column addition still breaks schema migration tasks (CASSANDRA-12697)
|
* cdc column addition still breaks schema migration tasks (CASSANDRA-12697)
|
||||||
|
|
@ -95,7 +95,6 @@ Merged from 3.0:
|
||||||
* Calculate last compacted key on startup (CASSANDRA-6216)
|
* Calculate last compacted key on startup (CASSANDRA-6216)
|
||||||
* Add schema to snapshot manifest, add USING TIMESTAMP clause to ALTER TABLE statements (CASSANDRA-7190)
|
* Add schema to snapshot manifest, add USING TIMESTAMP clause to ALTER TABLE statements (CASSANDRA-7190)
|
||||||
* If CF has no clustering columns, any row cache is full partition cache (CASSANDRA-12499)
|
* If CF has no clustering columns, any row cache is full partition cache (CASSANDRA-12499)
|
||||||
* Reject invalid replication settings when creating or altering a keyspace (CASSANDRA-12681)
|
|
||||||
Merged from 2.2:
|
Merged from 2.2:
|
||||||
* Fix merkle tree depth calculation (CASSANDRA-12580)
|
* Fix merkle tree depth calculation (CASSANDRA-12580)
|
||||||
* Make Collections deserialization more robust (CASSANDRA-12618)
|
* Make Collections deserialization more robust (CASSANDRA-12618)
|
||||||
|
|
|
||||||
8
NEWS.txt
8
NEWS.txt
|
|
@ -21,7 +21,10 @@ New features
|
||||||
|
|
||||||
Upgrading
|
Upgrading
|
||||||
---------
|
---------
|
||||||
|
- Cassandra will no longer allow invalid keyspace replication options, such as invalid datacenter names for
|
||||||
|
NetworkTopologyStrategy. Operators MUST add new nodes to a datacenter before they can set set ALTER or
|
||||||
|
CREATE keyspace replication policies using that datacenter. Existing keyspaces will continue to operate,
|
||||||
|
but CREATE and ALTER will validate that all datacenters specified exist in the cluster.
|
||||||
|
|
||||||
3.10
|
3.10
|
||||||
====
|
====
|
||||||
|
|
@ -108,9 +111,6 @@ Upgrading
|
||||||
- Application layer keep-alives were added to the streaming protocol to prevent idle incoming connections from
|
- Application layer keep-alives were added to the streaming protocol to prevent idle incoming connections from
|
||||||
timing out and failing the stream session (CASSANDRA-11839). This effectively deprecates the streaming_socket_timeout_in_ms
|
timing out and failing the stream session (CASSANDRA-11839). This effectively deprecates the streaming_socket_timeout_in_ms
|
||||||
property in favor of streaming_keep_alive_period_in_secs. See cassandra.yaml for more details about this property.
|
property in favor of streaming_keep_alive_period_in_secs. See cassandra.yaml for more details about this property.
|
||||||
- Cassandra will no longer allow invalid keyspace replication options, such as invalid datacenter names for
|
|
||||||
NetworkTopologyStrategy. Existing keyspaces will continue to operate, but CREATE and ALTER will validate that
|
|
||||||
all datacenters specified exist in the cluster.
|
|
||||||
|
|
||||||
3.8
|
3.8
|
||||||
===
|
===
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue