You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Starts background writeback of dirty data at this percentage of total memory, via a pdflush daemon. The default value is 10. reduce to 1
82
+
vm.dirty_background_ratio=1
83
+
84
+
# Starts active writeback of dirty data at this percentage of total memory for the generator of dirty data, via pdflush. The default value is 40. reduce to 5
85
+
vm.dirty_ratio=5
86
+
87
+
# Defines when dirty in-memory data is old enough to be eligible for writeout. default 30s, reduce to 1s
88
+
vm.dirty_expire_centisecs = 100
89
+
90
+
# Defines the interval between pdflush daemon wakeups, which periodically writes dirty in-memory data out to disk. The default value is 500, reduce to 1s
# Starts background writeback of dirty data at this percentage of total memory, via a pdflush daemon. The default value is 10.
82
+
vm.dirty_background_ratio=10
83
+
84
+
# Starts active writeback of dirty data at this percentage of total memory for the generator of dirty data, via pdflush. The default value is 40. increase to 80
85
+
vm.dirty_ratio=80
86
+
87
+
# Defines when dirty in-memory data is old enough to be eligible for writeout. default 30s
88
+
#vm.dirty_expire_centisecs = 3000
89
+
90
+
# Defines the interval between pdflush daemon wakeups, which periodically writes dirty in-memory data out to disk. The default value is 500
# Starts background writeback of dirty data at this percentage of total memory, via a pdflush daemon. The default value is 10.
82
+
vm.dirty_background_ratio=3
83
+
84
+
# Starts active writeback of dirty data at this percentage of total memory for the generator of dirty data, via pdflush. The default value is 40.
85
+
vm.dirty_ratio=15
86
+
87
+
# Defines when dirty in-memory data is old enough to be eligible for writeout. default 30s, reduce to 5s
88
+
vm.dirty_expire_centisecs = 500
89
+
90
+
# Defines the interval between pdflush daemon wakeups, which periodically writes dirty in-memory data out to disk. The default value is 500, reduce to 1s
0 commit comments