mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
d0397acafc
Sometimes credentials with which the backup had been done are inactive already, and ClickHouse will not be able to read the metadata file to continue and fail. Add a setting to allow ignoring credential from base_backup - `use_same_s3_credentials_for_base_backup` (default to true). And the same for RESTORE. Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <Backups/IBackup.h>
|
|
#include <Backups/BackupInfo.h>
|
|
#include <Core/Types.h>
|
|
#include <IO/ReadSettings.h>
|
|
#include <IO/WriteSettings.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
#include <boost/noncopyable.hpp>
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <unordered_map>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
class IBackupCoordination;
|
|
class Context;
|
|
using ContextPtr = std::shared_ptr<const Context>;
|
|
|
|
/// Factory for implementations of the IBackup interface.
|
|
class BackupFactory : boost::noncopyable
|
|
{
|
|
public:
|
|
using OpenMode = IBackup::OpenMode;
|
|
|
|
struct CreateParams
|
|
{
|
|
OpenMode open_mode = OpenMode::WRITE;
|
|
BackupInfo backup_info;
|
|
std::optional<BackupInfo> base_backup_info;
|
|
String compression_method;
|
|
int compression_level = -1;
|
|
String password;
|
|
String s3_storage_class;
|
|
ContextPtr context;
|
|
bool is_internal_backup = false;
|
|
std::shared_ptr<IBackupCoordination> backup_coordination;
|
|
std::optional<UUID> backup_uuid;
|
|
bool deduplicate_files = true;
|
|
bool allow_s3_native_copy = true;
|
|
bool use_same_s3_credentials_for_base_backup = false;
|
|
ReadSettings read_settings;
|
|
WriteSettings write_settings;
|
|
};
|
|
|
|
static BackupFactory & instance();
|
|
|
|
/// Creates a new backup or opens it.
|
|
BackupMutablePtr createBackup(const CreateParams & params) const;
|
|
|
|
using CreatorFn = std::function<BackupMutablePtr(const CreateParams & params)>;
|
|
void registerBackupEngine(const String & engine_name, const CreatorFn & creator_fn);
|
|
|
|
private:
|
|
BackupFactory();
|
|
|
|
std::unordered_map<String, CreatorFn> creators;
|
|
};
|
|
|
|
}
|