Commit 1e5253ca authored by Dietmar Maurer's avatar Dietmar Maurer

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

parent ba2dc37e
......@@ -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;
......
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment