ClickHouse/src/Storages/System/StorageSystemFilesystemCache.cpp

63 lines
2.3 KiB
C++
Raw Normal View History

2022-03-30 09:54:42 +00:00
#include "StorageSystemFilesystemCache.h"
#include <DataTypes/DataTypeString.h>
#include <DataTypes/DataTypesNumber.h>
#include <DataTypes/DataTypeTuple.h>
#include <Common/FileCache.h>
#include <Common/FileCacheFactory.h>
#include <Interpreters/Context.h>
#include <Disks/IDisk.h>
namespace DB
{
2022-03-30 09:54:42 +00:00
NamesAndTypesList StorageSystemFilesystemCache::getNamesAndTypes()
{
return {
{"cache_base_path", std::make_shared<DataTypeString>()},
{"cache_path", std::make_shared<DataTypeString>()},
2022-03-24 14:32:08 +00:00
{"file_segment_range_begin", std::make_shared<DataTypeUInt64>()},
{"file_segment_range_end", std::make_shared<DataTypeUInt64>()},
{"size", std::make_shared<DataTypeUInt64>()},
2022-03-23 14:35:15 +00:00
{"state", std::make_shared<DataTypeString>()},
{"cache_hits", std::make_shared<DataTypeUInt64>()},
2022-03-24 14:32:08 +00:00
{"references", std::make_shared<DataTypeUInt64>()},
2022-04-07 16:46:46 +00:00
{"downloaded_size", std::make_shared<DataTypeUInt64>()},
{"persistent", std::make_shared<DataTypeNumber<UInt8>>()}
};
}
2022-03-30 09:54:42 +00:00
StorageSystemFilesystemCache::StorageSystemFilesystemCache(const StorageID & table_id_)
: IStorageSystemOneBlock(table_id_)
{
}
2022-03-30 09:54:42 +00:00
void StorageSystemFilesystemCache::fillData(MutableColumns & res_columns, ContextPtr, const SelectQueryInfo &) const
{
auto caches = FileCacheFactory::instance().getAll();
2022-03-21 13:56:38 +00:00
for (const auto & [cache_base_path, cache_data] : caches)
{
2022-03-25 17:31:15 +00:00
const auto & cache = cache_data.cache;
2022-04-07 16:46:46 +00:00
auto file_segments = cache->getSnapshot();
2022-03-21 13:56:38 +00:00
2022-04-07 16:46:46 +00:00
for (const auto & file_segment : file_segments)
{
res_columns[0]->insert(cache_base_path);
res_columns[1]->insert(cache->getPathInLocalCache(file_segment->key(), file_segment->offset(), file_segment->isPersistent()));
const auto & range = file_segment->range();
2022-03-24 14:32:08 +00:00
res_columns[2]->insert(range.left);
res_columns[3]->insert(range.right);
res_columns[4]->insert(range.size());
res_columns[5]->insert(FileSegment::stateToString(file_segment->state()));
2022-04-07 16:46:46 +00:00
res_columns[6]->insert(file_segment->getHitsCount());
res_columns[7]->insert(file_segment->getRefCount());
res_columns[8]->insert(file_segment->getDownloadedSize());
res_columns[9]->insert(file_segment->isPersistent());
}
}
}
}