mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
Fetch fix. Style fix
This commit is contained in:
parent
756f991a2a
commit
f504c21229
@ -112,7 +112,7 @@ void Service::processQuery(const Poco::Net::HTMLForm & params, ReadBuffer & /*bo
|
||||
for (const auto &it : checksums.files)
|
||||
{
|
||||
String file_name = it.first;
|
||||
String path = part->getFullPath() + part_name + "/" + file_name;
|
||||
String path = part->getFullPath() + file_name;
|
||||
all_part_files_size += Poco::File(path).getSize();
|
||||
}
|
||||
writeBinary(all_part_files_size, out);
|
||||
@ -124,7 +124,7 @@ void Service::processQuery(const Poco::Net::HTMLForm & params, ReadBuffer & /*bo
|
||||
{
|
||||
String file_name = it.first;
|
||||
|
||||
String path = part->getFullPath() + part_name + "/" + file_name;
|
||||
String path = part->getFullPath() + file_name;
|
||||
|
||||
UInt64 size = Poco::File(path).getSize();
|
||||
|
||||
|
@ -122,10 +122,9 @@ Schema::Volume::Volume(const Poco::Util::AbstractConfiguration & config, const s
|
||||
{
|
||||
max_data_part_size = std::numeric_limits<UInt64>::max();
|
||||
}
|
||||
constexpr UInt64 SIZE_8MB = 1ull << 23;
|
||||
if (max_data_part_size < SIZE_8MB) {
|
||||
constexpr UInt64 SIZE_8MB = 8ull << 20u;
|
||||
if (max_data_part_size < SIZE_8MB)
|
||||
LOG_WARNING(logger, "Volume max_data_part_size is too low (" << max_data_part_size << " < " << SIZE_8MB << ")");
|
||||
}
|
||||
}
|
||||
|
||||
DiskSpaceMonitor::ReservationPtr Schema::Volume::reserve(UInt64 expected_size) const
|
||||
|
@ -169,7 +169,8 @@ public:
|
||||
: size(size_), metric_increment(CurrentMetrics::DiskSpaceReservedForMerge, size), disk_ptr(std::move(disk_ptr_)) ///@TODO_IGR ASK DiskSpaceReservedForMerge?
|
||||
{
|
||||
/// Just make reservation if size is 0
|
||||
if (size == 0) {
|
||||
if (size == 0)
|
||||
{
|
||||
std::lock_guard lock(DiskSpaceMonitor::mutex);
|
||||
reserves = &DiskSpaceMonitor::reserved[disk_ptr->getName()];
|
||||
++reserves->reservation_count;
|
||||
|
Loading…
Reference in New Issue
Block a user