ClickHouse/src/IO/WriteBufferFromFileDescriptor.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

179 lines
4.9 KiB
C++
Raw Normal View History

2020-02-17 14:27:09 +00:00
#include <unistd.h>
#include <cerrno>
#include <cassert>
2020-07-07 11:45:20 +00:00
#include <sys/stat.h>
2016-10-25 06:49:24 +00:00
#include <Common/Throttler.h>
#include <Common/Exception.h>
#include <Common/ProfileEvents.h>
#include <Common/CurrentMetrics.h>
2019-02-10 17:40:52 +00:00
#include <Common/Stopwatch.h>
2016-10-25 06:49:24 +00:00
#include <IO/WriteBufferFromFileDescriptor.h>
#include <IO/WriteHelpers.h>
2016-10-25 06:49:24 +00:00
namespace ProfileEvents
{
extern const Event WriteBufferFromFileDescriptorWrite;
extern const Event WriteBufferFromFileDescriptorWriteFailed;
2016-10-25 06:49:24 +00:00
extern const Event WriteBufferFromFileDescriptorWriteBytes;
extern const Event DiskWriteElapsedMicroseconds;
extern const Event FileSync;
extern const Event FileSyncElapsedMicroseconds;
extern const Event LocalWriteThrottlerBytes;
extern const Event LocalWriteThrottlerSleepMicroseconds;
2016-10-25 06:49:24 +00:00
}
namespace CurrentMetrics
{
extern const Metric Write;
}
namespace DB
{
namespace ErrorCodes
{
extern const int CANNOT_WRITE_TO_FILE_DESCRIPTOR;
extern const int CANNOT_FSYNC;
extern const int CANNOT_SEEK_THROUGH_FILE;
extern const int CANNOT_TRUNCATE_FILE;
2020-07-07 11:45:20 +00:00
extern const int CANNOT_FSTAT;
2016-10-25 06:49:24 +00:00
}
void WriteBufferFromFileDescriptor::nextImpl()
{
if (!offset())
return;
Stopwatch watch;
2016-10-25 06:49:24 +00:00
size_t bytes_written = 0;
while (bytes_written != offset())
{
ProfileEvents::increment(ProfileEvents::WriteBufferFromFileDescriptorWrite);
2016-10-25 06:49:24 +00:00
ssize_t res = 0;
{
CurrentMetrics::Increment metric_increment{CurrentMetrics::Write};
res = ::write(fd, working_buffer.begin() + bytes_written, offset() - bytes_written);
}
2016-10-25 06:49:24 +00:00
if ((-1 == res || 0 == res) && errno != EINTR)
{
ProfileEvents::increment(ProfileEvents::WriteBufferFromFileDescriptorWriteFailed);
/// Don't use getFileName() here because this method can be called from destructor
2021-09-06 10:35:37 +00:00
String error_file_name = file_name;
if (error_file_name.empty())
error_file_name = "(fd = " + toString(fd) + ")";
2023-12-15 18:25:49 +00:00
ErrnoException::throwFromPath(
ErrorCodes::CANNOT_WRITE_TO_FILE_DESCRIPTOR, error_file_name, "Cannot write to file {}", error_file_name);
}
2016-10-25 06:49:24 +00:00
if (res > 0)
{
2016-10-25 06:49:24 +00:00
bytes_written += res;
if (throttler)
throttler->add(res, ProfileEvents::LocalWriteThrottlerBytes, ProfileEvents::LocalWriteThrottlerSleepMicroseconds);
}
2016-10-25 06:49:24 +00:00
}
ProfileEvents::increment(ProfileEvents::DiskWriteElapsedMicroseconds, watch.elapsedMicroseconds());
2016-10-25 06:49:24 +00:00
ProfileEvents::increment(ProfileEvents::WriteBufferFromFileDescriptorWriteBytes, bytes_written);
}
2021-09-06 10:35:37 +00:00
/// NOTE: This class can be used as a very low-level building block, for example
/// in trace collector. In such places allocations of memory can be dangerous,
2021-09-06 11:34:17 +00:00
/// so don't allocate anything in this constructor.
2016-10-25 06:49:24 +00:00
WriteBufferFromFileDescriptor::WriteBufferFromFileDescriptor(
int fd_,
size_t buf_size,
char * existing_memory,
ThrottlerPtr throttler_,
size_t alignment,
2021-09-06 10:35:37 +00:00
std::string file_name_)
: WriteBufferFromFileBase(buf_size, existing_memory, alignment)
, fd(fd_)
, throttler(throttler_)
2021-09-06 10:35:37 +00:00
, file_name(std::move(file_name_))
{
}
2016-10-25 06:49:24 +00:00
WriteBufferFromFileDescriptor::~WriteBufferFromFileDescriptor()
2021-11-10 22:58:56 +00:00
{
2021-11-11 17:27:23 +00:00
finalize();
2021-11-10 22:58:56 +00:00
}
void WriteBufferFromFileDescriptor::finalizeImpl()
2016-10-25 06:49:24 +00:00
{
if (fd < 0)
2016-10-25 06:49:24 +00:00
{
assert(!offset() && "attempt to write after close");
return;
2016-10-25 06:49:24 +00:00
}
next();
2016-10-25 06:49:24 +00:00
}
void WriteBufferFromFileDescriptor::sync()
{
/// If buffer has pending data - write it.
next();
ProfileEvents::increment(ProfileEvents::FileSync);
Stopwatch watch;
2016-10-25 06:49:24 +00:00
/// Request OS to sync data with storage medium.
2021-11-12 07:49:21 +00:00
#if defined(OS_DARWIN)
int res = ::fsync(fd);
#else
2021-11-10 09:23:46 +00:00
int res = ::fdatasync(fd);
2021-11-12 07:49:21 +00:00
#endif
ProfileEvents::increment(ProfileEvents::FileSyncElapsedMicroseconds, watch.elapsedMicroseconds());
2016-10-25 06:49:24 +00:00
if (-1 == res)
2023-12-18 09:40:02 +00:00
ErrnoException::throwFromPath(ErrorCodes::CANNOT_FSYNC, getFileName(), "Cannot fsync {}", getFileName());
2016-10-25 06:49:24 +00:00
}
off_t WriteBufferFromFileDescriptor::seek(off_t offset, int whence) // NOLINT
2016-10-25 06:49:24 +00:00
{
off_t res = lseek(fd, offset, whence);
if (-1 == res)
2023-12-15 18:25:49 +00:00
ErrnoException::throwFromPath(ErrorCodes::CANNOT_SEEK_THROUGH_FILE, getFileName(), "Cannot seek through {}", getFileName());
2016-10-25 06:49:24 +00:00
return res;
}
void WriteBufferFromFileDescriptor::truncate(off_t length) // NOLINT
2016-10-25 06:49:24 +00:00
{
int res = ftruncate(fd, length);
if (-1 == res)
2023-12-15 18:25:49 +00:00
ErrnoException::throwFromPath(ErrorCodes::CANNOT_TRUNCATE_FILE, getFileName(), "Cannot truncate file {}", getFileName());
2016-10-25 06:49:24 +00:00
}
2020-07-07 11:45:20 +00:00
off_t WriteBufferFromFileDescriptor::size() const
2020-07-07 11:45:20 +00:00
{
struct stat buf;
int res = fstat(fd, &buf);
if (-1 == res)
2023-12-15 18:25:49 +00:00
ErrnoException::throwFromPath(ErrorCodes::CANNOT_FSTAT, getFileName(), "Cannot execute fstat {}", getFileName());
2020-07-07 11:45:20 +00:00
return buf.st_size;
}
2021-09-06 10:35:37 +00:00
std::string WriteBufferFromFileDescriptor::getFileName() const
{
if (file_name.empty())
return "(fd = " + toString(fd) + ")";
return file_name;
}
2016-10-25 06:49:24 +00:00
}