zfs zfs_arc_max
This commit is contained in:
parent
9b104cac25
commit
b8100f472b
1 changed files with 20 additions and 0 deletions
|
@ -136,3 +136,23 @@ def headers(metadata):
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@metadata_reactor.provides(
|
||||||
|
'zfs/kernel_params/zfs_arc_max',
|
||||||
|
)
|
||||||
|
def arc_size(metadata):
|
||||||
|
arc_percent = metadata.get('zfs/zfs_arc_max_percent', None)
|
||||||
|
|
||||||
|
if arc_percent:
|
||||||
|
return {
|
||||||
|
'zfs': {
|
||||||
|
'kernel_params': {
|
||||||
|
'zfs_arc_max': str(int(
|
||||||
|
metadata.get('vm/ram') * 1024 * 1024 * (arc_percent/100)
|
||||||
|
)),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
else:
|
||||||
|
return {}
|
||||||
|
|
Loading…
Reference in a new issue