2022-03-21 08:52:48 +00:00
|
|
|
#pragma once
|
2022-03-14 18:40:53 +00:00
|
|
|
|
2022-07-11 12:59:39 +00:00
|
|
|
#include <Common/Throttler_fwd.h>
|
|
|
|
|
2022-03-14 18:40:53 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2022-04-07 16:46:46 +00:00
|
|
|
/// Settings to be passed to IDisk::writeFile()
|
2022-03-14 18:40:53 +00:00
|
|
|
struct WriteSettings
|
|
|
|
{
|
2022-07-11 12:59:39 +00:00
|
|
|
/// Bandwidth throttler to use during writing
|
2022-07-14 15:33:22 +00:00
|
|
|
ThrottlerPtr remote_throttler;
|
2022-07-16 20:49:15 +00:00
|
|
|
|
|
|
|
/// Filesystem cache settings
|
2022-03-30 11:47:44 +00:00
|
|
|
bool enable_filesystem_cache_on_write_operations = false;
|
2022-05-14 12:26:04 +00:00
|
|
|
bool enable_filesystem_cache_log = false;
|
2022-06-10 10:33:29 +00:00
|
|
|
bool is_file_cache_persistent = false;
|
2022-09-19 18:10:47 +00:00
|
|
|
|
|
|
|
/// Monitoring
|
|
|
|
bool for_object_storage = false; // to choose which profile events should be incremented
|
2022-03-14 18:40:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|