From: Song Shun Date: Sun, 1 Oct 2017 09:01:46 +0000 (+0800) Subject: tool: change default objectstore from filestore to bluestore X-Git-Tag: v13.0.1~687^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F18066%2Fhead;p=ceph.git 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 --- 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")) {