From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 47C4F7438A for ; Tue, 1 Jun 2021 14:13:54 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 07527294A2 for ; Tue, 1 Jun 2021 14:13:54 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 1E88B2945C for ; Tue, 1 Jun 2021 14:13:52 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id E9746429B9 for ; Tue, 1 Jun 2021 14:13:51 +0200 (CEST) From: Dominik Csapak To: pbs-devel@lists.proxmox.com Date: Tue, 1 Jun 2021 14:13:49 +0200 Message-Id: <20210601121350.19919-4-d.csapak@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210601121350.19919-1-d.csapak@proxmox.com> References: <20210601121350.19919-1-d.csapak@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.041 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [datastore.rs] Subject: [pbs-devel] [PATCH proxmox-backup 3/4] backup/chunk_store: optionally log progress on creation X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jun 2021 12:13:54 -0000 and enable it for the worker variant Signed-off-by: Dominik Csapak --- src/api2/config/datastore.rs | 6 +++--- src/backup/chunk_store.rs | 11 +++++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/src/api2/config/datastore.rs b/src/api2/config/datastore.rs index 16ac030f..5c2ad050 100644 --- a/src/api2/config/datastore.rs +++ b/src/api2/config/datastore.rs @@ -131,7 +131,7 @@ pub fn create_datastore(param: Value) -> Result<(), Error> { let path: PathBuf = datastore.path.clone().into(); let backup_user = crate::backup::backup_user()?; - let _store = ChunkStore::create(&datastore.name, path, backup_user.uid, backup_user.gid)?; + let _store = ChunkStore::create(&datastore.name, path, backup_user.uid, backup_user.gid, None)?; config.set_data(&datastore.name, "datastore", &datastore)?; @@ -226,12 +226,12 @@ pub fn create_datastore_worker( Some(datastore.name.to_string()), auth_id, false, - move |_worker| { + move |worker| { let _lock = lock; // keep the lock let path: PathBuf = datastore.path.clone().into(); let backup_user = crate::backup::backup_user()?; - let _store = ChunkStore::create(&datastore.name, path, backup_user.uid, backup_user.gid)?; + let _store = ChunkStore::create(&datastore.name, path, backup_user.uid, backup_user.gid, Some(&worker))?; config.set_data(&datastore.name, "datastore", &datastore)?; diff --git a/src/backup/chunk_store.rs b/src/backup/chunk_store.rs index 31e8307c..e9cc3897 100644 --- a/src/backup/chunk_store.rs +++ b/src/backup/chunk_store.rs @@ -7,6 +7,7 @@ use std::os::unix::io::AsRawFd; use proxmox::tools::fs::{CreateOptions, create_path, create_dir}; +use crate::task_log; use crate::tools; use crate::api2::types::GarbageCollectionStatus; @@ -61,7 +62,7 @@ impl ChunkStore { chunk_dir } - pub fn create

(name: &str, path: P, uid: nix::unistd::Uid, gid: nix::unistd::Gid) -> Result + pub fn create

(name: &str, path: P, uid: nix::unistd::Uid, gid: nix::unistd::Gid, worker: Option<&dyn TaskState>) -> Result where P: Into, { @@ -104,7 +105,9 @@ impl ChunkStore { } let percentage = (i*100)/(64*1024); if percentage != last_percentage { - // eprintln!("ChunkStore::create {}%", percentage); + if let Some(worker) = worker { + task_log!(worker, "Chunkstore create: {}%", percentage) + } last_percentage = percentage; } } @@ -461,7 +464,7 @@ fn test_chunk_store1() { assert!(chunk_store.is_err()); let user = nix::unistd::User::from_uid(nix::unistd::Uid::current()).unwrap().unwrap(); - let chunk_store = ChunkStore::create("test", &path, user.uid, user.gid).unwrap(); + let chunk_store = ChunkStore::create("test", &path, user.uid, user.gid, None).unwrap(); let (chunk, digest) = super::DataChunkBuilder::new(&[0u8, 1u8]).build().unwrap(); @@ -472,7 +475,7 @@ fn test_chunk_store1() { assert!(exists); - let chunk_store = ChunkStore::create("test", &path, user.uid, user.gid); + let chunk_store = ChunkStore::create("test", &path, user.uid, user.gid, None); assert!(chunk_store.is_err()); if let Err(_e) = std::fs::remove_dir_all(".testdir") { /* ignore */ } -- 2.20.1