Initial commit

This commit is contained in:
dev
2025-02-27 21:53:53 +08:00
commit 815e55e4c0
1291 changed files with 185445 additions and 0 deletions

View File

@@ -0,0 +1,96 @@
#include <array>
#include <cerrno>
#include <fcntl.h>
#include <fmt/core.h>
#include <folly/FileUtil.h>
#include <folly/Random.h>
#include <folly/ScopeGuard.h>
#include <folly/executors/CPUThreadPoolExecutor.h>
#include <folly/hash/Checksum.h>
#include <folly/json.h>
#include <folly/logging/LogConfigParser.h>
#include <folly/logging/Logger.h>
#include <folly/logging/LoggerDB.h>
#include <folly/logging/xlog.h>
#include <gtest/gtest.h>
#include <string_view>
#include <sys/stat.h>
#include <unistd.h>
#include <vector>
#include "common/logging/FileHandlerFactory.h"
#include "common/utils/MagicEnum.hpp"
#include "common/utils/Uuid.h"
#include "fbs/meta/Common.h"
#include "meta/event/Event.h"
#include "tests/GtestHelpers.h"
namespace hf3fs::meta::server {
using flat::UserInfo;
static void logRandomEvent(Event::Type type) {
auto parent = InodeId(folly::Random::rand64());
auto name = fmt::format("path-{}", Uuid::random());
auto inode = InodeId(folly::Random::rand64());
auto user = folly::Random::rand32();
Event(type).addField("parent", parent).addField("name", name).addField("inode", inode).addField("user", user).log();
}
static void checkEventLog(std::string_view path, size_t expected) {
auto fd = open(path.data(), O_RDONLY);
ASSERT_GE(fd, 0) << errno;
std::string line;
std::ifstream file(path.data());
size_t actual = 0;
while (std::getline(file, line)) {
ASSERT_NO_THROW(folly::parseJson(line)) << "Failed to parse " << line;
actual++;
}
ASSERT_EQ(actual, expected);
}
TEST(TestEventLogger, Basic) {
auto config = folly::LoggerDB::get().getConfig();
SCOPE_EXIT { folly::LoggerDB::get().resetConfig(config); };
std::string path = "test-event-logger.log";
unlink(path.c_str());
folly::LoggerDB::get().resetConfig(folly::parseLogConfig(R"JSON({
"categories": {
".": { "level": "ERR", "handlers": ["stderr"] },
"eventlog": { "level": "INFO", "inherit": false, "propagate": "CRITICAL", "handlers": ["event"] },
"eventlog.CloseWrite": { "level": "FATAL", "inherit": false, "propagate": "CRITICAL", "handlers": ["event"] },
},
"handlers": {
"stderr": {
"type": "stream",
"options": { "stream": "stderr", "async": "false" }
},
"event": {
"type": "event",
"options": { "path": "test-event-logger.log", "async": "true" }
}
}
})JSON"));
SCOPE_EXIT {
struct stat st;
stat(path.c_str(), &st);
fmt::print("log file {}, st_size {}\n", path, st.st_size);
unlink(path.c_str());
};
size_t numEvents = 1000;
for (size_t i = 0; i < numEvents; i++) {
logRandomEvent(Event::Type::Create);
}
// shouldn't log here
for (size_t i = 0; i < 10; i++) {
logRandomEvent(Event::Type::CloseWrite);
}
sleep(1);
checkEventLog(path, numEvents);
}
} // namespace hf3fs::meta::server

View File

@@ -0,0 +1,273 @@
#include <atomic>
#include <chrono>
#include <cstdlib>
#include <double-conversion/utils.h>
#include <fmt/compile.h>
#include <fmt/core.h>
#include <folly/Random.h>
#include <folly/Synchronized.h>
#include <folly/concurrency/ConcurrentHashMap.h>
#include <folly/executors/CPUThreadPoolExecutor.h>
#include <folly/experimental/coro/BlockingWait.h>
#include <folly/experimental/coro/Collect.h>
#include <folly/experimental/coro/CurrentExecutor.h>
#include <folly/experimental/coro/GtestHelpers.h>
#include <folly/experimental/coro/Invoke.h>
#include <folly/futures/Future.h>
#include <folly/logging/xlog.h>
#include <gflags/gflags.h>
#include <gtest/gtest.h>
#include <map>
#include <optional>
#include <set>
#include <string>
#include <tuple>
#include <type_traits>
#include <variant>
#include <vector>
#include "common/kv/IKVEngine.h"
#include "common/kv/mem/MemKVEngine.h"
#include "common/utils/Coroutine.h"
#include "common/utils/Result.h"
#include "common/utils/UtcTime.h"
#include "fbs/mgmtd/ChainRef.h"
#include "fbs/mgmtd/MgmtdTypes.h"
#include "meta/event/Scan.h"
#include "meta/store/DirEntry.h"
#include "meta/store/Inode.h"
#include "meta/store/Utils.h"
#include "tests/GtestHelpers.h"
#include "tests/meta/MetaTestBase.h"
namespace hf3fs::meta::server {
using InodeMap = folly::ConcurrentHashMap<InodeId, Inode>;
using DirEntryMap = folly::ConcurrentHashMap<InodeId, DirEntry>;
template <typename KV>
class TestScan : public MetaTestBase<KV> {
protected:
template <typename Map>
void create(Map &map) {
folly::CPUThreadPoolExecutor exec(8);
std::vector<folly::SemiFuture<Void>> tasks;
for (size_t i = 0; i < 8; i++) {
auto task = folly::coro::co_invoke([&]() -> CoTask<void> {
for (size_t i = 0; i < (1 << 10); i++) {
READ_WRITE_TRANSACTION_OK({
if constexpr (std::is_same_v<Map, InodeMap>) {
auto &inodes = map;
for (size_t j = 0; j < folly::Random::rand32(8, 12); j++) {
auto inode = MetaTestHelper::randomInode();
CO_ASSERT_OK(co_await inode.store(*txn));
CO_ASSERT_TRUE(inodes.insert(inode.id, inode).second);
}
} else {
auto &entries = map;
for (size_t j = 0; j < 10; j++) {
auto entry = MetaTestHelper::randomDirEntry();
CO_ASSERT_OK(co_await entry.store(*txn));
CO_ASSERT_TRUE(entries.insert(entry.id, entry).second);
}
}
});
}
co_return;
});
tasks.push_back(std::move(task).scheduleOn(&exec).start());
}
folly::coro::collectAllRange(std::move(tasks)).semi().wait();
}
};
using KVTypes = ::testing::Types<mem::MemKV, fdb::DB>;
TYPED_TEST_SUITE(TestScan, KVTypes);
TYPED_TEST(TestScan, Inode) {
folly::ConcurrentHashMap<InodeId, Inode> allInodes;
// create some inodes
auto beginCreate = std::chrono::steady_clock::now();
this->create(allInodes);
auto beginScan = std::chrono::steady_clock::now();
MetaScan scan(MetaScan::Options(), this->kvEngine());
std::atomic_uint64_t scanned{0};
folly::ConcurrentHashMap<InodeId, Void> scannedInodes;
while (true) {
auto inodes = scan.getInodes();
if (inodes.empty()) {
break;
}
for (auto &inode : inodes) {
scanned.fetch_add(1);
ASSERT_EQ(inode, allInodes[inode.id]);
ASSERT_TRUE(scannedInodes.insert(inode.id, Void{}).second);
}
}
ASSERT_EQ(allInodes.size(), scanned.load());
ASSERT_EQ(scanned.load(), scannedInodes.size());
auto now = std::chrono::steady_clock::now();
fmt::print("create {}ms, scan {}ms, total {}\n",
std::chrono::duration_cast<std::chrono::milliseconds>(beginScan - beginCreate).count(),
std::chrono::duration_cast<std::chrono::milliseconds>(now - beginScan).count(),
scanned.load());
}
TYPED_TEST(TestScan, DirEntry) {
folly::ConcurrentHashMap<InodeId, DirEntry> allEntries;
// create some inodes
auto beginCreate = std::chrono::steady_clock::now();
this->create(allEntries);
auto beginScan = std::chrono::steady_clock::now();
MetaScan scan(MetaScan::Options(), this->kvEngine());
std::atomic_uint64_t scanned{0};
folly::ConcurrentHashMap<InodeId, DirEntry> scannedEntries;
while (true) {
auto entries = scan.getDirEntries();
if (entries.empty()) {
break;
}
for (auto &entry : entries) {
scanned.fetch_add(1);
ASSERT_EQ(entry, allEntries[entry.id]);
ASSERT_TRUE(scannedEntries.insert(entry.id, entry).second);
}
}
ASSERT_EQ(allEntries.size(), scanned.load());
ASSERT_EQ(scanned.load(), scannedEntries.size());
auto now = std::chrono::steady_clock::now();
fmt::print("create {}ms, scan {}ms, total {}\n",
std::chrono::duration_cast<std::chrono::milliseconds>(beginScan - beginCreate).count(),
std::chrono::duration_cast<std::chrono::milliseconds>(now - beginScan).count(),
scanned.load());
}
TYPED_TEST(TestScan, Exit) {
folly::ConcurrentHashMap<InodeId, DirEntry> allEntries;
this->create(allEntries);
// start scan but exit without consume all entries.
MetaScan scan(MetaScan::Options(), this->kvEngine());
auto entries = scan.getDirEntries();
ASSERT_FALSE(entries.empty());
}
DEFINE_string(fdb_cluster, "", "fdb cluster file path");
DEFINE_uint32(scan_threads, 4, "scan threads");
DEFINE_uint32(scan_coroutines, 8, "scan coroutines");
DEFINE_bool(scan_all, false, "scan all inodes and direntries");
DEFINE_bool(scan_check, false, "check parent exists");
TEST(TestScanFDB, DISABLED_FDB) {
MetaScan::Options options;
options.fdb_cluster_file = FLAGS_fdb_cluster;
options.threads = FLAGS_scan_threads;
options.coroutines = FLAGS_scan_coroutines;
MetaScan scan(options);
std::set<InodeId> directories;
std::set<InodeId> missing;
auto begin = SteadyClock::now();
size_t totalInodes = 0;
while (true) {
auto inodes = scan.getInodes();
totalInodes += inodes.size();
if (inodes.empty() || !FLAGS_scan_all) {
break;
}
if (FLAGS_scan_check) {
for (auto &inode : inodes) {
if (inode.isDirectory()) {
directories.insert(inode.id);
}
}
}
XLOGF(DBG, "MetaScan get {} inodes", inodes.size());
}
XLOGF(INFO,
"MetaScan scan Inode finished, duration {}, get {} inodes\n",
std::chrono::duration_cast<std::chrono::milliseconds>(SteadyClock::now() - begin),
totalInodes);
begin = SteadyClock::now();
size_t totalEntries = 0;
while (true) {
auto entries = scan.getDirEntries();
totalEntries += entries.size();
if (entries.empty() || !FLAGS_scan_all) {
break;
}
if (FLAGS_scan_check) {
for (auto &entry : entries) {
if (!directories.contains(entry.parent)) {
missing.insert(entry.parent);
}
}
}
XLOGF(DBG, "MetaScan get {} entries", entries.size());
}
XLOGF(INFO,
"MetaScan scan DirEntry finished, duration {}, get {} entries",
std::chrono::duration_cast<std::chrono::milliseconds>(SteadyClock::now() - begin),
totalEntries);
XLOGF_IF(WARNING, !missing.empty(), "Missing parent: {}", fmt::join(missing.begin(), missing.end(), ", "));
}
DEFINE_int64(inode_id, 0, "inode id");
TEST(TestScanFDB, DISABLED_PrintInode) {
MetaScan::Options options;
options.fdb_cluster_file = FLAGS_fdb_cluster;
options.threads = FLAGS_scan_threads;
options.coroutines = FLAGS_scan_coroutines;
MetaScan scan(options);
auto &kv = scan.kvEngine();
folly::coro::blockingWait([&]() -> CoTask<void> {
auto txn = kv.createReadonlyTransaction();
auto inodeId = InodeId(FLAGS_inode_id);
auto inode = co_await Inode::snapshotLoad(*txn, inodeId);
CO_ASSERT_OK(inode);
if (inode->has_value()) {
fmt::print("inode: {}\n", **inode);
} else {
fmt::print("inode {} doesn't exist!", inodeId);
}
fmt::print("============\n");
std::string prev;
while (true) {
auto txn = kv.createReadonlyTransaction();
auto entries = co_await DirEntryList::snapshotLoad(*txn, inodeId, prev, -1);
CO_ASSERT_OK(entries);
for (auto entry : entries->entries) {
auto inode = co_await Inode::snapshotLoad(*kv.createReadWriteTransaction(), entry.id);
CO_ASSERT_OK(inode);
fmt::print("entry: {} inode: {}\n", entry, inode->has_value() ? fmt::format("{}", **inode) : "");
prev = entry.name;
}
if (!entries->more) break;
}
fmt::print("============\n");
if (inode->has_value() && inode->value().isDirectory()) {
auto txn = kv.createReadonlyTransaction();
auto entry = co_await inode->value().snapshotLoadDirEntry(*txn);
CO_ASSERT_OK(entry);
fmt::print("entry points to {}: {}\n", inodeId, *entry);
}
}());
}
} // namespace hf3fs::meta::server