2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// 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).
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2012-06-08 10:11:14 +02:00
|
|
|
#include <algorithm>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <iostream>
|
2015-07-02 01:13:49 +02:00
|
|
|
#include "port/sys_time.h"
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/env.h"
|
|
|
|
#include "rocksdb/status.h"
|
2012-06-08 10:11:14 +02:00
|
|
|
|
|
|
|
#ifdef USE_HDFS
|
2014-05-20 23:22:12 +02:00
|
|
|
#include <hdfs.h>
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2012-06-08 10:11:14 +02:00
|
|
|
|
|
|
|
// Thrown during execution when there is an issue with the supplied
|
|
|
|
// arguments.
|
|
|
|
class HdfsUsageException : public std::exception { };
|
|
|
|
|
|
|
|
// A simple exception that indicates something went wrong that is not
|
|
|
|
// recoverable. The intention is for the message to be printed (with
|
|
|
|
// nothing else) and the process terminate.
|
|
|
|
class HdfsFatalException : public std::exception {
|
|
|
|
public:
|
|
|
|
explicit HdfsFatalException(const std::string& s) : what_(s) { }
|
|
|
|
virtual ~HdfsFatalException() throw() { }
|
|
|
|
virtual const char* what() const throw() {
|
|
|
|
return what_.c_str();
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
const std::string what_;
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
2013-10-05 07:32:05 +02:00
|
|
|
// The HDFS environment for rocksdb. This class overrides all the
|
2012-06-08 10:11:14 +02:00
|
|
|
// file/dir access methods and delegates the thread-mgmt methods to the
|
|
|
|
// default posix environment.
|
|
|
|
//
|
|
|
|
class HdfsEnv : public Env {
|
|
|
|
|
|
|
|
public:
|
2014-02-26 02:47:37 +01:00
|
|
|
explicit HdfsEnv(const std::string& fsname) : fsname_(fsname) {
|
2012-06-08 10:11:14 +02:00
|
|
|
posixEnv = Env::Default();
|
|
|
|
fileSys_ = connectToPath(fsname_);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~HdfsEnv() {
|
|
|
|
fprintf(stderr, "Destroying HdfsEnv::Default()\n");
|
|
|
|
hdfsDisconnect(fileSys_);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status NewSequentialFile(const std::string& fname,
|
|
|
|
std::unique_ptr<SequentialFile>* result,
|
|
|
|
const EnvOptions& options) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status NewRandomAccessFile(const std::string& fname,
|
|
|
|
std::unique_ptr<RandomAccessFile>* result,
|
|
|
|
const EnvOptions& options) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status NewWritableFile(const std::string& fname,
|
|
|
|
std::unique_ptr<WritableFile>* result,
|
|
|
|
const EnvOptions& options) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status NewDirectory(const std::string& name,
|
|
|
|
std::unique_ptr<Directory>* result) override;
|
2014-01-27 20:02:21 +01:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status FileExists(const std::string& fname) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status GetChildren(const std::string& path,
|
|
|
|
std::vector<std::string>* result) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status DeleteFile(const std::string& fname) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status CreateDir(const std::string& name) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status CreateDirIfMissing(const std::string& name) override;
|
2012-11-26 22:56:45 +01:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status DeleteDir(const std::string& name) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status GetFileSize(const std::string& fname, uint64_t* size) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status GetFileModificationTime(const std::string& fname,
|
|
|
|
uint64_t* file_mtime) override;
|
2012-11-26 22:56:45 +01:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status RenameFile(const std::string& src, const std::string& target) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status LinkFile(const std::string& /*src*/,
|
|
|
|
const std::string& /*target*/) override {
|
2015-12-02 14:46:48 +01:00
|
|
|
return Status::NotSupported(); // not supported
|
|
|
|
}
|
2014-11-14 20:38:26 +01:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status LockFile(const std::string& fname, FileLock** lock) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status UnlockFile(FileLock* lock) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status NewLogger(const std::string& fname,
|
|
|
|
std::shared_ptr<Logger>* result) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
void Schedule(void (*function)(void* arg), void* arg, Priority pri = LOW,
|
|
|
|
void* tag = nullptr,
|
|
|
|
void (*unschedFunction)(void* arg) = 0) override {
|
2015-12-30 19:12:44 +01:00
|
|
|
posixEnv->Schedule(function, arg, pri, tag, unschedFunction);
|
2015-03-17 02:49:14 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
int UnSchedule(void* tag, Priority pri) override {
|
2016-09-14 19:17:34 +02:00
|
|
|
return posixEnv->UnSchedule(tag, pri);
|
2012-06-08 10:11:14 +02:00
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
void StartThread(void (*function)(void* arg), void* arg) override {
|
2012-06-08 10:11:14 +02:00
|
|
|
posixEnv->StartThread(function, arg);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
void WaitForJoin() override { posixEnv->WaitForJoin(); }
|
2014-02-26 02:47:37 +01:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
unsigned int GetThreadPoolQueueLen(Priority pri = LOW) const override {
|
2014-03-11 00:14:48 +01:00
|
|
|
return posixEnv->GetThreadPoolQueueLen(pri);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status GetTestDirectory(std::string* path) override {
|
2012-06-08 10:11:14 +02:00
|
|
|
return posixEnv->GetTestDirectory(path);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
uint64_t NowMicros() override { return posixEnv->NowMicros(); }
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
void SleepForMicroseconds(int micros) override {
|
2012-06-08 10:11:14 +02:00
|
|
|
posixEnv->SleepForMicroseconds(micros);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status GetHostName(char* name, uint64_t len) override {
|
2012-08-15 00:20:36 +02:00
|
|
|
return posixEnv->GetHostName(name, len);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status GetCurrentTime(int64_t* unix_time) override {
|
2012-08-30 00:21:56 +02:00
|
|
|
return posixEnv->GetCurrentTime(unix_time);
|
2012-08-15 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
Status GetAbsolutePath(const std::string& db_path,
|
|
|
|
std::string* output_path) override {
|
2012-08-15 00:20:36 +02:00
|
|
|
return posixEnv->GetAbsolutePath(db_path, output_path);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
void SetBackgroundThreads(int number, Priority pri = LOW) override {
|
2013-09-12 09:53:30 +02:00
|
|
|
posixEnv->SetBackgroundThreads(number, pri);
|
2012-09-20 00:21:09 +02:00
|
|
|
}
|
2012-08-15 00:20:36 +02:00
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
int GetBackgroundThreads(Priority pri = LOW) override {
|
2017-05-23 20:04:25 +02:00
|
|
|
return posixEnv->GetBackgroundThreads(pri);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
void IncBackgroundThreadsIfNeeded(int number, Priority pri) override {
|
2014-11-03 23:11:33 +01:00
|
|
|
posixEnv->IncBackgroundThreadsIfNeeded(number, pri);
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
std::string TimeToString(uint64_t number) override {
|
2012-10-19 23:00:53 +02:00
|
|
|
return posixEnv->TimeToString(number);
|
|
|
|
}
|
|
|
|
|
2012-06-08 10:11:14 +02:00
|
|
|
static uint64_t gettid() {
|
|
|
|
assert(sizeof(pthread_t) <= sizeof(uint64_t));
|
|
|
|
return (uint64_t)pthread_self();
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
uint64_t GetThreadID() const override { return HdfsEnv::gettid(); }
|
2015-06-11 23:18:02 +02:00
|
|
|
|
2012-06-08 10:11:14 +02:00
|
|
|
private:
|
|
|
|
std::string fsname_; // string of the form "hdfs://hostname:port/"
|
|
|
|
hdfsFS fileSys_; // a single FileSystem object for all files
|
|
|
|
Env* posixEnv; // This object is derived from Env, but not from
|
|
|
|
// posixEnv. We have posixnv as an encapsulated
|
|
|
|
// object here so that we can use posix timers,
|
|
|
|
// posix threads, etc.
|
|
|
|
|
2014-05-14 21:14:18 +02:00
|
|
|
static const std::string kProto;
|
|
|
|
static const std::string pathsep;
|
|
|
|
|
2012-06-08 10:11:14 +02:00
|
|
|
/**
|
2013-01-07 19:11:18 +01:00
|
|
|
* If the URI is specified of the form hdfs://server:port/path,
|
2012-06-08 10:11:14 +02:00
|
|
|
* then connect to the specified cluster
|
|
|
|
* else connect to default.
|
|
|
|
*/
|
|
|
|
hdfsFS connectToPath(const std::string& uri) {
|
|
|
|
if (uri.empty()) {
|
2014-02-26 02:47:37 +01:00
|
|
|
return nullptr;
|
2012-06-08 10:11:14 +02:00
|
|
|
}
|
|
|
|
if (uri.find(kProto) != 0) {
|
|
|
|
// uri doesn't start with hdfs:// -> use default:0, which is special
|
|
|
|
// to libhdfs.
|
|
|
|
return hdfsConnectNewInstance("default", 0);
|
|
|
|
}
|
|
|
|
const std::string hostport = uri.substr(kProto.length());
|
|
|
|
|
|
|
|
std::vector <std::string> parts;
|
|
|
|
split(hostport, ':', parts);
|
|
|
|
if (parts.size() != 2) {
|
|
|
|
throw HdfsFatalException("Bad uri for hdfs " + uri);
|
|
|
|
}
|
|
|
|
// parts[0] = hosts, parts[1] = port/xxx/yyy
|
|
|
|
std::string host(parts[0]);
|
|
|
|
std::string remaining(parts[1]);
|
|
|
|
|
2019-03-29 03:16:58 +01:00
|
|
|
int rem = static_cast<int>(remaining.find(pathsep));
|
2012-06-08 10:11:14 +02:00
|
|
|
std::string portStr = (rem == 0 ? remaining :
|
|
|
|
remaining.substr(0, rem));
|
2013-01-07 19:11:18 +01:00
|
|
|
|
2012-06-08 10:11:14 +02:00
|
|
|
tPort port;
|
|
|
|
port = atoi(portStr.c_str());
|
|
|
|
if (port == 0) {
|
|
|
|
throw HdfsFatalException("Bad host-port for hdfs " + uri);
|
|
|
|
}
|
|
|
|
hdfsFS fs = hdfsConnectNewInstance(host.c_str(), port);
|
|
|
|
return fs;
|
|
|
|
}
|
|
|
|
|
2013-01-07 19:11:18 +01:00
|
|
|
void split(const std::string &s, char delim,
|
2012-06-08 10:11:14 +02:00
|
|
|
std::vector<std::string> &elems) {
|
|
|
|
elems.clear();
|
|
|
|
size_t prev = 0;
|
|
|
|
size_t pos = s.find(delim);
|
|
|
|
while (pos != std::string::npos) {
|
|
|
|
elems.push_back(s.substr(prev, pos));
|
|
|
|
prev = pos + 1;
|
|
|
|
pos = s.find(delim, prev);
|
|
|
|
}
|
|
|
|
elems.push_back(s.substr(prev, s.size()));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2012-06-08 10:11:14 +02:00
|
|
|
|
|
|
|
#else // USE_HDFS
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2012-08-29 21:29:43 +02:00
|
|
|
static const Status notsup;
|
|
|
|
|
2012-06-08 10:11:14 +02:00
|
|
|
class HdfsEnv : public Env {
|
|
|
|
|
|
|
|
public:
|
2018-03-05 22:08:17 +01:00
|
|
|
explicit HdfsEnv(const std::string& /*fsname*/) {
|
2013-10-05 07:32:05 +02:00
|
|
|
fprintf(stderr, "You have not build rocksdb with HDFS support\n");
|
2012-06-08 10:11:14 +02:00
|
|
|
fprintf(stderr, "Please see hdfs/README for details\n");
|
2014-12-05 22:30:57 +01:00
|
|
|
abort();
|
2012-06-08 10:11:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~HdfsEnv() {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status NewSequentialFile(const std::string& fname,
|
2018-11-09 20:17:34 +01:00
|
|
|
std::unique_ptr<SequentialFile>* result,
|
2015-02-26 20:28:41 +01:00
|
|
|
const EnvOptions& options) override;
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-11-09 20:17:34 +01:00
|
|
|
virtual Status NewRandomAccessFile(
|
|
|
|
const std::string& /*fname*/,
|
|
|
|
std::unique_ptr<RandomAccessFile>* /*result*/,
|
|
|
|
const EnvOptions& /*options*/) override {
|
2013-01-20 11:07:13 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status NewWritableFile(const std::string& /*fname*/,
|
2018-11-09 20:17:34 +01:00
|
|
|
std::unique_ptr<WritableFile>* /*result*/,
|
2018-03-05 22:08:17 +01:00
|
|
|
const EnvOptions& /*options*/) override {
|
2013-01-20 11:07:13 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status NewDirectory(const std::string& /*name*/,
|
2018-11-09 20:17:34 +01:00
|
|
|
std::unique_ptr<Directory>* /*result*/) override {
|
2014-01-27 20:02:21 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status FileExists(const std::string& /*fname*/) override {
|
2015-07-21 02:20:40 +02:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status GetChildren(const std::string& /*path*/,
|
|
|
|
std::vector<std::string>* /*result*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status DeleteFile(const std::string& /*fname*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status CreateDir(const std::string& /*name*/) override {
|
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status CreateDirIfMissing(const std::string& /*name*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-11-26 22:56:45 +01:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status DeleteDir(const std::string& /*name*/) override {
|
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status GetFileSize(const std::string& /*fname*/,
|
|
|
|
uint64_t* /*size*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status GetFileModificationTime(const std::string& /*fname*/,
|
|
|
|
uint64_t* /*time*/) override {
|
2012-11-26 22:56:45 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status RenameFile(const std::string& /*src*/,
|
|
|
|
const std::string& /*target*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status LinkFile(const std::string& /*src*/,
|
|
|
|
const std::string& /*target*/) override {
|
2014-11-14 20:38:26 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status LockFile(const std::string& /*fname*/,
|
|
|
|
FileLock** /*lock*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status UnlockFile(FileLock* /*lock*/) override { return notsup; }
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status NewLogger(const std::string& /*fname*/,
|
2018-11-09 20:17:34 +01:00
|
|
|
std::shared_ptr<Logger>* /*result*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual void Schedule(void (* /*function*/)(void* arg), void* /*arg*/,
|
|
|
|
Priority /*pri*/ = LOW, void* /*tag*/ = nullptr,
|
|
|
|
void (* /*unschedFunction*/)(void* arg) = 0) override {}
|
2015-03-17 02:49:14 +01:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual int UnSchedule(void* /*tag*/, Priority /*pri*/) override { return 0; }
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual void StartThread(void (* /*function*/)(void* arg),
|
|
|
|
void* /*arg*/) override {}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void WaitForJoin() override {}
|
2014-02-26 02:47:37 +01:00
|
|
|
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual unsigned int GetThreadPoolQueueLen(
|
2018-03-05 22:08:17 +01:00
|
|
|
Priority /*pri*/ = LOW) const override {
|
2014-03-11 00:14:48 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status GetTestDirectory(std::string* /*path*/) override {
|
|
|
|
return notsup;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual uint64_t NowMicros() override { return 0; }
|
2012-06-08 10:11:14 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual void SleepForMicroseconds(int /*micros*/) override {}
|
2012-08-15 00:20:36 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status GetHostName(char* /*name*/, uint64_t /*len*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-08-15 00:20:36 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status GetCurrentTime(int64_t* /*unix_time*/) override {
|
|
|
|
return notsup;
|
|
|
|
}
|
2012-08-15 00:20:36 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual Status GetAbsolutePath(const std::string& /*db_path*/,
|
|
|
|
std::string* /*outputpath*/) override {
|
2015-02-26 20:28:41 +01:00
|
|
|
return notsup;
|
|
|
|
}
|
2012-09-20 00:21:09 +02:00
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual void SetBackgroundThreads(int /*number*/,
|
|
|
|
Priority /*pri*/ = LOW) override {}
|
|
|
|
virtual int GetBackgroundThreads(Priority /*pri*/ = LOW) override {
|
|
|
|
return 0;
|
2015-02-26 20:28:41 +01:00
|
|
|
}
|
2018-03-05 22:08:17 +01:00
|
|
|
virtual void IncBackgroundThreadsIfNeeded(int /*number*/,
|
|
|
|
Priority /*pri*/) override {}
|
|
|
|
virtual std::string TimeToString(uint64_t /*number*/) override { return ""; }
|
2015-06-11 23:18:02 +02:00
|
|
|
|
|
|
|
virtual uint64_t GetThreadID() const override {
|
|
|
|
return 0;
|
|
|
|
}
|
2012-06-08 10:11:14 +02:00
|
|
|
};
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2012-06-08 10:11:14 +02:00
|
|
|
|
|
|
|
#endif // USE_HDFS
|