From: mychoxin Date: Sat, 19 Aug 2017 02:00:37 +0000 (+0800) Subject: vstart.sh: use bluestore as default osd objectstore backend X-Git-Tag: v13.0.1~1060^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=657ff0386abff21e28a531c3148390789ced8b4d;p=ceph.git vstart.sh: use bluestore as default osd objectstore backend Signed-off-by: mychoxin --- diff --git a/src/vstart.sh b/src/vstart.sh index 82ec76bf94ee..31add766824d 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -106,7 +106,7 @@ overwrite_conf=1 cephx=1 #turn cephx on by default cache="" memstore=0 -bluestore=0 +bluestore=1 rgw_frontend="civetweb" rgw_compression="" lockdep=${LOCKDEP:-1} @@ -150,7 +150,8 @@ usage=$usage"\t--mgr_num specify ceph mgr count\n" usage=$usage"\t--rgw_port specify ceph rgw http listen port\n" usage=$usage"\t--rgw_frontend specify the rgw frontend configuration\n" usage=$usage"\t--rgw_compression specify the rgw compression plugin\n" -usage=$usage"\t-b, --bluestore use bluestore as the osd objectstore backend\n" +usage=$usage"\t-b, --bluestore use bluestore as the osd objectstore backend (default)\n" +usage=$usage"\t-f, --filestore use filestore as the osd objectstore backend\n" usage=$usage"\t--memstore use memstore as the osd objectstore backend\n" usage=$usage"\t--cache : enable cache tiering on pool\n" usage=$usage"\t--short: short object names only; necessary for ext4 dev\n" @@ -291,6 +292,9 @@ case $1 in -b | --bluestore ) bluestore=1 ;; + -f | --filestore ) + bluestore=0 + ;; --hitset ) hitset="$hitset $2 $3" shift