mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-06 15:36:02 +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 => {
|
||||
description => "Number of placement groups.",
|
||||
type => 'integer',
|
||||
default => 512,
|
||||
default => 64,
|
||||
optional => 1,
|
||||
minimum => 8,
|
||||
maximum => 32768,
|
||||
@ -992,7 +992,7 @@ __PACKAGE__->register_method ({
|
||||
die "not fully configured - missing '$pve_ckeyring_path'\n"
|
||||
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 $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
|
||||
|
||||
* add mtu support for manual interfaces
|
||||
|
@ -2,7 +2,7 @@ RELEASE=3.1
|
||||
|
||||
VERSION=3.1
|
||||
PACKAGE=pve-manager
|
||||
PACKAGERELEASE=32
|
||||
PACKAGERELEASE=33
|
||||
|
||||
BINDIR=${DESTDIR}/usr/bin
|
||||
PERLLIBDIR=${DESTDIR}/usr/share/perl5
|
||||
|
@ -45,7 +45,7 @@ Ext.define('PVE.CephCreatePool', {
|
||||
xtype: 'numberfield',
|
||||
fieldLabel: 'pg_num',
|
||||
name: 'pg_num',
|
||||
value: 512,
|
||||
value: 64,
|
||||
minValue: 8,
|
||||
maxValue: 32768,
|
||||
allowBlank: false
|
||||
|
Loading…
Reference in New Issue
Block a user