We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b6fff commit 64a9915Copy full SHA for 64a9915
src/crimson/osd/osd.cc
@@ -361,7 +361,12 @@ seastar::future<> OSD::start()
361
{
362
LOG_PREFIX(OSD::start);
363
INFO("seastar::smp::count {}", seastar::smp::count);
364
-
+ if (auto cpu_cores =
365
+ local_conf().get_val<std::string>("crimson_seastar_cpu_cores");
366
+ cpu_cores.empty()) {
367
+ clog->warn() << "for optimal performance please set "
368
+ "crimson_seastar_cpu_cores";
369
+ }
370
startup_time = ceph::mono_clock::now();
371
ceph_assert(seastar::this_shard_id() == PRIMARY_CORE);
372
return store.start().then([this] {
0 commit comments