Merge pull request #54815 from ClickHouse/pufit/optimal-num-streams-for-s3-storage

Adjusting `num_streams` by expected work in StorageS3
This commit is contained in:
pufit 2023-09-21 08:41:39 -04:00 committed by GitHub
commit bd387f6d2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 80 additions and 4 deletions

View File

@ -147,6 +147,11 @@ StorageS3QueueSource::KeyWithInfo StorageS3QueueSource::QueueGlobIterator::next(
return KeyWithInfo();
}
size_t StorageS3QueueSource::QueueGlobIterator::estimatedKeysCount()
{
return keys_buf.size();
}
StorageS3QueueSource::StorageS3QueueSource(
const ReadFromFormatInfo & info,
const String & format_,

View File

@ -54,6 +54,8 @@ public:
Strings
filterProcessingFiles(const S3QueueMode & engine_mode, std::unordered_set<String> & exclude_keys, const String & max_file = "");
size_t estimatedKeysCount() override;
private:
UInt64 max_poll_size;
KeysWithInfo keys_buf;

View File

@ -188,6 +188,11 @@ public:
return nextAssumeLocked();
}
size_t objectsCount()
{
return buffer.size();
}
~Impl()
{
list_objects_pool.wait();
@ -232,7 +237,6 @@ private:
void fillInternalBufferAssumeLocked()
{
buffer.clear();
assert(outcome_future.valid());
auto outcome = outcome_future.get();
@ -372,6 +376,11 @@ StorageS3Source::KeyWithInfo StorageS3Source::DisclosedGlobIterator::next()
return pimpl->next();
}
size_t StorageS3Source::DisclosedGlobIterator::estimatedKeysCount()
{
return pimpl->objectsCount();
}
class StorageS3Source::KeysIterator::Impl : WithContext
{
public:
@ -433,6 +442,11 @@ public:
return {key, info};
}
size_t objectsCount()
{
return keys.size();
}
private:
Strings keys;
std::atomic_size_t index = 0;
@ -467,6 +481,44 @@ StorageS3Source::KeyWithInfo StorageS3Source::KeysIterator::next()
return pimpl->next();
}
size_t StorageS3Source::KeysIterator::estimatedKeysCount()
{
return pimpl->objectsCount();
}
StorageS3Source::ReadTaskIterator::ReadTaskIterator(
const DB::ReadTaskCallback & callback_,
const size_t max_threads_count)
: callback(callback_)
{
ThreadPool pool(CurrentMetrics::StorageS3Threads, CurrentMetrics::StorageS3ThreadsActive, max_threads_count);
auto pool_scheduler = threadPoolCallbackRunner<String>(pool, "S3ReadTaskItr");
std::vector<std::future<String>> keys;
keys.reserve(max_threads_count);
for (size_t i = 0; i < max_threads_count; ++i)
keys.push_back(pool_scheduler([this] { return callback(); }, Priority{}));
pool.wait();
buffer.reserve(max_threads_count);
for (auto & key_future : keys)
buffer.emplace_back(key_future.get(), std::nullopt);
}
StorageS3Source::KeyWithInfo StorageS3Source::ReadTaskIterator::next()
{
size_t current_index = index.fetch_add(1, std::memory_order_relaxed);
if (current_index >= buffer.size())
return {callback(), {}};
return buffer[current_index];
}
size_t StorageS3Source::ReadTaskIterator::estimatedKeysCount()
{
return buffer.size();
}
StorageS3Source::StorageS3Source(
const ReadFromFormatInfo & info,
const String & format_,
@ -973,7 +1025,7 @@ std::shared_ptr<StorageS3Source::IIterator> StorageS3::createFileIterator(
{
if (distributed_processing)
{
return std::make_shared<StorageS3Source::ReadTaskIterator>(local_context->getReadTaskCallback());
return std::make_shared<StorageS3Source::ReadTaskIterator>(local_context->getReadTaskCallback(), local_context->getSettingsRef().max_threads);
}
else if (configuration.withGlobs())
{
@ -1025,13 +1077,18 @@ Pipe StorageS3::read(
std::shared_ptr<StorageS3Source::IIterator> iterator_wrapper = createFileIterator(
query_configuration, distributed_processing, local_context, query_info.query, virtual_columns, nullptr, local_context->getFileProgressCallback());
size_t estimated_keys_count = iterator_wrapper->estimatedKeysCount();
num_streams = std::min(num_streams, estimated_keys_count);
auto read_from_format_info = prepareReadingFromFormat(column_names, storage_snapshot, supportsSubsetOfColumns(local_context), getVirtuals());
bool need_only_count = (query_info.optimize_trivial_count || read_from_format_info.requested_columns.empty())
&& local_context->getSettingsRef().optimize_count_from_files;
const size_t max_threads = local_context->getSettingsRef().max_threads;
const size_t max_parsing_threads = num_streams >= max_threads ? 1 : (max_threads / num_streams);
LOG_DEBUG(&Poco::Logger::get("StorageS3"), "Reading in {} streams, {} threads per stream", num_streams, max_parsing_threads);
pipes.reserve(num_streams);
for (size_t i = 0; i < num_streams; ++i)
{
pipes.emplace_back(std::make_shared<StorageS3Source>(

View File

@ -60,6 +60,12 @@ public:
virtual ~IIterator() = default;
virtual KeyWithInfo next() = 0;
/// Estimates how many streams we need to process all files.
/// If keys count >= max_threads_count, the returned number may not represent the actual number of the keys.
/// Intended to be called before any next() calls, may underestimate otherwise
/// fixme: May underestimate if the glob has a strong filter, so there are few matches among the first 1000 ListObjects results.
virtual size_t estimatedKeysCount() = 0;
KeyWithInfo operator ()() { return next(); }
};
@ -77,6 +83,7 @@ public:
std::function<void(FileProgress)> progress_callback_ = {});
KeyWithInfo next() override;
size_t estimatedKeysCount() override;
private:
class Impl;
@ -100,6 +107,7 @@ public:
std::function<void(FileProgress)> progress_callback_ = {});
KeyWithInfo next() override;
size_t estimatedKeysCount() override;
private:
class Impl;
@ -110,11 +118,15 @@ public:
class ReadTaskIterator : public IIterator
{
public:
explicit ReadTaskIterator(const ReadTaskCallback & callback_) : callback(callback_) {}
explicit ReadTaskIterator(const ReadTaskCallback & callback_, const size_t max_threads_count);
KeyWithInfo next() override { return {callback(), {}}; }
KeyWithInfo next() override;
size_t estimatedKeysCount() override;
private:
KeysWithInfo buffer;
std::atomic_size_t index = 0;
ReadTaskCallback callback;
};