ClickHouse/src/IO/ReadBufferFromFileDescriptor.cpp

263 lines
8.7 KiB
C++
Raw Normal View History

2016-10-25 06:49:24 +00:00
#include <errno.h>
#include <time.h>
#include <optional>
#include <Common/ProfileEvents.h>
#include <Common/Stopwatch.h>
#include <Common/Exception.h>
#include <Common/CurrentMetrics.h>
#include <IO/ReadBufferFromFileDescriptor.h>
#include <IO/WriteBufferFromFile.h>
#include <IO/WriteHelpers.h>
#include <sys/stat.h>
#include <Common/UnicodeBar.h>
#include <Common/TerminalSize.h>
#include <IO/Operators.h>
#define CLEAR_TO_END_OF_LINE "\033[K"
2016-10-25 06:49:24 +00:00
namespace ProfileEvents
{
extern const Event ReadBufferFromFileDescriptorRead;
extern const Event ReadBufferFromFileDescriptorReadFailed;
extern const Event ReadBufferFromFileDescriptorReadBytes;
extern const Event DiskReadElapsedMicroseconds;
extern const Event Seek;
2016-10-25 06:49:24 +00:00
}
namespace CurrentMetrics
{
extern const Metric Read;
2016-10-25 06:49:24 +00:00
}
namespace DB
{
namespace ErrorCodes
{
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;
extern const int CANNOT_FSTAT;
2016-10-25 06:49:24 +00:00
}
std::string ReadBufferFromFileDescriptor::getFileName() const
{
return "(fd = " + toString(fd) + ")";
2016-10-25 06:49:24 +00:00
}
bool ReadBufferFromFileDescriptor::nextImpl()
{
size_t bytes_read = 0;
while (!bytes_read)
{
ProfileEvents::increment(ProfileEvents::ReadBufferFromFileDescriptorRead);
Stopwatch watch(profile_callback ? clock_type : CLOCK_MONOTONIC);
ssize_t res = 0;
{
CurrentMetrics::Increment metric_increment{CurrentMetrics::Read};
res = ::read(fd, internal_buffer.begin(), internal_buffer.size());
}
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);
}
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).
watch.stop();
ProfileEvents::increment(ProfileEvents::DiskReadElapsedMicroseconds, watch.elapsedMicroseconds());
if (profile_callback)
{
ProfileInfo info;
info.bytes_requested = internal_buffer.size();
info.bytes_read = res;
info.nanoseconds = watch.elapsed();
profile_callback(info);
}
}
2020-07-31 14:53:41 +00:00
file_offset_of_buffer_end += bytes_read;
if (bytes_read)
{
ProfileEvents::increment(ProfileEvents::ReadBufferFromFileDescriptorReadBytes, bytes_read);
2021-02-06 16:30:46 +00:00
working_buffer = internal_buffer;
working_buffer.resize(bytes_read);
}
else
return false;
return true;
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.
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;
if (whence == SEEK_SET)
2020-07-31 14:53:41 +00:00
{
assert(offset >= 0);
new_pos = offset;
2020-07-31 14:53:41 +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;
}
else
2020-07-31 14:53:41 +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
}
/// Position is unchanged.
2020-07-31 14:53:41 +00:00
if (new_pos + (working_buffer.end() - pos) == file_offset_of_buffer_end)
return new_pos;
2020-07-31 14:53:41 +00:00
// file_offset_of_buffer_end corresponds to working_buffer.end(); it's a past-the-end pos,
// so the second inequality is strict.
if (file_offset_of_buffer_end - working_buffer.size() <= static_cast<size_t>(new_pos)
&& new_pos < file_offset_of_buffer_end)
{
/// Position is still inside buffer.
2020-07-31 14:53:41 +00:00
pos = working_buffer.end() - file_offset_of_buffer_end + new_pos;
assert(pos >= working_buffer.begin());
assert(pos < working_buffer.end());
return new_pos;
}
else
{
ProfileEvents::increment(ProfileEvents::Seek);
Stopwatch watch(profile_callback ? clock_type : CLOCK_MONOTONIC);
pos = working_buffer.end();
off_t res = ::lseek(fd, new_pos, SEEK_SET);
if (-1 == res)
2019-08-07 12:52:47 +00:00
throwFromErrnoWithPath("Cannot seek through file " + getFileName(), getFileName(),
ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
2020-07-31 14:53:41 +00:00
file_offset_of_buffer_end = new_pos;
watch.stop();
ProfileEvents::increment(ProfileEvents::DiskReadElapsedMicroseconds, watch.elapsedMicroseconds());
return res;
}
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)
{
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
int res = select(1, &fds, nullptr, nullptr, &timeout);
2016-10-25 06:49:24 +00:00
if (-1 == res)
throwFromErrno("Cannot select", ErrorCodes::CANNOT_SELECT);
2016-10-25 06:49:24 +00:00
return res > 0;
2016-10-25 06:49:24 +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)
{
/// Keep file progress and total bytes to process in context and not in readBuffer, because
/// multiple files might share the same progress (for example, for file table engine when globs are used)
/// and total_bytes_to_process will contain sum of sizes of all files.
if (!context->getFileProgress().total_bytes_to_process)
context->setFileTotalBytesToProcess(size());
setProfileCallback([context](const ProfileInfo & progress)
{
static size_t increment = 0;
static const char * indicators[8] =
{
"\033[1;30m→\033[0m",
"\033[1;31m↘\033[0m",
"\033[1;32m↓\033[0m",
"\033[1;33m↙\033[0m",
"\033[1;34m←\033[0m",
"\033[1;35m↖\033[0m",
"\033[1;36m↑\033[0m",
"\033[1m↗\033[0m",
};
size_t terminal_width = getTerminalWidth();
WriteBufferFromFileDescriptor message(STDERR_FILENO, 1024);
const auto & file_progress = context->getFileProgress();
if (!file_progress.processed_bytes)
message << std::string(terminal_width, ' ');
message << '\r';
file_progress.processed_bytes += progress.bytes_read;
const char * indicator = indicators[increment % 8];
size_t prefix_size = message.count();
size_t processed_bytes = file_progress.processed_bytes.load();
message << indicator << " Progress: ";
message << formatReadableSizeWithDecimalSuffix(file_progress.processed_bytes);
message << " from " << formatReadableSizeWithDecimalSuffix(file_progress.total_bytes_to_process) << " bytes. ";
/// Display progress bar only if .25 seconds have passed since query execution start.
size_t elapsed_ns = file_progress.watch.elapsed();
if (elapsed_ns > 25000000)
{
size_t written_progress_chars = message.count() - prefix_size - (strlen(indicator) - 1); /// Don't count invisible output (escape sequences).
ssize_t width_of_progress_bar = static_cast<ssize_t>(terminal_width) - written_progress_chars - strlen(" 99%");
size_t total_bytes_corrected = std::max(processed_bytes, file_progress.total_bytes_to_process);
if (width_of_progress_bar > 0 && progress.bytes_read > 0)
{
std::string bar = UnicodeBar::render(UnicodeBar::getWidth(processed_bytes, 0, total_bytes_corrected, width_of_progress_bar));
message << "\033[0;32m" << bar << "\033[0m";
if (width_of_progress_bar > static_cast<ssize_t>(bar.size() / UNICODE_BAR_CHAR_SIZE))
message << std::string(width_of_progress_bar - bar.size() / UNICODE_BAR_CHAR_SIZE, ' ');
}
/// Underestimate percentage a bit to avoid displaying 100%.
message << ' ' << (99 * file_progress.processed_bytes / file_progress.total_bytes_to_process) << '%';
}
message << CLEAR_TO_END_OF_LINE;
message.next();
++increment;
});
}
2016-10-25 06:49:24 +00:00
}