2021-10-04 13:46:03 +00:00
|
|
|
#if !defined(ARCADIA_BUILD)
|
|
|
|
#include <Common/config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if USE_AZURE_BLOB_STORAGE
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <IO/ReadBufferFromBlobStorage.h>
|
|
|
|
#include <IO/ReadBufferFromString.h>
|
2021-10-08 14:34:40 +00:00
|
|
|
#include <common/logger_useful.h>
|
|
|
|
|
2021-10-04 13:46:03 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int CANNOT_SEEK_THROUGH_FILE;
|
|
|
|
extern const int SEEK_POSITION_OUT_OF_BOUND;
|
2021-10-15 09:04:22 +00:00
|
|
|
extern const int RECEIVED_EMPTY_DATA;
|
2021-10-04 13:46:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ReadBufferFromBlobStorage::ReadBufferFromBlobStorage(
|
2021-10-19 09:30:15 +00:00
|
|
|
std::shared_ptr<Azure::Storage::Blobs::BlobContainerClient> blob_container_client_,
|
2021-10-04 13:46:03 +00:00
|
|
|
const String & path_,
|
2021-10-11 14:54:22 +00:00
|
|
|
size_t buf_size_) :
|
2021-10-04 13:46:03 +00:00
|
|
|
SeekableReadBuffer(nullptr, 0),
|
|
|
|
blob_container_client(blob_container_client_),
|
2021-10-11 14:54:22 +00:00
|
|
|
tmp_buffer(buf_size_),
|
|
|
|
path(path_),
|
|
|
|
buf_size(buf_size_) {}
|
2021-10-04 13:46:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool ReadBufferFromBlobStorage::nextImpl()
|
|
|
|
{
|
2021-10-11 14:54:22 +00:00
|
|
|
// TODO: is this "stream" approach better than a single DownloadTo approach (last commit 90fc230c4dfacc1a9d50d2d65b91363150caa784) ?
|
2021-10-04 13:46:03 +00:00
|
|
|
|
2021-10-11 14:54:22 +00:00
|
|
|
if (!initialized)
|
|
|
|
initialize();
|
2021-10-08 14:34:40 +00:00
|
|
|
|
2021-11-04 12:58:29 +00:00
|
|
|
if (offset >= total_size)
|
2021-10-11 14:54:22 +00:00
|
|
|
return false;
|
2021-10-08 14:34:40 +00:00
|
|
|
|
2021-10-11 14:54:22 +00:00
|
|
|
size_t to_read_bytes = std::min(total_size - offset, buf_size);
|
2021-11-09 11:13:29 +00:00
|
|
|
size_t bytes_read = 0;
|
|
|
|
|
|
|
|
auto sleep_time_with_backoff_milliseconds = std::chrono::milliseconds(100);
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2021-11-09 12:01:13 +00:00
|
|
|
bytes_read = data_stream->ReadToCount(tmp_buffer.data(), to_read_bytes);
|
2021-11-09 11:13:29 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
catch (const Exception & e)
|
|
|
|
{
|
|
|
|
// TODO: can't get LOG_DEBUG to compile here
|
|
|
|
std::cout << "\n\nException caught during Azure Read: " << e.message() << "\n";
|
|
|
|
|
|
|
|
std::this_thread::sleep_for(sleep_time_with_backoff_milliseconds);
|
|
|
|
sleep_time_with_backoff_milliseconds *= 2;
|
|
|
|
initialized = false;
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bytes_read == 0)
|
|
|
|
return false;
|
2021-10-04 13:46:03 +00:00
|
|
|
|
2021-10-11 14:54:22 +00:00
|
|
|
BufferBase::set(reinterpret_cast<char *>(tmp_buffer.data()), bytes_read, 0);
|
|
|
|
offset += bytes_read;
|
2021-10-04 13:46:03 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
off_t ReadBufferFromBlobStorage::seek(off_t offset_, int whence)
|
|
|
|
{
|
2021-10-11 14:54:22 +00:00
|
|
|
if (initialized)
|
2021-10-04 13:46:03 +00:00
|
|
|
throw Exception("Seek is allowed only before first read attempt from the buffer.", ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
|
|
|
|
|
|
|
|
if (whence != SEEK_SET)
|
|
|
|
throw Exception("Only SEEK_SET mode is allowed.", ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
|
|
|
|
|
|
|
|
if (offset_ < 0)
|
|
|
|
throw Exception("Seek position is out of bounds. Offset: " + std::to_string(offset_), ErrorCodes::SEEK_POSITION_OUT_OF_BOUND);
|
|
|
|
|
|
|
|
offset = offset_;
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
off_t ReadBufferFromBlobStorage::getPosition()
|
|
|
|
{
|
2021-11-09 11:13:29 +00:00
|
|
|
// TODO: which one is the right one? In S3: return offset - available();
|
2021-10-11 14:54:22 +00:00
|
|
|
|
|
|
|
return offset;
|
2021-10-04 13:46:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-10-11 14:54:22 +00:00
|
|
|
void ReadBufferFromBlobStorage::initialize()
|
2021-10-04 13:46:03 +00:00
|
|
|
{
|
2021-10-11 14:54:22 +00:00
|
|
|
if (initialized)
|
|
|
|
return;
|
|
|
|
|
2021-11-09 11:13:29 +00:00
|
|
|
Azure::Storage::Blobs::DownloadBlobOptions download_options;
|
|
|
|
if (offset != 0)
|
|
|
|
download_options.Range = {static_cast<int64_t>(offset), {}};
|
|
|
|
|
|
|
|
blob_client = std::make_unique<Azure::Storage::Blobs::BlobClient>(blob_container_client->GetBlobClient(path));
|
|
|
|
|
|
|
|
// TODO: try-catch for Download ?
|
|
|
|
auto download_response = blob_client->Download(download_options);
|
2021-10-11 14:54:22 +00:00
|
|
|
data_stream = std::move(download_response.Value.BodyStream);
|
|
|
|
|
|
|
|
if (data_stream == nullptr)
|
2021-10-15 09:04:22 +00:00
|
|
|
throw Exception("Null data stream obtained while downloading a file from Blob Storage", ErrorCodes::RECEIVED_EMPTY_DATA);
|
2021-10-11 14:54:22 +00:00
|
|
|
|
2021-11-10 10:35:44 +00:00
|
|
|
total_size = data_stream->Length() + offset;
|
2021-10-11 14:54:22 +00:00
|
|
|
|
|
|
|
initialized = true;
|
2021-10-04 13:46:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|