mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-5.0' into trunk
* cassandra-5.0: Add new cassandra_latest.yaml entries to latest tests
This commit is contained in:
commit
ef49daf5ff
|
@ -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
|
||||
|
|
|
@ -124,6 +124,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