[pbs-devel] [PATCH v5 proxmox-backup 4/8] ui: expose GC atime safety check flag in datastore tuning options
Thomas Lamprecht
t.lamprecht at proxmox.com
Wed Mar 19 09:45:33 CET 2025
Am 06.03.25 um 15:52 schrieb Christian Ebner:
> Allow to edit the atime safety check flag via the datastore tuning
> options edit window.
>
> Do not expose the flag for datastore creation as it is strongly
> discouraged to create datastores on filesystems not correctly handling
> atime updates as the garbage collection expects. It is nevertheless
> still possible to create a datastore via the cli and pass in the
> `--tuning gc-atime-safety-check=false` option.
>
> Signed-off-by: Christian Ebner <c.ebner at proxmox.com>
> ---
> changes since version 4:
> - no changes
>
> www/Utils.js | 4 ++++
> www/datastore/OptionView.js | 8 ++++++++
> 2 files changed, 12 insertions(+)
>
> diff --git a/www/Utils.js b/www/Utils.js
> index 2746ef0b5..9bd7e1615 100644
> --- a/www/Utils.js
> +++ b/www/Utils.js
> @@ -846,6 +846,10 @@ Ext.define('PBS.Utils', {
> sync = PBS.Utils.tuningOptions['sync-level'][sync ?? '__default__'];
> options.push(`${gettext('Sync Level')}: ${sync}`);
>
> + let gc_atime_safety_check = tuning['gc-atime-safety-check'];
> + delete tuning['gc-atime-safety-check'];
> + options.push(`${gettext('GC Access Time Safety Check')}: ${gc_atime_safety_check ?? true}`);
> +
> for (const [k, v] of Object.entries(tuning)) {
> options.push(`${k}: ${v}`);
> }
> diff --git a/www/datastore/OptionView.js b/www/datastore/OptionView.js
> index e1f38af6f..9ce3ce388 100644
> --- a/www/datastore/OptionView.js
> +++ b/www/datastore/OptionView.js
> @@ -271,6 +271,14 @@ Ext.define('PBS.Datastore.Options', {
> deleteEmpty: true,
> value: '__default__',
> },
> + {
> + xtype: 'proxmoxcheckbox',
> + name: 'gc-atime-safety-check',
> + fieldLabel: gettext('GC Access Time Safety Check'),
Such long field labels are normally not nice for the layout, maybe move
some of the info in the boxLabel, which gets rendered to the right of the
box? E.g., something like:
fieldLabel: gettect('GC atime Check'),
boxLabel: gettect('Ensure underlying storage honors access time updates'),
> + defaultValue: 1,
> + uncheckedValue: 0,
> + deleteDefaultValue: true,
> + },
> ],
> },
> },
More information about the pbs-devel
mailing list