mirror of https://github.com/apache/cassandra
Remove offheap_buffer as option for memtable_allocation_type in cassandra.yaml
patch by Brad Vernon; reviewed by Robert Stupp for CASSANDRA-13179
This commit is contained in:
parent
56d3f93249
commit
873660cf58
|
|
@ -1,4 +1,5 @@
|
|||
3.0.12
|
||||
* Update c.yaml doc for offheap memtables (CASSANDRA-13179)
|
||||
* Faster StreamingHistogram (CASSANDRA-13038)
|
||||
* Legacy deserializer can create unexpected boundary range tombstones (CASSANDRA-13237)
|
||||
* Remove unnecessary assertion from AntiCompactionTest (CASSANDRA-13070)
|
||||
|
|
|
|||
|
|
@ -397,7 +397,11 @@ concurrent_materialized_view_writes: 32
|
|||
# Specify the way Cassandra allocates and manages memtable memory.
|
||||
# Options are:
|
||||
# heap_buffers: on heap nio buffers
|
||||
# offheap_buffers: off heap (direct) nio buffers
|
||||
#
|
||||
# Note: offheap_buffers are not supported in Cassandra 3.0 - 3.3.
|
||||
# They have been re-introduced in Cassandra 3.4. For details see
|
||||
# https://issues.apache.org/jira/browse/CASSANDRA-9472 and
|
||||
# https://issues.apache.org/jira/browse/CASSANDRA-11039
|
||||
memtable_allocation_type: heap_buffers
|
||||
|
||||
# Total space to use for commit logs on disk.
|
||||
|
|
|
|||
Loading…
Reference in New Issue