disable multiprocess shared memory code for minddata until more testing

This commit is contained in:
RobinGrosman 2021-05-13 07:26:06 -07:00
parent 83b58d22b3
commit 791c841a27
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ ConfigManager::ConfigManager()
num_cpu_threads_(std::thread::hardware_concurrency()),
auto_num_workers_num_shards_(1),
auto_worker_config_(0),
enable_shared_mem_(true) {
enable_shared_mem_(false) {
num_cpu_threads_ = num_cpu_threads_ > 0 ? num_cpu_threads_ : std::numeric_limits<uint16_t>::max();
num_parallel_workers_ = num_parallel_workers_ < num_cpu_threads_ ? num_parallel_workers_ : num_cpu_threads_;
auto env_cache_host = std::getenv("MS_CACHE_HOST");