From 341b13c467c526383c23ed5f6337b7f3bcd6df60 Mon Sep 17 00:00:00 2001 From: Song Shun Date: Sun, 1 Oct 2017 17:01:46 +0800 Subject: [PATCH] tool: change default objectstore from filestore to bluestore as Luminous gets released, it's better to switch default objectstore from filestore to bluestore. Signed-off-by: Song Shun --- src/tools/ceph_objectstore_tool.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/ceph_objectstore_tool.cc b/src/tools/ceph_objectstore_tool.cc index 49cf02c3267..37a2e628efb 100644 --- a/src/tools/ceph_objectstore_tool.cc +++ b/src/tools/ceph_objectstore_tool.cc @@ -2498,7 +2498,7 @@ int main(int argc, char **argv) desc.add_options() ("help", "produce help message") ("type", po::value(&type), - "Arg is one of [bluestore, filestore (default), memstore]") + "Arg is one of [bluestore (default), filestore, memstore]") ("data-path", po::value(&dpath), "path to object store, mandatory") ("journal-path", po::value(&jpath), @@ -2613,7 +2613,7 @@ int main(int argc, char **argv) ::close(fd); } if (!vm.count("type") && type == "") { - type = "filestore"; + type = "bluestore"; } if (!vm.count("data-path") && !(op == "dump-journal" && type == "filestore")) { -- 2.39.5