| 739 | } |
| 740 | |
| 741 | Status DiskIoMgr::DumpDataCache() { |
| 742 | if (FLAGS_data_cache_keep_across_restarts && remote_data_cache_) { |
| 743 | return remote_data_cache_->Dump(); |
| 744 | } |
| 745 | return Status::Expected("No cache dump is required."); |
| 746 | } |
| 747 | |
| 748 | vector<int64_t> DiskIoMgr::ChooseBufferSizes(int64_t scan_range_len, int64_t max_bytes) { |
| 749 | DCHECK_GE(max_bytes, min_buffer_size_); |