Skip to content

Commit 1f56586

Browse files
committed
Revert "Allocate tx state in off-heap memory by default"
This reverts commit d6985b1
1 parent 1bd58d7 commit 1f56586

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

community/kernel/src/main/java/org/neo4j/graphdb/factory/GraphDatabaseSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,7 @@ public enum TransactionStateMemoryAllocation
10681068
public static final Setting<TransactionStateMemoryAllocation> tx_state_memory_allocation = buildSetting(
10691069
"dbms.tx_state.memory_allocation",
10701070
optionsIgnoreCase( TransactionStateMemoryAllocation.class ),
1071-
TransactionStateMemoryAllocation.OFF_HEAP.name() ).build();
1071+
TransactionStateMemoryAllocation.ON_HEAP.name() ).build();
10721072

10731073
@Description( "The maximum amount of off-heap memory that can be used to store transaction state data; it's a total amount of memory " +
10741074
"shared across all active transactions. Zero means 'unlimited'. Used when dbms.tx_state.memory_allocation is set to 'OFF_HEAP'." )

0 commit comments

Comments
 (0)