mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.0' into cassandra-3.11
This commit is contained in:
commit
5a662ea3ff
|
|
@ -3,6 +3,7 @@
|
||||||
* RateBasedBackPressure unnecessarily invokes a lock on the Guava RateLimiter (CASSANDRA-14163)
|
* RateBasedBackPressure unnecessarily invokes a lock on the Guava RateLimiter (CASSANDRA-14163)
|
||||||
* Fix wildcard GROUP BY queries (CASSANDRA-14209)
|
* Fix wildcard GROUP BY queries (CASSANDRA-14209)
|
||||||
Merged from 3.0:
|
Merged from 3.0:
|
||||||
|
* Adding missing WriteType enum values to v3,v4 and v5 spec (CASSANDRA-13697)
|
||||||
* Don't regenerate bloomfilter and summaries on startup (CASSANDRA-11163)
|
* Don't regenerate bloomfilter and summaries on startup (CASSANDRA-11163)
|
||||||
* Fix NPE when performing comparison against a null frozen in LWT (CASSANDRA-14087)
|
* Fix NPE when performing comparison against a null frozen in LWT (CASSANDRA-14087)
|
||||||
* Log when SSTables are deleted (CASSANDRA-14302)
|
* Log when SSTables are deleted (CASSANDRA-14302)
|
||||||
|
|
|
||||||
|
|
@ -979,6 +979,7 @@ Table of Contents
|
||||||
- "BATCH_LOG": the timeout occured during the
|
- "BATCH_LOG": the timeout occured during the
|
||||||
write to the batch log when a (logged) batch
|
write to the batch log when a (logged) batch
|
||||||
write was requested.
|
write was requested.
|
||||||
|
- "CAS": the timeout occured during the Compare And Set write/update.
|
||||||
0x1200 Read_timeout: Timeout exception during a read request. The rest
|
0x1200 Read_timeout: Timeout exception during a read request. The rest
|
||||||
of the ERROR message body will be
|
of the ERROR message body will be
|
||||||
<cl><received><blockfor><data_present>
|
<cl><received><blockfor><data_present>
|
||||||
|
|
|
||||||
|
|
@ -1068,6 +1068,12 @@ Table of Contents
|
||||||
- "BATCH_LOG": the timeout occurred during the
|
- "BATCH_LOG": the timeout occurred during the
|
||||||
write to the batch log when a (logged) batch
|
write to the batch log when a (logged) batch
|
||||||
write was requested.
|
write was requested.
|
||||||
|
- "CAS": the timeout occured during the Compare And Set write/update.
|
||||||
|
- "VIEW": the timeout occured when a write involves
|
||||||
|
VIEW update and failure to acqiure local view(MV)
|
||||||
|
lock for key within timeout
|
||||||
|
- "CDC": the timeout occured when cdc_total_space_in_mb is
|
||||||
|
exceeded when doing a write to data tracked by cdc.
|
||||||
0x1200 Read_timeout: Timeout exception during a read request. The rest
|
0x1200 Read_timeout: Timeout exception during a read request. The rest
|
||||||
of the ERROR message body will be
|
of the ERROR message body will be
|
||||||
<cl><received><blockfor><data_present>
|
<cl><received><blockfor><data_present>
|
||||||
|
|
@ -1135,6 +1141,12 @@ Table of Contents
|
||||||
- "BATCH_LOG": the failure occured during the
|
- "BATCH_LOG": the failure occured during the
|
||||||
write to the batch log when a (logged) batch
|
write to the batch log when a (logged) batch
|
||||||
write was requested.
|
write was requested.
|
||||||
|
- "CAS": the failure occured during the Compare And Set write/update.
|
||||||
|
- "VIEW": the failure occured when a write involves
|
||||||
|
VIEW update and failure to acqiure local view(MV)
|
||||||
|
lock for key within timeout
|
||||||
|
- "CDC": the failure occured when cdc_total_space_in_mb is
|
||||||
|
exceeded when doing a write to data tracked by cdc.
|
||||||
|
|
||||||
0x2000 Syntax_error: The submitted query has a syntax error.
|
0x2000 Syntax_error: The submitted query has a syntax error.
|
||||||
0x2100 Unauthorized: The logged user doesn't have the right to perform
|
0x2100 Unauthorized: The logged user doesn't have the right to perform
|
||||||
|
|
|
||||||
|
|
@ -1108,6 +1108,12 @@ Table of Contents
|
||||||
- "BATCH_LOG": the timeout occurred during the
|
- "BATCH_LOG": the timeout occurred during the
|
||||||
write to the batch log when a (logged) batch
|
write to the batch log when a (logged) batch
|
||||||
write was requested.
|
write was requested.
|
||||||
|
- "CAS": the timeout occured during the Compare And Set write/update.
|
||||||
|
- "VIEW": the timeout occured when a write involves
|
||||||
|
VIEW update and failure to acqiure local view(MV)
|
||||||
|
lock for key within timeout
|
||||||
|
- "CDC": the timeout occured when cdc_total_space_in_mb is
|
||||||
|
exceeded when doing a write to data tracked by cdc.
|
||||||
0x1200 Read_timeout: Timeout exception during a read request. The rest
|
0x1200 Read_timeout: Timeout exception during a read request. The rest
|
||||||
of the ERROR message body will be
|
of the ERROR message body will be
|
||||||
<cl><received><blockfor><data_present>
|
<cl><received><blockfor><data_present>
|
||||||
|
|
@ -1183,6 +1189,12 @@ Table of Contents
|
||||||
- "BATCH_LOG": the failure occured during the
|
- "BATCH_LOG": the failure occured during the
|
||||||
write to the batch log when a (logged) batch
|
write to the batch log when a (logged) batch
|
||||||
write was requested.
|
write was requested.
|
||||||
|
- "CAS": the failure occured during the Compare And Set write/update.
|
||||||
|
- "VIEW": the failure occured when a write involves
|
||||||
|
VIEW update and failure to acqiure local view(MV)
|
||||||
|
lock for key within timeout
|
||||||
|
- "CDC": the failure occured when cdc_total_space_in_mb is
|
||||||
|
exceeded when doing a write to data tracked by cdc.
|
||||||
|
|
||||||
0x2000 Syntax_error: The submitted query has a syntax error.
|
0x2000 Syntax_error: The submitted query has a syntax error.
|
||||||
0x2100 Unauthorized: The logged user doesn't have the right to perform
|
0x2100 Unauthorized: The logged user doesn't have the right to perform
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue