2016-10-25 06:49:24 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <time.h>
|
2017-11-20 04:15:43 +00:00
|
|
|
#include <optional>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/ProfileEvents.h>
|
|
|
|
#include <Common/Stopwatch.h>
|
|
|
|
#include <Common/Exception.h>
|
|
|
|
#include <Common/CurrentMetrics.h>
|
|
|
|
#include <IO/ReadBufferFromFileDescriptor.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
2021-08-24 21:45:58 +00:00
|
|
|
#include <IO/Progress.h>
|
2021-04-28 16:25:14 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2016-10-25 06:49:24 +00:00
|
|
|
|
2021-10-03 13:42:36 +00:00
|
|
|
#ifdef HAS_RESERVED_IDENTIFIER
|
2021-08-23 18:07:42 +00:00
|
|
|
#pragma clang diagnostic ignored "-Wreserved-identifier"
|
|
|
|
#endif
|
|
|
|
|
2016-10-25 06:49:24 +00:00
|
|
|
namespace ProfileEvents
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const Event ReadBufferFromFileDescriptorRead;
|
|
|
|
extern const Event ReadBufferFromFileDescriptorReadFailed;
|
|
|
|
extern const Event ReadBufferFromFileDescriptorReadBytes;
|
2018-05-28 19:53:03 +00:00
|
|
|
extern const Event DiskReadElapsedMicroseconds;
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const Event Seek;
|
2016-10-25 06:49:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace CurrentMetrics
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const Metric Read;
|
2016-10-25 06:49:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int CANNOT_READ_FROM_FILE_DESCRIPTOR;
|
|
|
|
extern const int ARGUMENT_OUT_OF_BOUND;
|
|
|
|
extern const int CANNOT_SEEK_THROUGH_FILE;
|
|
|
|
extern const int CANNOT_SELECT;
|
2021-04-28 16:25:14 +00:00
|
|
|
extern const int CANNOT_FSTAT;
|
2021-07-26 00:34:36 +00:00
|
|
|
extern const int CANNOT_ADVISE;
|
2016-10-25 06:49:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string ReadBufferFromFileDescriptor::getFileName() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
return "(fd = " + toString(fd) + ")";
|
2016-10-25 06:49:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ReadBufferFromFileDescriptor::nextImpl()
|
|
|
|
{
|
2021-10-15 07:13:11 +00:00
|
|
|
/// If internal_buffer size is empty, then read() cannot be distinguished from EOF
|
|
|
|
assert(!internal_buffer.empty());
|
|
|
|
|
2022-01-03 16:21:50 +00:00
|
|
|
/// This is a workaround of a read pass EOF bug in linux kernel with pread()
|
|
|
|
if (file_size.has_value() && file_offset_of_buffer_end >= *file_size)
|
|
|
|
return false;
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t bytes_read = 0;
|
|
|
|
while (!bytes_read)
|
|
|
|
{
|
|
|
|
ProfileEvents::increment(ProfileEvents::ReadBufferFromFileDescriptorRead);
|
|
|
|
|
2018-05-31 15:54:08 +00:00
|
|
|
Stopwatch watch(profile_callback ? clock_type : CLOCK_MONOTONIC);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
ssize_t res = 0;
|
|
|
|
{
|
|
|
|
CurrentMetrics::Increment metric_increment{CurrentMetrics::Read};
|
2021-07-12 01:12:34 +00:00
|
|
|
|
|
|
|
if (use_pread)
|
|
|
|
res = ::pread(fd, internal_buffer.begin(), internal_buffer.size(), file_offset_of_buffer_end);
|
|
|
|
else
|
|
|
|
res = ::read(fd, internal_buffer.begin(), internal_buffer.size());
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
if (!res)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (-1 == res && errno != EINTR)
|
|
|
|
{
|
|
|
|
ProfileEvents::increment(ProfileEvents::ReadBufferFromFileDescriptorReadFailed);
|
2019-08-07 12:52:47 +00:00
|
|
|
throwFromErrnoWithPath("Cannot read from file " + getFileName(), getFileName(),
|
|
|
|
ErrorCodes::CANNOT_READ_FROM_FILE_DESCRIPTOR);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (res > 0)
|
|
|
|
bytes_read += res;
|
|
|
|
|
2018-08-22 00:24:55 +00:00
|
|
|
/// It reports real time spent including the time spent while thread was preempted doing nothing.
|
|
|
|
/// And it is Ok for the purpose of this watch (it is used to lower the number of threads to read from tables).
|
2020-07-13 00:45:37 +00:00
|
|
|
/// Sometimes it is better to use taskstats::blkio_delay_total, but it is quite expensive to get it
|
|
|
|
/// (TaskStatsInfoGetter has about 500K RPS).
|
2018-05-31 15:54:08 +00:00
|
|
|
watch.stop();
|
|
|
|
ProfileEvents::increment(ProfileEvents::DiskReadElapsedMicroseconds, watch.elapsedMicroseconds());
|
2018-05-28 19:53:03 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (profile_callback)
|
|
|
|
{
|
|
|
|
ProfileInfo info;
|
|
|
|
info.bytes_requested = internal_buffer.size();
|
|
|
|
info.bytes_read = res;
|
2018-05-31 15:54:08 +00:00
|
|
|
info.nanoseconds = watch.elapsed();
|
2017-04-01 07:20:54 +00:00
|
|
|
profile_callback(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-31 14:53:41 +00:00
|
|
|
file_offset_of_buffer_end += bytes_read;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (bytes_read)
|
|
|
|
{
|
|
|
|
ProfileEvents::increment(ProfileEvents::ReadBufferFromFileDescriptorReadBytes, bytes_read);
|
2021-02-06 16:30:46 +00:00
|
|
|
working_buffer = internal_buffer;
|
2017-04-01 07:20:54 +00:00
|
|
|
working_buffer.resize(bytes_read);
|
2022-02-04 22:12:09 +00:00
|
|
|
buffer_is_dirty = false;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2016-10-25 06:49:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-26 00:34:36 +00:00
|
|
|
void ReadBufferFromFileDescriptor::prefetch()
|
|
|
|
{
|
2021-07-27 23:59:56 +00:00
|
|
|
#if defined(POSIX_FADV_WILLNEED)
|
2021-07-26 00:34:36 +00:00
|
|
|
/// For direct IO, loading data into page cache is pointless.
|
|
|
|
if (required_alignment)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/// Ask OS to prefetch data into page cache.
|
|
|
|
if (0 != posix_fadvise(fd, file_offset_of_buffer_end, internal_buffer.size(), POSIX_FADV_WILLNEED))
|
|
|
|
throwFromErrno("Cannot posix_fadvise", ErrorCodes::CANNOT_ADVISE);
|
2021-07-27 23:59:56 +00:00
|
|
|
#endif
|
2021-07-26 00:34:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-25 06:49:24 +00:00
|
|
|
/// If 'offset' is small enough to stay in buffer after seek, then true seek in file does not happen.
|
2020-01-27 18:44:30 +00:00
|
|
|
off_t ReadBufferFromFileDescriptor::seek(off_t offset, int whence)
|
2016-10-25 06:49:24 +00:00
|
|
|
{
|
2020-07-31 14:53:41 +00:00
|
|
|
size_t new_pos;
|
2020-01-04 05:46:50 +00:00
|
|
|
if (whence == SEEK_SET)
|
2020-07-31 14:53:41 +00:00
|
|
|
{
|
|
|
|
assert(offset >= 0);
|
2020-01-04 05:46:50 +00:00
|
|
|
new_pos = offset;
|
2020-07-31 14:53:41 +00:00
|
|
|
}
|
2020-01-04 05:46:50 +00:00
|
|
|
else if (whence == SEEK_CUR)
|
2020-07-31 14:53:41 +00:00
|
|
|
{
|
|
|
|
new_pos = file_offset_of_buffer_end - (working_buffer.end() - pos) + offset;
|
|
|
|
}
|
2020-01-04 05:46:50 +00:00
|
|
|
else
|
2020-07-31 14:53:41 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception("ReadBufferFromFileDescriptor::seek expects SEEK_SET or SEEK_CUR as whence", ErrorCodes::ARGUMENT_OUT_OF_BOUND);
|
2020-07-31 14:53:41 +00:00
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// Position is unchanged.
|
2022-02-04 22:12:09 +00:00
|
|
|
if (!buffer_is_dirty && (new_pos + (working_buffer.end() - pos) == file_offset_of_buffer_end))
|
2017-04-01 07:20:54 +00:00
|
|
|
return new_pos;
|
|
|
|
|
2022-02-04 22:12:09 +00:00
|
|
|
if (!buffer_is_dirty && file_offset_of_buffer_end - working_buffer.size() <= static_cast<size_t>(new_pos)
|
2021-08-04 00:07:04 +00:00
|
|
|
&& new_pos <= file_offset_of_buffer_end)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2021-07-12 01:12:34 +00:00
|
|
|
/// Position is still inside the buffer.
|
2021-08-04 00:07:04 +00:00
|
|
|
/// Probably it is at the end of the buffer - then we will load data on the following 'next' call.
|
2021-07-12 01:12:34 +00:00
|
|
|
|
2020-07-31 14:53:41 +00:00
|
|
|
pos = working_buffer.end() - file_offset_of_buffer_end + new_pos;
|
|
|
|
assert(pos >= working_buffer.begin());
|
2021-08-04 00:07:04 +00:00
|
|
|
assert(pos <= working_buffer.end());
|
2020-07-31 14:53:41 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return new_pos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-12 01:12:34 +00:00
|
|
|
/// Position is out of the buffer, we need to do real seek.
|
|
|
|
off_t seek_pos = required_alignment > 1
|
2021-07-11 00:35:43 +00:00
|
|
|
? new_pos / required_alignment * required_alignment
|
|
|
|
: new_pos;
|
|
|
|
|
2021-07-12 01:12:34 +00:00
|
|
|
off_t offset_after_seek_pos = new_pos - seek_pos;
|
|
|
|
|
|
|
|
/// First put position at the end of the buffer so the next read will fetch new data to the buffer.
|
|
|
|
pos = working_buffer.end();
|
|
|
|
|
2022-02-04 22:12:09 +00:00
|
|
|
/// Mark buffer as dirty to disallow further seek optimizations, because fetching data to the buffer
|
|
|
|
/// is delayed to the next call of 'nextImpl', but it may be not called before next seek.
|
|
|
|
buffer_is_dirty = true;
|
|
|
|
|
2021-07-12 01:12:34 +00:00
|
|
|
/// In case of using 'pread' we just update the info about the next position in file.
|
|
|
|
/// In case of using 'read' we call 'lseek'.
|
2021-07-11 00:35:43 +00:00
|
|
|
|
2021-07-12 01:12:34 +00:00
|
|
|
/// We account both cases as seek event as it leads to non-contiguous reads from file.
|
2017-04-01 07:20:54 +00:00
|
|
|
ProfileEvents::increment(ProfileEvents::Seek);
|
|
|
|
|
2021-07-12 01:12:34 +00:00
|
|
|
if (!use_pread)
|
|
|
|
{
|
|
|
|
Stopwatch watch(profile_callback ? clock_type : CLOCK_MONOTONIC);
|
2018-05-28 19:53:03 +00:00
|
|
|
|
2021-07-12 01:12:34 +00:00
|
|
|
off_t res = ::lseek(fd, seek_pos, SEEK_SET);
|
|
|
|
if (-1 == res)
|
|
|
|
throwFromErrnoWithPath("Cannot seek through file " + getFileName(), getFileName(),
|
|
|
|
ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
|
|
|
|
|
|
|
|
/// Also note that seeking past the file size is not allowed.
|
|
|
|
if (res != seek_pos)
|
|
|
|
throw Exception(ErrorCodes::CANNOT_SEEK_THROUGH_FILE,
|
|
|
|
"The 'lseek' syscall returned value ({}) that is not expected ({})", res, seek_pos);
|
|
|
|
|
|
|
|
watch.stop();
|
|
|
|
ProfileEvents::increment(ProfileEvents::DiskReadElapsedMicroseconds, watch.elapsedMicroseconds());
|
|
|
|
}
|
2018-05-28 19:53:03 +00:00
|
|
|
|
2021-07-11 02:43:54 +00:00
|
|
|
file_offset_of_buffer_end = seek_pos;
|
2021-07-11 00:35:43 +00:00
|
|
|
|
|
|
|
if (offset_after_seek_pos > 0)
|
|
|
|
ignore(offset_after_seek_pos);
|
|
|
|
|
2021-07-12 01:12:34 +00:00
|
|
|
return seek_pos;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2016-10-25 06:49:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-04 03:03:49 +00:00
|
|
|
void ReadBufferFromFileDescriptor::rewind()
|
|
|
|
{
|
2021-07-12 01:12:34 +00:00
|
|
|
if (!use_pread)
|
|
|
|
{
|
|
|
|
ProfileEvents::increment(ProfileEvents::Seek);
|
|
|
|
off_t res = ::lseek(fd, 0, SEEK_SET);
|
|
|
|
if (-1 == res)
|
|
|
|
throwFromErrnoWithPath("Cannot seek through file " + getFileName(), getFileName(),
|
|
|
|
ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
|
|
|
|
}
|
|
|
|
/// In case of pread, the ProfileEvents::Seek is not accounted, but it's Ok.
|
2021-07-04 03:03:49 +00:00
|
|
|
|
|
|
|
/// Clearing the buffer with existing data. New data will be read on subsequent call to 'next'.
|
|
|
|
working_buffer.resize(0);
|
|
|
|
pos = working_buffer.begin();
|
2021-07-12 00:24:38 +00:00
|
|
|
file_offset_of_buffer_end = 0;
|
2022-02-05 23:57:49 +00:00
|
|
|
buffer_is_dirty = true;
|
2021-07-04 03:03:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-25 06:49:24 +00:00
|
|
|
/// Assuming file descriptor supports 'select', check that we have data to read or wait until timeout.
|
|
|
|
bool ReadBufferFromFileDescriptor::poll(size_t timeout_microseconds)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
fd_set fds;
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(fd, &fds);
|
|
|
|
timeval timeout = { time_t(timeout_microseconds / 1000000), suseconds_t(timeout_microseconds % 1000000) };
|
2016-10-25 06:49:24 +00:00
|
|
|
|
2018-08-10 04:02:56 +00:00
|
|
|
int res = select(1, &fds, nullptr, nullptr, &timeout);
|
2016-10-25 06:49:24 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (-1 == res)
|
|
|
|
throwFromErrno("Cannot select", ErrorCodes::CANNOT_SELECT);
|
2016-10-25 06:49:24 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return res > 0;
|
2016-10-25 06:49:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-28 16:25:14 +00:00
|
|
|
|
|
|
|
off_t ReadBufferFromFileDescriptor::size()
|
|
|
|
{
|
|
|
|
struct stat buf;
|
|
|
|
int res = fstat(fd, &buf);
|
|
|
|
if (-1 == res)
|
|
|
|
throwFromErrnoWithPath("Cannot execute fstat " + getFileName(), getFileName(), ErrorCodes::CANNOT_FSTAT);
|
|
|
|
return buf.st_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ReadBufferFromFileDescriptor::setProgressCallback(ContextPtr context)
|
|
|
|
{
|
2021-05-13 22:56:42 +00:00
|
|
|
auto file_progress_callback = context->getFileProgressCallback();
|
2021-04-28 16:25:14 +00:00
|
|
|
|
2021-05-13 22:56:42 +00:00
|
|
|
if (!file_progress_callback)
|
|
|
|
return;
|
2021-04-28 16:25:14 +00:00
|
|
|
|
2021-05-13 22:56:42 +00:00
|
|
|
setProfileCallback([file_progress_callback](const ProfileInfo & progress)
|
2021-04-28 16:25:14 +00:00
|
|
|
{
|
2021-05-13 22:56:42 +00:00
|
|
|
file_progress_callback(FileProgress(progress.bytes_read, 0));
|
2021-04-28 16:25:14 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-10-25 06:49:24 +00:00
|
|
|
}
|