Status Storage::DoCompact(const DataType& type){ if (type != kAll && type != kStrings && type != kHashes && type != kSets && type != kZSets && type != kLists) { return Status::InvalidArgument(""); }
Status s; if (type == kStrings) { current_task_type_ = Operation::kCleanStrings; s = strings_db_->CompactRange(nullptr, nullptr); } elseif (type == kHashes) { current_task_type_ = Operation::kCleanHashes; s = hashes_db_->CompactRange(nullptr, nullptr); } elseif (type == kSets) { current_task_type_ = Operation::kCleanSets; s = sets_db_->CompactRange(nullptr, nullptr); } elseif (type == kZSets) { current_task_type_ = Operation::kCleanZSets; s = zsets_db_->CompactRange(nullptr, nullptr); } elseif (type == kLists) { current_task_type_ = Operation::kCleanLists; s = lists_db_->CompactRange(nullptr, nullptr); } else { current_task_type_ = Operation::kCleanAll; s = strings_db_->CompactRange(nullptr, nullptr); // 对string类型的数据进行compaction s = hashes_db_->CompactRange(nullptr, nullptr); s = sets_db_->CompactRange(nullptr, nullptr); s = zsets_db_->CompactRange(nullptr, nullptr); s = lists_db_->CompactRange(nullptr, nullptr); } current_task_type_ = Operation::kNone; return s; }
rocksdb::Options ops(storage_options.options); Status s = rocksdb::DB::Open(ops, db_path, &db_); if (s.ok()) { // create column family rocksdb::ColumnFamilyHandle* cf; s = db_->CreateColumnFamily(rocksdb::ColumnFamilyOptions(), "data_cf", &cf); if (!s.ok()) { return s; } // close DB delete cf; delete db_; }
Env* Env::Default(){ // 默认的Env // The following function call initializes the singletons of ThreadLocalPtr // right before the static default_env. This guarantees default_env will // always being destructed before the ThreadLocalPtr singletons get // destructed as C++ guarantees that the destructions of static variables // is in the reverse order of their constructions. // // Since static members are destructed in the reverse order // of their construction, having this call here guarantees that // the destructor of static PosixEnv will go first, then the // the singletons of ThreadLocalPtr. ThreadLocalPtr::InitSingletons(); CompressionContextCache::InitSingleton(); INIT_SYNC_POINT_SINGLETONS(); // Avoid problems with accessing most members of Env::Default() during // static destruction. STATIC_AVOID_DESTRUCTION(PosixEnv, default_env); // This destructor must be called on exit static PosixEnv::JoinThreadsOnExit thread_joiner(default_env); return &default_env; }
PosixEnv::PosixEnv() : CompositeEnv(FileSystem::Default(), SystemClock::Default()), thread_pools_storage_(Priority::TOTAL), allow_non_owner_access_storage_(true), thread_pools_(thread_pools_storage_), mu_(mu_storage_), threads_to_join_(threads_to_join_storage_), allow_non_owner_access_(allow_non_owner_access_storage_) { ThreadPoolImpl::PthreadCall("mutex_init", pthread_mutex_init(&mu_, nullptr)); for (int pool_id = 0; pool_id < Env::Priority::TOTAL; ++pool_id) { thread_pools_[pool_id].SetThreadPriority( // 线程池 static_cast<Env::Priority>(pool_id)); // This allows later initializing the thread-local-env of each thread. thread_pools_[pool_id].SetHostEnv(this); } thread_status_updater_ = CreateThreadStatusUpdater(); }