mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
33 lines
780 B
C++
33 lines
780 B
C++
#pragma once
|
|
|
|
#include <Common/Throttler_fwd.h>
|
|
#include <IO/ResourceLink.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Settings to be passed to IDisk::writeFile()
|
|
struct WriteSettings
|
|
{
|
|
/// Bandwidth throttler to use during writing
|
|
ThrottlerPtr remote_throttler;
|
|
ThrottlerPtr local_throttler;
|
|
|
|
// Resource to be used during reading
|
|
ResourceLink resource_link;
|
|
|
|
/// Filesystem cache settings
|
|
bool enable_filesystem_cache_on_write_operations = false;
|
|
bool enable_filesystem_cache_log = false;
|
|
bool throw_on_error_from_cache = false;
|
|
|
|
bool s3_allow_parallel_part_upload = true;
|
|
|
|
/// Monitoring
|
|
bool for_object_storage = false; // to choose which profile events should be incremented
|
|
|
|
bool operator==(const WriteSettings & other) const = default;
|
|
};
|
|
|
|
}
|