mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
117 lines
3.3 KiB
C++
117 lines
3.3 KiB
C++
#pragma once
|
|
#include <Core/Types.h>
|
|
#include <Core/QualifiedTableName.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
#include <Interpreters/Context_fwd.h>
|
|
#include <Common/ThreadPool.h>
|
|
#include <Common/Stopwatch.h>
|
|
#include <map>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <mutex>
|
|
|
|
namespace Poco
|
|
{
|
|
class Logger;
|
|
}
|
|
|
|
class AtomicStopwatch;
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void logAboutProgress(Poco::Logger * log, size_t processed, size_t total, AtomicStopwatch & watch);
|
|
|
|
|
|
class IDatabase;
|
|
using DatabasePtr = std::shared_ptr<IDatabase>;
|
|
|
|
struct ParsedTableMetadata
|
|
{
|
|
String path;
|
|
ASTPtr ast;
|
|
};
|
|
|
|
using ParsedMetadata = std::map<QualifiedTableName, ParsedTableMetadata>;
|
|
using TableNames = std::vector<QualifiedTableName>;
|
|
using TableNamesSet = std::unordered_set<QualifiedTableName>;
|
|
|
|
struct DependenciesInfo
|
|
{
|
|
/// Set of dependencies
|
|
TableNamesSet dependencies;
|
|
/// Set of tables/dictionaries which depend on this table/dictionary
|
|
TableNamesSet dependent_database_objects;
|
|
};
|
|
|
|
using DependenciesInfos = std::unordered_map<QualifiedTableName, DependenciesInfo>;
|
|
using DependenciesInfosIter = std::unordered_map<QualifiedTableName, DependenciesInfo>::iterator;
|
|
|
|
void mergeDependenciesGraphs(DependenciesInfos & main_dependencies_info, const DependenciesInfos & additional_info);
|
|
|
|
struct ParsedTablesMetadata
|
|
{
|
|
String default_database;
|
|
|
|
std::mutex mutex;
|
|
ParsedMetadata parsed_tables;
|
|
|
|
/// For logging
|
|
size_t total_dictionaries = 0;
|
|
|
|
/// List of tables/dictionaries that do not have any dependencies and can be loaded
|
|
TableNames independent_database_objects;
|
|
|
|
/// Adjacent list of dependency graph, contains two maps
|
|
/// 2. table/dictionary name -> dependent tables/dictionaries list (adjacency list of dependencies graph).
|
|
/// 1. table/dictionary name -> dependencies of table/dictionary (adjacency list of inverted dependencies graph)
|
|
/// If table A depends on table B, then there is an edge B --> A, i.e. dependencies_info[B].dependent_database_objects contains A
|
|
/// and dependencies_info[A].dependencies contain B.
|
|
/// We need inverted graph to effectively maintain it on DDL queries that can modify the graph.
|
|
DependenciesInfos dependencies_info;
|
|
};
|
|
|
|
/// Loads tables (and dictionaries) from specified databases
|
|
/// taking into account dependencies between them.
|
|
class TablesLoader
|
|
{
|
|
public:
|
|
using Databases = std::map<String, DatabasePtr>;
|
|
|
|
TablesLoader(ContextMutablePtr global_context_, Databases databases_, bool force_restore_ = false, bool force_attach_ = false);
|
|
TablesLoader() = delete;
|
|
|
|
void loadTables();
|
|
void startupTables();
|
|
|
|
private:
|
|
ContextMutablePtr global_context;
|
|
Databases databases;
|
|
bool force_restore;
|
|
bool force_attach;
|
|
|
|
Strings databases_to_load;
|
|
ParsedTablesMetadata metadata;
|
|
Poco::Logger * log;
|
|
std::atomic<size_t> tables_processed{0};
|
|
AtomicStopwatch stopwatch;
|
|
|
|
ThreadPool pool;
|
|
|
|
void removeUnresolvableDependencies(bool remove_loaded);
|
|
|
|
void loadTablesInTopologicalOrder(ThreadPool & pool);
|
|
|
|
DependenciesInfosIter removeResolvedDependency(const DependenciesInfosIter & info_it, TableNames & independent_database_objects);
|
|
|
|
void startLoadingIndependentTables(ThreadPool & pool, size_t level);
|
|
|
|
void checkCyclicDependencies() const;
|
|
|
|
size_t getNumberOfTablesWithDependencies() const;
|
|
|
|
void logDependencyGraph() const;
|
|
};
|
|
|
|
}
|