mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-07 16:47:46 +00:00
ceph: only use 64 PGs by default (same default as ceph default pools)
This commit is contained in:
parent
190df9a105
commit
d6261e3122
@ -976,7 +976,7 @@ __PACKAGE__->register_method ({
|
|||||||
pg_num => {
|
pg_num => {
|
||||||
description => "Number of placement groups.",
|
description => "Number of placement groups.",
|
||||||
type => 'integer',
|
type => 'integer',
|
||||||
default => 512,
|
default => 64,
|
||||||
optional => 1,
|
optional => 1,
|
||||||
minimum => 8,
|
minimum => 8,
|
||||||
maximum => 32768,
|
maximum => 32768,
|
||||||
@ -992,7 +992,7 @@ __PACKAGE__->register_method ({
|
|||||||
die "not fully configured - missing '$pve_ckeyring_path'\n"
|
die "not fully configured - missing '$pve_ckeyring_path'\n"
|
||||||
if ! -f $pve_ckeyring_path;
|
if ! -f $pve_ckeyring_path;
|
||||||
|
|
||||||
my $pg_num = $param->{pg_num} || 512;
|
my $pg_num = $param->{pg_num} || 64;
|
||||||
my $size = $param->{size} || 2;
|
my $size = $param->{size} || 2;
|
||||||
my $min_size = $param->{min_size} || 1;
|
my $min_size = $param->{min_size} || 1;
|
||||||
|
|
||||||
|
8
debian/changelog.Debian
vendored
8
debian/changelog.Debian
vendored
@ -1,3 +1,11 @@
|
|||||||
|
pve-manager (3.1-33) unstable; urgency=low
|
||||||
|
|
||||||
|
* ceph: return decompiled crush map in text format
|
||||||
|
|
||||||
|
* ceph: try to unmount OSD after removal
|
||||||
|
|
||||||
|
-- Proxmox Support Team <support@proxmox.com> Fri, 03 Jan 2014 10:58:49 +0100
|
||||||
|
|
||||||
pve-manager (3.1-32) unstable; urgency=low
|
pve-manager (3.1-32) unstable; urgency=low
|
||||||
|
|
||||||
* add mtu support for manual interfaces
|
* add mtu support for manual interfaces
|
||||||
|
@ -2,7 +2,7 @@ RELEASE=3.1
|
|||||||
|
|
||||||
VERSION=3.1
|
VERSION=3.1
|
||||||
PACKAGE=pve-manager
|
PACKAGE=pve-manager
|
||||||
PACKAGERELEASE=32
|
PACKAGERELEASE=33
|
||||||
|
|
||||||
BINDIR=${DESTDIR}/usr/bin
|
BINDIR=${DESTDIR}/usr/bin
|
||||||
PERLLIBDIR=${DESTDIR}/usr/share/perl5
|
PERLLIBDIR=${DESTDIR}/usr/share/perl5
|
||||||
|
@ -45,7 +45,7 @@ Ext.define('PVE.CephCreatePool', {
|
|||||||
xtype: 'numberfield',
|
xtype: 'numberfield',
|
||||||
fieldLabel: 'pg_num',
|
fieldLabel: 'pg_num',
|
||||||
name: 'pg_num',
|
name: 'pg_num',
|
||||||
value: 512,
|
value: 64,
|
||||||
minValue: 8,
|
minValue: 8,
|
||||||
maxValue: 32768,
|
maxValue: 32768,
|
||||||
allowBlank: false
|
allowBlank: false
|
||||||
|
Loading…
Reference in New Issue
Block a user