mirror of https://github.com/apache/cassandra
Add new cassandra_latest.yaml entries to latest tests
Both CASSANDRA-18120 and CASSANDRA-19946 updated cassandra_latest.yaml but not the corresponding test configs patch by Mick Semb Wever; reviewed by Brandon Williams, Tiago L. Alves for CASSANDRA-20002
This commit is contained in:
parent
38857dc047
commit
2801ed3366
|
@ -29,6 +29,17 @@
|
|||
default:
|
||||
inherits: trie
|
||||
|
||||
batchlog_endpoint_strategy: dynamic_remote
|
||||
|
||||
authenticator:
|
||||
class_name : AllowAllAuthenticator
|
||||
authorizer:
|
||||
class_name: AllowAllAuthorizer
|
||||
role_manager:
|
||||
class_name: CassandraRoleManager
|
||||
network_authorizer:
|
||||
class_name: AllowAllNetworkAuthorizer
|
||||
|
||||
key_cache_size: 0MiB
|
||||
|
||||
memtable_allocation_type: offheap_objects
|
||||
|
|
|
@ -123,6 +123,14 @@ public class InstanceConfig implements IInstanceConfig
|
|||
"configurations", Map.of(
|
||||
"default", Map.of(
|
||||
"class_name", "TrieMemtable"))))
|
||||
|
||||
.set("batchlog_endpoint_strategy", "dynamic_remote")
|
||||
|
||||
.set("authenticator", Map.of("class_name", "AllowAllAuthenticator"))
|
||||
.set("authorizer", Map.of("class_name", "AllowAllAuthorizer"))
|
||||
.set("role_manager", Map.of("class_name", "CassandraRoleManager"))
|
||||
.set("network_authorizer", Map.of("class_name", "AllowAllNetworkAuthorizer"))
|
||||
|
||||
.set("key_cache_size", "0MiB")
|
||||
|
||||
.set("memtable_allocation_type", "offheap_objects")
|
||||
|
|
Loading…
Reference in New Issue