Summary: First step to add (simulated) Remote Compaction in Stress Test. More PRs to come. Just first PR to add the FLAG to enable it. `DbStressCompactionService` will return `kUseLocal` for all compactions. Pull Request resolved: https://github.com/facebook/rocksdb/pull/13378 Test Plan: ``` python3 -u tools/db_crashtest.py whitebox --enable_remote_compaction=1 ``` ``` python3 -u tools/db_crashtest.py blackbox --enable_remote_compaction=1 ``` Reviewed By: hx235 Differential Revision: D69269568 Pulled By: jaykorean fbshipit-source-id: 5119bb6afd4d52f66923fb095150d3132226f7ba
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
// (found in the LICENSE.Apache file in the root directory).
|
|
|
|
#pragma once
|
|
|
|
#include "rocksdb/options.h"
|
|
|
|
namespace ROCKSDB_NAMESPACE {
|
|
|
|
// Service to simulate Remote Compaction in Stress Test
|
|
class DbStressCompactionService : public CompactionService {
|
|
public:
|
|
explicit DbStressCompactionService() {}
|
|
|
|
static const char* kClassName() { return "DbStressCompactionService"; }
|
|
|
|
const char* Name() const override { return kClassName(); }
|
|
|
|
CompactionServiceScheduleResponse Schedule(
|
|
const CompactionServiceJobInfo& /*info*/,
|
|
const std::string& /*compaction_service_input*/) override {
|
|
CompactionServiceScheduleResponse response(
|
|
"Implement Me", CompactionServiceJobStatus::kUseLocal);
|
|
return response;
|
|
}
|
|
|
|
CompactionServiceJobStatus Wait(const std::string& /*scheduled_job_id*/,
|
|
std::string* /*result*/) override {
|
|
// TODO - Implement
|
|
return CompactionServiceJobStatus::kUseLocal;
|
|
}
|
|
|
|
// TODO - Implement
|
|
void CancelAwaitingJobs() override {}
|
|
};
|
|
|
|
} // namespace ROCKSDB_NAMESPACE
|