We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd58d7 commit 1f56586Copy full SHA for 1f56586
1 file changed
community/kernel/src/main/java/org/neo4j/graphdb/factory/GraphDatabaseSettings.java
@@ -1068,7 +1068,7 @@ public enum TransactionStateMemoryAllocation
1068
public static final Setting<TransactionStateMemoryAllocation> tx_state_memory_allocation = buildSetting(
1069
"dbms.tx_state.memory_allocation",
1070
optionsIgnoreCase( TransactionStateMemoryAllocation.class ),
1071
- TransactionStateMemoryAllocation.OFF_HEAP.name() ).build();
+ TransactionStateMemoryAllocation.ON_HEAP.name() ).build();
1072
1073
@Description( "The maximum amount of off-heap memory that can be used to store transaction state data; it's a total amount of memory " +
1074
"shared across all active transactions. Zero means 'unlimited'. Used when dbms.tx_state.memory_allocation is set to 'OFF_HEAP'." )
0 commit comments