mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
125 lines
4.7 KiB
C++
125 lines
4.7 KiB
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <optional>
|
|
#include <vector>
|
|
#include <base/types.h>
|
|
#include <Interpreters/Context_fwd.h>
|
|
#include <Common/Throttler_fwd.h>
|
|
|
|
#include <IO/S3Common.h>
|
|
|
|
namespace Poco::Util
|
|
{
|
|
class AbstractConfiguration;
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct Settings;
|
|
class NamedCollection;
|
|
|
|
struct S3Settings
|
|
{
|
|
struct RequestSettings
|
|
{
|
|
struct PartUploadSettings
|
|
{
|
|
size_t min_upload_part_size = 16 * 1024 * 1024;
|
|
size_t max_upload_part_size = 5ULL * 1024 * 1024 * 1024;
|
|
size_t upload_part_size_multiply_factor = 2;
|
|
size_t upload_part_size_multiply_parts_count_threshold = 500;
|
|
size_t max_part_number = 10000;
|
|
size_t max_single_part_upload_size = 32 * 1024 * 1024;
|
|
size_t max_single_operation_copy_size = 5ULL * 1024 * 1024 * 1024;
|
|
String storage_class_name;
|
|
|
|
void updateFromSettings(const Settings & settings) { updateFromSettingsImpl(settings, true); }
|
|
void validate();
|
|
|
|
private:
|
|
PartUploadSettings() = default;
|
|
explicit PartUploadSettings(const Settings & settings);
|
|
explicit PartUploadSettings(const NamedCollection & collection);
|
|
PartUploadSettings(
|
|
const Poco::Util::AbstractConfiguration & config,
|
|
const String & config_prefix,
|
|
const Settings & settings,
|
|
String setting_name_prefix = {});
|
|
|
|
void updateFromSettingsImpl(const Settings & settings, bool if_changed);
|
|
|
|
friend struct RequestSettings;
|
|
};
|
|
|
|
private:
|
|
PartUploadSettings upload_settings = {};
|
|
|
|
public:
|
|
size_t max_single_read_retries = 4;
|
|
size_t max_connections = 1024;
|
|
bool check_objects_after_upload = false;
|
|
size_t max_unexpected_write_error_retries = 4;
|
|
size_t list_object_keys_size = 1000;
|
|
ThrottlerPtr get_request_throttler;
|
|
ThrottlerPtr put_request_throttler;
|
|
|
|
/// If this is set to false then `S3::getObjectSize()` will use `GetObjectAttributes` request instead of `HeadObject`.
|
|
/// Details: `HeadObject` request never returns a response body (even if there is an error) however
|
|
/// if the request was sent without specifying a region in the endpoint (i.e. for example "https://test.s3.amazonaws.com/mydata.csv"
|
|
/// instead of "https://test.s3-us-west-2.amazonaws.com/mydata.csv") then that response body is one of the main ways to determine
|
|
/// the correct region and try to repeat the request again with the correct region.
|
|
/// For any other request type (`GetObject`, `ListObjects`, etc.) AWS SDK does that because they have response bodies, but for `HeadObject`
|
|
/// there is no response body so this way doesn't work. That's why it's better to use `GetObjectAttributes` requests sometimes.
|
|
/// See https://github.com/aws/aws-sdk-cpp/issues/1558 and also the function S3ErrorMarshaller::ExtractRegion() for more information.
|
|
bool allow_head_object_request = true;
|
|
|
|
bool throw_on_zero_files_match = false;
|
|
|
|
const PartUploadSettings & getUploadSettings() const { return upload_settings; }
|
|
|
|
RequestSettings() = default;
|
|
explicit RequestSettings(const Settings & settings);
|
|
explicit RequestSettings(const NamedCollection & collection);
|
|
|
|
/// What's the setting_name_prefix, and why do we need it?
|
|
/// There are (at least) two config sections where s3 settings can be specified:
|
|
/// * settings for s3 disk (clickhouse/storage_configuration/disks)
|
|
/// * settings for s3 storage (clickhouse/s3), which are also used for backups
|
|
/// Even though settings are the same, in case of s3 disk they are prefixed with "s3_"
|
|
/// ("s3_max_single_part_upload_size"), but in case of s3 storage they are not
|
|
/// ( "max_single_part_upload_size"). Why this happened is a complete mystery to me.
|
|
RequestSettings(
|
|
const Poco::Util::AbstractConfiguration & config,
|
|
const String & config_prefix,
|
|
const Settings & settings,
|
|
String setting_name_prefix = {});
|
|
|
|
void updateFromSettings(const Settings & settings);
|
|
|
|
private:
|
|
void updateFromSettingsImpl(const Settings & settings, bool if_changed);
|
|
};
|
|
|
|
S3::AuthSettings auth_settings;
|
|
RequestSettings request_settings;
|
|
};
|
|
|
|
/// Settings for the StorageS3.
|
|
class StorageS3Settings
|
|
{
|
|
public:
|
|
void loadFromConfig(const String & config_elem, const Poco::Util::AbstractConfiguration & config, const Settings & settings);
|
|
|
|
S3Settings getSettings(const String & endpoint) const;
|
|
|
|
private:
|
|
mutable std::mutex mutex;
|
|
std::map<const String, const S3Settings> s3_settings;
|
|
};
|
|
|
|
}
|