* [pbs-devel] [PATCH proxmox-backup] api: zfs: create zpool with atime=off and relatime=on
@ 2021-11-02 9:39 Dominik Csapak
2021-11-03 7:28 ` Dominik Csapak
0 siblings, 1 reply; 2+ messages in thread
From: Dominik Csapak @ 2021-11-02 9:39 UTC (permalink / raw)
To: pbs-devel
some operations (e.g. garbage collection/restore/etc.) are very read
intensive on the chunks, and having atime=on (zfs default) makes those
write intensive operations too. Additionally, 'ext4' defaults to relatime,
so also change the default for api-created zpools.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
src/api2/node/disks/zfs.rs | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/src/api2/node/disks/zfs.rs b/src/api2/node/disks/zfs.rs
index 9c3a0958..242f5f7b 100644
--- a/src/api2/node/disks/zfs.rs
+++ b/src/api2/node/disks/zfs.rs
@@ -273,13 +273,15 @@ pub fn create_zpool(
proxmox_systemd::enable_unit(&import_unit)?;
}
+ let mut command = std::process::Command::new("zfs");
+ command.arg("set");
if let Some(compression) = compression {
- let mut command = std::process::Command::new("zfs");
- command.args(&["set", &format!("compression={}", compression), &name]);
- task_log!(worker, "# {:?}", command);
- let output = pbs_tools::run_command(command, None)?;
- task_log!(worker, "{}", output);
+ command.arg(&format!("compression={}", compression));
}
+ command.args(&["atime=off", "relatime=on", &name]);
+ task_log!(worker, "# {:?}", command);
+ let output = pbs_tools::run_command(command, None)?;
+ task_log!(worker, "{}", output);
if add_datastore {
let lock = pbs_config::datastore::lock_config()?;
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [pbs-devel] [PATCH proxmox-backup] api: zfs: create zpool with atime=off and relatime=on
2021-11-02 9:39 [pbs-devel] [PATCH proxmox-backup] api: zfs: create zpool with atime=off and relatime=on Dominik Csapak
@ 2021-11-03 7:28 ` Dominik Csapak
0 siblings, 0 replies; 2+ messages in thread
From: Dominik Csapak @ 2021-11-03 7:28 UTC (permalink / raw)
To: pbs-devel
please disregard this, it's not correct, i'll send a v2 shortly
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-11-03 7:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-02 9:39 [pbs-devel] [PATCH proxmox-backup] api: zfs: create zpool with atime=off and relatime=on Dominik Csapak
2021-11-03 7:28 ` Dominik Csapak
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal