From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [45.144.208.40]) by lore.proxmox.com (Postfix) with ESMTPS id 807B51FF141 for ; Tue, 30 Jun 2026 16:29:13 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 5245D2142F; Tue, 30 Jun 2026 16:29:13 +0200 (CEST) From: Christian Ebner To: pbs-devel@lists.proxmox.com Subject: [PATCH proxmox-backup 4/4] ui: expose request rate limit config options for S3 endpoints Date: Tue, 30 Jun 2026 16:28:28 +0200 Message-ID: <20260630142828.660821-5-c.ebner@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260630142828.660821-1-c.ebner@proxmox.com> References: <20260630142828.660821-1-c.ebner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1782829708098 X-SPAM-LEVEL: Spam detection results: 0 DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: OVSBDOEH3IKXRTB73Z2EZXJ377446B7Q X-Message-ID-Hash: OVSBDOEH3IKXRTB73Z2EZXJ377446B7Q X-MailFrom: c.ebner@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Backup Server development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Allows to specify the s3 client request rate limits in the respective endpoint configuration. Signed-off-by: Christian Ebner --- www/window/S3ClientEdit.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/www/window/S3ClientEdit.js b/www/window/S3ClientEdit.js index c7e8ade1f..f44d3b43e 100644 --- a/www/window/S3ClientEdit.js +++ b/www/window/S3ClientEdit.js @@ -135,6 +135,13 @@ Ext.define('PBS.window.S3ClientEdit', { emptyText: gettext('Unlimited'), submitAutoScaledSizeUnit: true, }, + { + xtype: 'proxmoxintegerfield', + name: 'limit-active-requests', + fieldLabel: gettext('PUT/POST/DELETE request limit (#/s)'), + emptyText: gettext('Unlimited'), + minValue: 1, + }, ], advancedColumn2: [ { @@ -151,6 +158,13 @@ Ext.define('PBS.window.S3ClientEdit', { emptyText: gettext('Same as Rate'), submitAutoScaledSizeUnit: true, }, + { + xtype: 'proxmoxintegerfield', + name: 'limit-passive-requests', + fieldLabel: gettext('GET/HEAD request limit (#/s)'), + emptyText: gettext('Unlimited'), + minValue: 1, + }, ], advancedColumnB: [ { -- 2.47.3