Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add to support byte input stream back by file #10717

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion velox/common/base/SpillStats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -299,10 +299,11 @@ void updateGlobalSpillWriteStats(
}

void updateGlobalSpillReadStats(
uint64_t spillReads,
uint64_t spillReadBytes,
uint64_t spillRadTimeUs) {
auto statsLocked = localSpillStats().wlock();
++statsLocked->spillReads;
statsLocked->spillReads += spillReads;
statsLocked->spillReadBytes += spillReadBytes;
statsLocked->spillReadTimeUs += spillRadTimeUs;
}
Expand Down
1 change: 1 addition & 0 deletions velox/common/base/SpillStats.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ void updateGlobalSpillWriteStats(
/// Updates the stats for disk read including the number of disk reads, the
/// amount of data read in bytes, and the time it takes to read from the disk.
void updateGlobalSpillReadStats(
uint64_t spillReads,
uint64_t spillReadBytes,
uint64_t spillRadTimeUs);

Expand Down
9 changes: 7 additions & 2 deletions velox/common/file/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@

# for generated headers
include_directories(.)
velox_add_library(velox_file File.cpp FileSystems.cpp Utils.cpp)
velox_add_library(
velox_file
File.cpp
FileInputStream.cpp
FileSystems.cpp
Utils.cpp)
velox_link_libraries(
velox_file
PUBLIC velox_exception Folly::folly
PRIVATE velox_common_base fmt::fmt glog::glog)
PRIVATE velox_buffer velox_common_base fmt::fmt glog::glog)

if(${VELOX_BUILD_TESTING} OR ${VELOX_BUILD_TEST_UTILS})
add_subdirectory(tests)
Expand Down
257 changes: 257 additions & 0 deletions velox/common/file/FileInputStream.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,257 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#include "velox/common/file/FileInputStream.h"

namespace facebook::velox::common {

FileInputStream::FileInputStream(
std::unique_ptr<ReadFile>&& file,
uint64_t bufferSize,
memory::MemoryPool* pool)
: file_(std::move(file)),
fileSize_(file_->size()),
bufferSize_(std::min(fileSize_, bufferSize)),
pool_(pool),
readAheadEnabled_((bufferSize_ < fileSize_) && file_->hasPreadvAsync()) {
VELOX_CHECK_NOT_NULL(pool_);
VELOX_CHECK_GT(fileSize_, 0, "Empty FileInputStream");

buffers_.push_back(AlignedBuffer::allocate<char>(bufferSize_, pool_));
if (readAheadEnabled_) {
buffers_.push_back(AlignedBuffer::allocate<char>(bufferSize_, pool_));
}
readNextRange();
}

FileInputStream::~FileInputStream() {
if (!readAheadWait_.valid()) {
return;
}
try {
readAheadWait_.wait();
} catch (const std::exception& ex) {
// ignore any prefetch error when query has failed.
LOG(WARNING) << "FileInputStream read-ahead failed on destruction "
<< ex.what();
}
}

void FileInputStream::readNextRange() {
VELOX_CHECK(current_ == nullptr || current_->availableBytes() == 0);
ranges_.clear();
current_ = nullptr;

int32_t readBytes{0};
uint64_t readTimeUs{0};
{
MicrosecondTimer timer{&readTimeUs};
if (readAheadWait_.valid()) {
readBytes = std::move(readAheadWait_)
.via(&folly::QueuedImmediateExecutor::instance())
.wait()
.value();
VELOX_CHECK(!readAheadWait_.valid());
VELOX_CHECK_LT(
0, readBytes, "Read past end of FileInputStream {}", fileSize_);
advanceBuffer();
} else {
readBytes = readSize();
VELOX_CHECK_LT(
0, readBytes, "Read past end of FileInputStream {}", fileSize_);
MicrosecondTimer timer{&readTimeUs};
file_->pread(fileOffset_, readBytes, buffer()->asMutable<char>());
}
}

ranges_.resize(1);
ranges_[0] = {buffer()->asMutable<uint8_t>(), readBytes, 0};
current_ = ranges_.data();
fileOffset_ += readBytes;

updateStats(readBytes, readTimeUs);

maybeIssueReadahead();
}

size_t FileInputStream::size() const {
return fileSize_;
}

bool FileInputStream::atEnd() const {
return tellp() >= fileSize_;
}

std::streampos FileInputStream::tellp() const {
if (current_ == nullptr) {
VELOX_CHECK_EQ(fileOffset_, fileSize_);
return fileOffset_;
}
return fileOffset_ - current_->availableBytes();
}

void FileInputStream::seekp(std::streampos position) {
static_assert(sizeof(std::streamsize) <= sizeof(int64_t));
const int64_t seekPos = position;
const int64_t curPos = tellp();
VELOX_CHECK_GE(
seekPos, curPos, "Backward seek is not supported by FileInputStream");

const int64_t toSkip = seekPos - curPos;
if (toSkip == 0) {
return;
}
doSeek(toSkip);
}

void FileInputStream::skip(int32_t size) {
doSeek(size);
}

void FileInputStream::doSeek(int64_t skipBytes) {
VELOX_CHECK_GE(skipBytes, 0, "Attempting to skip negative number of bytes");
if (skipBytes == 0) {
return;
}

VELOX_CHECK_LE(
skipBytes,
remainingSize(),
"Skip past the end of FileInputStream: {}",
fileSize_);

for (;;) {
const int64_t skippedBytes =
std::min<int64_t>(current_->availableBytes(), skipBytes);
skipBytes -= skippedBytes;
current_->position += skippedBytes;
if (skipBytes == 0) {
return;
}
readNextRange();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need to actually do the IO? Can we just manipulate fileOffset_ instead?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, I think we could. Let me see how to skip io in followup. Thanks!

}
}

size_t FileInputStream::remainingSize() const {
return fileSize_ - tellp();
}

uint8_t FileInputStream::readByte() {
VELOX_CHECK_GT(
remainingSize(), 0, "Read past the end of input file {}", fileSize_);

if (current_->availableBytes() > 0) {
return current_->buffer[current_->position++];
}
readNextRange();
return readByte();
}

void FileInputStream::readBytes(uint8_t* bytes, int32_t size) {
VELOX_CHECK_GE(size, 0, "Attempting to read negative number of bytes");
if (size == 0) {
return;
}

VELOX_CHECK_LE(
size, remainingSize(), "Read past the end of input file {}", fileSize_);

int32_t offset{0};
for (;;) {
const int32_t readBytes =
std::min<int64_t>(current_->availableBytes(), size);
simd::memcpy(
bytes + offset, current_->buffer + current_->position, readBytes);
offset += readBytes;
size -= readBytes;
current_->position += readBytes;
if (size == 0) {
return;
}
readNextRange();
}
}

std::string_view FileInputStream::nextView(int32_t size) {
VELOX_CHECK_GE(size, 0, "Attempting to view negative number of bytes");
if (remainingSize() == 0) {
return std::string_view(nullptr, 0);
}

if (current_->availableBytes() == 0) {
readNextRange();
}

VELOX_CHECK_GT(current_->availableBytes(), 0);
const auto position = current_->position;
const auto viewSize = std::min<int64_t>(current_->availableBytes(), size);
current_->position += viewSize;
return std::string_view(
reinterpret_cast<char*>(current_->buffer) + position, viewSize);
}

uint64_t FileInputStream::readSize() const {
return std::min(fileSize_ - fileOffset_, bufferSize_);
}

void FileInputStream::maybeIssueReadahead() {
VELOX_CHECK(!readAheadWait_.valid());
if (!readAheadEnabled_) {
return;
}
const auto size = readSize();
if (size == 0) {
return;
}
std::vector<folly::Range<char*>> ranges;
ranges.emplace_back(nextBuffer()->asMutable<char>(), size);
readAheadWait_ = file_->preadvAsync(fileOffset_, ranges);
VELOX_CHECK(readAheadWait_.valid());
}

void FileInputStream::updateStats(uint64_t readBytes, uint64_t readTimeUs) {
stats_.readBytes += readBytes;
stats_.readTimeUs += readTimeUs;
++stats_.numReads;
}

std::string FileInputStream::toString() const {
return fmt::format(
"file (offset {}/size {}) current (position {}/ size {})",
succinctBytes(fileOffset_),
succinctBytes(fileSize_),
current_ == nullptr ? "NULL" : succinctBytes(current_->position),
current_ == nullptr ? "NULL" : succinctBytes(current_->size));
}

FileInputStream::Stats FileInputStream::stats() const {
return stats_;
}

bool FileInputStream::Stats::operator==(
const FileInputStream::Stats& other) const {
return std::tie(numReads, readBytes, readTimeUs) ==
std::tie(other.numReads, other.readBytes, other.readTimeUs);
}

std::string FileInputStream::Stats::toString() const {
return fmt::format(
"numReads: {}, readBytes: {}, readTimeUs: {}",
numReads,
succinctBytes(readBytes),
succinctMicros(readTimeUs));
}
} // namespace facebook::velox::common
Loading
Loading