ClickHouse/dbms/src/Databases/DatabaseAtomic.cpp

202 lines
7.1 KiB
C++
Raw Normal View History

2019-10-23 13:46:38 +00:00
#include <Databases/DatabaseAtomic.h>
2019-10-30 12:17:52 +00:00
#include <Databases/DatabaseOnDisk.h>
2019-11-11 11:34:03 +00:00
#include <Poco/File.h>
#include <IO/ReadHelpers.h>
#include <IO/WriteHelpers.h>
2020-01-23 19:10:09 +00:00
#include <Common/Stopwatch.h>
2020-01-27 20:31:39 +00:00
#include <Parsers/formatAST.h>
2020-03-23 00:12:13 +00:00
#include <Common/rename.h>
2019-10-23 13:46:38 +00:00
namespace DB
{
2019-11-11 11:34:03 +00:00
namespace ErrorCodes
{
extern const int UNKNOWN_TABLE;
extern const int TABLE_ALREADY_EXISTS;
2019-11-11 14:28:28 +00:00
extern const int FILE_DOESNT_EXIST;
2020-03-23 00:12:13 +00:00
extern const int CANNOT_ASSIGN_ALTER;
2019-11-11 11:34:03 +00:00
}
2019-10-23 13:46:38 +00:00
2020-01-22 11:30:11 +00:00
DatabaseAtomic::DatabaseAtomic(String name_, String metadata_path_, Context & context_)
2019-10-23 13:46:38 +00:00
: DatabaseOrdinary(name_, metadata_path_, context_)
{
2019-11-11 11:34:03 +00:00
data_path = "store/";
2020-03-19 21:14:52 +00:00
log = &Logger::get("DatabaseAtomic (" + name_ + ")");
2019-11-11 11:34:03 +00:00
}
String DatabaseAtomic::getTableDataPath(const String & table_name) const
2019-11-11 11:34:03 +00:00
{
2019-12-02 19:11:18 +00:00
std::lock_guard lock(mutex);
2019-11-11 11:34:03 +00:00
auto it = table_name_to_path.find(table_name);
if (it == table_name_to_path.end())
throw Exception("Table " + table_name + " not found in database " + getDatabaseName(), ErrorCodes::UNKNOWN_TABLE);
2020-01-16 18:13:18 +00:00
assert(it->second != data_path && !it->second.empty());
return it->second;
2019-11-11 11:34:03 +00:00
}
String DatabaseAtomic::getTableDataPath(const ASTCreateQuery & query) const
2019-11-11 11:34:03 +00:00
{
2020-03-19 21:14:52 +00:00
auto tmp = data_path + getPathForUUID(query.uuid);
2020-01-16 18:13:18 +00:00
assert(tmp != data_path && !tmp.empty());
return tmp;
2019-11-11 11:34:03 +00:00
}
void DatabaseAtomic::drop(const Context &)
{
2020-01-27 20:31:39 +00:00
Poco::File(getMetadataPath()).remove(true);
2019-11-11 11:34:03 +00:00
}
void DatabaseAtomic::attachTable(const String & name, const StoragePtr & table, const String & relative_table_path)
{
2020-01-16 18:13:18 +00:00
assert(relative_table_path != data_path && !relative_table_path.empty());
2019-11-11 11:34:03 +00:00
std::lock_guard lock(mutex);
assertDetachedTableNotInUse(table->getStorageID().uuid);
2020-03-23 00:12:13 +00:00
DatabaseWithDictionaries::attachTableUnlocked(name, table, relative_table_path);
2019-12-02 19:11:18 +00:00
table_name_to_path.emplace(std::make_pair(name, relative_table_path));
2019-10-23 13:46:38 +00:00
}
2019-11-11 11:34:03 +00:00
StoragePtr DatabaseAtomic::detachTable(const String & name)
{
2020-03-23 00:12:13 +00:00
std::lock_guard lock(mutex);
auto table = DatabaseWithDictionaries::detachTableUnlocked(name);
table_name_to_path.erase(name);
detached_tables.emplace(table->getStorageID().uuid, table);
2020-03-23 00:12:13 +00:00
return table;
2019-11-11 11:34:03 +00:00
}
2019-10-23 13:46:38 +00:00
2020-03-20 00:07:52 +00:00
void DatabaseAtomic::dropTable(const Context &, const String & table_name, bool no_delay)
2020-01-22 11:30:11 +00:00
{
String table_metadata_path = getObjectMetadataPath(table_name);
2020-03-23 00:12:13 +00:00
String table_metadata_path_drop;
StoragePtr table;
{
std::lock_guard lock(mutex);
table = getTableUnlocked(table_name);
table_metadata_path_drop = DatabaseCatalog::instance().getPathForDroppedMetadata(table->getStorageID());
Poco::File(table_metadata_path).renameTo(table_metadata_path_drop);
DatabaseWithDictionaries::detachTableUnlocked(table_name); /// Should never throw
table_name_to_path.erase(table_name);
}
2020-03-20 00:07:52 +00:00
DatabaseCatalog::instance().enqueueDroppedTableCleanup(table->getStorageID(), table, table_metadata_path_drop, no_delay);
2020-01-22 11:30:11 +00:00
}
2019-11-11 14:28:28 +00:00
void DatabaseAtomic::renameTable(const Context & context, const String & table_name, IDatabase & to_database,
2019-12-02 19:11:18 +00:00
const String & to_table_name)
2019-11-11 14:28:28 +00:00
{
if (typeid(*this) != typeid(to_database))
2019-12-02 19:11:18 +00:00
{
if (!typeid_cast<DatabaseOrdinary *>(&to_database))
throw Exception("Moving tables between databases of different engines is not supported", ErrorCodes::NOT_IMPLEMENTED);
/// Allow moving tables from Atomic to Ordinary (with table lock)
DatabaseOnDisk::renameTable(context, table_name, to_database, to_table_name);
return;
}
2019-11-11 14:28:28 +00:00
StoragePtr table = tryGetTable(context, table_name);
if (!table)
throw Exception("Table " + backQuote(getDatabaseName()) + "." + backQuote(table_name) + " doesn't exist.", ErrorCodes::UNKNOWN_TABLE);
2020-03-23 00:12:13 +00:00
String old_metadata_path = getObjectMetadataPath(table_name);
2020-03-23 22:40:40 +00:00
String new_metadata_path = to_database.getObjectMetadataPath(to_table_name);
2019-11-11 14:28:28 +00:00
2020-03-23 00:12:13 +00:00
if (this == &to_database)
{
std::lock_guard lock(mutex);
renameNoReplace(old_metadata_path, new_metadata_path);
auto table_data_path = table_name_to_path.find(table_name)->second;
tables.erase(table_name);
table_name_to_path.erase(table_name);
table->renameInMemory(to_database.getDatabaseName(), to_table_name);
tables.emplace(to_table_name, table);
table_name_to_path.emplace(to_table_name, table_data_path);
}
else
{
String table_data_path;
{
std::lock_guard lock(mutex);
renameNoReplace(old_metadata_path, new_metadata_path);
table_data_path = table_name_to_path.find(table_name)->second;
tables.erase(table_name);
table_name_to_path.erase(table_name);
DatabaseCatalog::instance().updateUUIDMapping(table->getStorageID().uuid, to_database.shared_from_this(), table);
}
table->renameInMemory(to_database.getDatabaseName(), to_table_name);
auto & to_atomic_db = dynamic_cast<DatabaseAtomic &>(to_database);
std::lock_guard lock(to_atomic_db.mutex);
to_atomic_db.tables.emplace(to_table_name, table);
to_atomic_db.table_name_to_path.emplace(to_table_name, table_data_path);
}
2019-11-11 14:28:28 +00:00
}
2020-01-22 11:30:11 +00:00
void DatabaseAtomic::loadStoredObjects(Context & context, bool has_force_restore_data_flag)
{
DatabaseOrdinary::loadStoredObjects(context, has_force_restore_data_flag);
}
void DatabaseAtomic::shutdown()
{
2020-01-22 11:30:11 +00:00
DatabaseWithDictionaries::shutdown();
}
2020-03-23 00:12:13 +00:00
void DatabaseAtomic::commitCreateTable(const ASTCreateQuery & query, const StoragePtr & table,
const String & table_metadata_tmp_path, const String & table_metadata_path)
{
auto table_data_path = getTableDataPath(query);
try
{
std::lock_guard lock{mutex};
assertDetachedTableNotInUse(query.uuid);
2020-03-23 00:12:13 +00:00
renameNoReplace(table_metadata_tmp_path, table_metadata_path);
attachTableUnlocked(query.table, table, table_data_path); /// Should never throw
table_name_to_path.emplace(query.table, table_data_path);
}
catch (...)
{
Poco::File(table_metadata_tmp_path).remove();
throw;
}
}
void DatabaseAtomic::commitAlterTable(const StorageID & table_id, const String & table_metadata_tmp_path, const String & table_metadata_path)
{
SCOPE_EXIT({ Poco::File(table_metadata_tmp_path).remove(); });
std::lock_guard lock{mutex};
auto actual_table_id = getTableUnlocked(table_id.table_name)->getStorageID();
if (table_id.uuid != actual_table_id.uuid)
throw Exception("Cannot alter table because it was renamed", ErrorCodes::CANNOT_ASSIGN_ALTER);
renameExchange(table_metadata_tmp_path, table_metadata_path);
}
void DatabaseAtomic::assertDetachedTableNotInUse(const UUID & uuid)
{
cleenupDetachedTables();
if (detached_tables.count(uuid))
throw Exception("Cannot attach table with UUID " + toString(uuid) +
", because it was detached but still used by come query. Retry later.", ErrorCodes::TABLE_ALREADY_EXISTS);
}
void DatabaseAtomic::cleenupDetachedTables()
{
auto it = detached_tables.begin();
while (it != detached_tables.end())
{
if (it->second.unique())
it = detached_tables.erase(it);
else
++it;
}
}
2019-10-23 13:46:38 +00:00
}