ceph: only use 64 PGs by default (same default as ceph default pools)

This commit is contained in:
Dietmar Maurer 2014-01-03 11:03:05 +01:00
parent 190df9a105
commit d6261e3122
4 changed files with 12 additions and 4 deletions

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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