| 1411 | } |
| 1412 | |
| 1413 | void TabletNodeImpl::ReadTablet(int64_t start_micros, const ReadTabletRequest* request, |
| 1414 | ReadTabletResponse* response, google::protobuf::Closure* done, |
| 1415 | ThreadPool* read_thread_pool) { |
| 1416 | auto read_tablet_task = make_shared<ReadTabletTask>(start_micros, tablet_manager_, request, |
| 1417 | response, done, read_thread_pool); |
| 1418 | |
| 1419 | read_tablet_task->StartRead(); |
| 1420 | } |
| 1421 | |
| 1422 | void TabletNodeImpl::PersistentCacheGarbageCollect(const std::set<std::string>& inherited_files, |
| 1423 | const std::set<std::string>& active_tablets) { |