@@ -202,10 +202,16 @@ BlockFileCache::BlockFileCache(const std::string& cache_base_path,
202
202
_disk_limit_mode_metrics = std::make_shared<bvar::Status<size_t >>(
203
203
_cache_base_path.c_str (), " file_cache_disk_limit_mode" , 0 );
204
204
205
- _storage_sync_remove_latency = std::make_shared<bvar::LatencyRecorder>(
206
- _cache_base_path.c_str (), " file_cache_storage_sync_remove_latency_ns" );
207
- _storage_async_remove_latency = std::make_shared<bvar::LatencyRecorder>(
208
- _cache_base_path.c_str (), " file_cache_storage_async_remove_latency_ns" );
205
+ _cache_lock_wait_time_us = std::make_shared<bvar::LatencyRecorder>(
206
+ _cache_base_path.c_str (), " file_cache_cache_lock_wait_time_us" );
207
+ _get_or_set_latency_us = std::make_shared<bvar::LatencyRecorder>(
208
+ _cache_base_path.c_str (), " file_cache_get_or_set_latency_us" );
209
+ _storage_sync_remove_latency_us = std::make_shared<bvar::LatencyRecorder>(
210
+ _cache_base_path.c_str (), " file_cache_storage_sync_remove_latency_us" );
211
+ _storage_retry_sync_remove_latency_us = std::make_shared<bvar::LatencyRecorder>(
212
+ _cache_base_path.c_str (), " file_cache_storage_retry_sync_remove_latency_us" );
213
+ _storage_async_remove_latency_us = std::make_shared<bvar::LatencyRecorder>(
214
+ _cache_base_path.c_str (), " file_cache_storage_async_remove_latency_us" );
209
215
210
216
_disposable_queue = LRUQueue (cache_settings.disposable_queue_size ,
211
217
cache_settings.disposable_queue_elements , 60 * 60 );
@@ -259,7 +265,7 @@ FileCacheType BlockFileCache::string_to_cache_type(const std::string& str) {
259
265
260
266
BlockFileCache::QueryFileCacheContextHolderPtr BlockFileCache::get_query_context_holder (
261
267
const TUniqueId& query_id) {
262
- SCOPED_CACHE_LOCK (_mutex);
268
+ SCOPED_CACHE_LOCK (_mutex, this );
263
269
if (!config::enable_file_cache_query_limit) {
264
270
return {};
265
271
}
@@ -277,7 +283,7 @@ BlockFileCache::QueryFileCacheContextPtr BlockFileCache::get_query_context(
277
283
}
278
284
279
285
void BlockFileCache::remove_query_context (const TUniqueId& query_id) {
280
- SCOPED_CACHE_LOCK (_mutex);
286
+ SCOPED_CACHE_LOCK (_mutex, this );
281
287
const auto & query_iter = _query_map.find (query_id);
282
288
283
289
if (query_iter != _query_map.end () && query_iter->second .use_count () <= 1 ) {
@@ -322,7 +328,7 @@ void BlockFileCache::QueryFileCacheContext::reserve(const UInt128Wrapper& hash,
322
328
}
323
329
324
330
Status BlockFileCache::initialize () {
325
- SCOPED_CACHE_LOCK (_mutex);
331
+ SCOPED_CACHE_LOCK (_mutex, this );
326
332
return initialize_unlocked (cache_lock);
327
333
}
328
334
@@ -541,7 +547,7 @@ std::string BlockFileCache::clear_file_cache_async() {
541
547
int64_t num_files_all = 0 ;
542
548
TEST_SYNC_POINT_CALLBACK (" BlockFileCache::clear_file_cache_async" );
543
549
{
544
- SCOPED_CACHE_LOCK (_mutex);
550
+ SCOPED_CACHE_LOCK (_mutex, this );
545
551
546
552
std::vector<FileBlockCell*> deleting_cells;
547
553
for (auto & [_, offset_to_cell] : _files) {
@@ -699,35 +705,39 @@ FileBlocksHolder BlockFileCache::get_or_set(const UInt128Wrapper& hash, size_t o
699
705
sw.start ();
700
706
std::lock_guard cache_lock (_mutex);
701
707
stats->lock_wait_timer += sw.elapsed_time ();
702
-
703
- if (auto iter = _key_to_time.find (hash);
704
- context.cache_type == FileCacheType::INDEX && iter != _key_to_time.end ()) {
705
- context.cache_type = FileCacheType::TTL;
706
- context.expiration_time = iter->second ;
707
- }
708
-
709
- // / Get all blocks which intersect with the given range.
710
708
FileBlocks file_blocks;
709
+ int64_t duration;
711
710
{
712
- SCOPED_RAW_TIMER (&stats->get_timer );
713
- file_blocks = get_impl (hash, context, range, cache_lock);
714
- }
711
+ SCOPED_RAW_TIMER (&duration);
712
+ if (auto iter = _key_to_time.find (hash);
713
+ context.cache_type == FileCacheType::INDEX && iter != _key_to_time.end ()) {
714
+ context.cache_type = FileCacheType::TTL;
715
+ context.expiration_time = iter->second ;
716
+ }
715
717
716
- if (file_blocks.empty ()) {
717
- SCOPED_RAW_TIMER (&stats->set_timer );
718
- file_blocks = split_range_into_cells (hash, context, offset, size, FileBlock::State::EMPTY,
719
- cache_lock);
720
- } else {
721
- SCOPED_RAW_TIMER (&stats->set_timer );
722
- fill_holes_with_empty_file_blocks (file_blocks, hash, context, range, cache_lock);
723
- }
724
- DCHECK (!file_blocks.empty ());
725
- *_num_read_blocks << file_blocks.size ();
726
- for (auto & block : file_blocks) {
727
- if (block->state () == FileBlock::State::DOWNLOADED) {
728
- *_num_hit_blocks << 1 ;
718
+ // / Get all blocks which intersect with the given range.
719
+ {
720
+ SCOPED_RAW_TIMER (&stats->get_timer );
721
+ file_blocks = get_impl (hash, context, range, cache_lock);
722
+ }
723
+
724
+ if (file_blocks.empty ()) {
725
+ SCOPED_RAW_TIMER (&stats->set_timer );
726
+ file_blocks = split_range_into_cells (hash, context, offset, size,
727
+ FileBlock::State::EMPTY, cache_lock);
728
+ } else {
729
+ SCOPED_RAW_TIMER (&stats->set_timer );
730
+ fill_holes_with_empty_file_blocks (file_blocks, hash, context, range, cache_lock);
731
+ }
732
+ DCHECK (!file_blocks.empty ());
733
+ *_num_read_blocks << file_blocks.size ();
734
+ for (auto & block : file_blocks) {
735
+ if (block->state_unsafe () == FileBlock::State::DOWNLOADED) {
736
+ *_num_hit_blocks << 1 ;
737
+ }
729
738
}
730
739
}
740
+ *_get_or_set_latency_us << (duration / 1000 );
731
741
return FileBlocksHolder (std::move (file_blocks));
732
742
}
733
743
@@ -781,7 +791,7 @@ BlockFileCache::FileBlockCell* BlockFileCache::add_cell(const UInt128Wrapper& ha
781
791
}
782
792
783
793
size_t BlockFileCache::try_release () {
784
- SCOPED_CACHE_LOCK (_mutex);
794
+ SCOPED_CACHE_LOCK (_mutex, this );
785
795
std::vector<FileBlockCell*> trash;
786
796
for (auto & [hash, blocks] : _files) {
787
797
for (auto & [offset, cell] : blocks) {
@@ -1075,7 +1085,7 @@ bool BlockFileCache::remove_if_ttl_file_blocks(const UInt128Wrapper& file_key, b
1075
1085
// remove specific cache synchronously, for critical operations
1076
1086
// if in use, cache meta will be deleted after use and the block file is then deleted asynchronously
1077
1087
void BlockFileCache::remove_if_cached (const UInt128Wrapper& file_key) {
1078
- SCOPED_CACHE_LOCK (_mutex);
1088
+ SCOPED_CACHE_LOCK (_mutex, this );
1079
1089
bool is_ttl_file = remove_if_ttl_file_blocks (file_key, true , cache_lock, true );
1080
1090
if (!is_ttl_file) {
1081
1091
auto iter = _files.find (file_key);
@@ -1097,7 +1107,7 @@ void BlockFileCache::remove_if_cached(const UInt128Wrapper& file_key) {
1097
1107
// cache meta is deleted synchronously if not in use, and the block file is deleted asynchronously
1098
1108
// if in use, cache meta will be deleted after use and the block file is then deleted asynchronously
1099
1109
void BlockFileCache::remove_if_cached_async (const UInt128Wrapper& file_key) {
1100
- SCOPED_CACHE_LOCK (_mutex);
1110
+ SCOPED_CACHE_LOCK (_mutex, this );
1101
1111
bool is_ttl_file = remove_if_ttl_file_blocks (file_key, true , cache_lock, /* sync*/ false );
1102
1112
if (!is_ttl_file) {
1103
1113
auto iter = _files.find (file_key);
@@ -1321,9 +1331,12 @@ void BlockFileCache::remove(FileBlockSPtr file_block, T& cache_lock, U& block_lo
1321
1331
key.meta .expiration_time = expiration_time;
1322
1332
if (sync ) {
1323
1333
int64_t duration_ns = 0 ;
1324
- SCOPED_RAW_TIMER (&duration_ns);
1325
- Status st = _storage->remove (key);
1326
- *_storage_sync_remove_latency << duration_ns;
1334
+ Status st;
1335
+ {
1336
+ SCOPED_RAW_TIMER (&duration_ns);
1337
+ st = _storage->remove (key);
1338
+ }
1339
+ *_storage_sync_remove_latency_us << (duration_ns / 1000 );
1327
1340
if (!st.ok ()) {
1328
1341
LOG_WARNING (" " ).error (st);
1329
1342
}
@@ -1335,9 +1348,12 @@ void BlockFileCache::remove(FileBlockSPtr file_block, T& cache_lock, U& block_lo
1335
1348
if (!ret) {
1336
1349
LOG_WARNING (" Failed to push recycle key to queue, do it synchronously" );
1337
1350
int64_t duration_ns = 0 ;
1338
- SCOPED_RAW_TIMER (&duration_ns);
1339
- Status st = _storage->remove (key);
1340
- *_storage_sync_remove_latency << duration_ns;
1351
+ Status st;
1352
+ {
1353
+ SCOPED_RAW_TIMER (&duration_ns);
1354
+ st = _storage->remove (key);
1355
+ }
1356
+ *_storage_retry_sync_remove_latency_us << (duration_ns / 1000 );
1341
1357
if (!st.ok ()) {
1342
1358
LOG_WARNING (" " ).error (st);
1343
1359
}
@@ -1360,7 +1376,7 @@ void BlockFileCache::remove(FileBlockSPtr file_block, T& cache_lock, U& block_lo
1360
1376
}
1361
1377
1362
1378
size_t BlockFileCache::get_used_cache_size (FileCacheType cache_type) const {
1363
- SCOPED_CACHE_LOCK (_mutex);
1379
+ SCOPED_CACHE_LOCK (_mutex, this );
1364
1380
return get_used_cache_size_unlocked (cache_type, cache_lock);
1365
1381
}
1366
1382
@@ -1370,7 +1386,7 @@ size_t BlockFileCache::get_used_cache_size_unlocked(FileCacheType cache_type,
1370
1386
}
1371
1387
1372
1388
size_t BlockFileCache::get_available_cache_size (FileCacheType cache_type) const {
1373
- SCOPED_CACHE_LOCK (_mutex);
1389
+ SCOPED_CACHE_LOCK (_mutex, this );
1374
1390
return get_available_cache_size_unlocked (cache_type, cache_lock);
1375
1391
}
1376
1392
@@ -1381,7 +1397,7 @@ size_t BlockFileCache::get_available_cache_size_unlocked(
1381
1397
}
1382
1398
1383
1399
size_t BlockFileCache::get_file_blocks_num (FileCacheType cache_type) const {
1384
- SCOPED_CACHE_LOCK (_mutex);
1400
+ SCOPED_CACHE_LOCK (_mutex, this );
1385
1401
return get_file_blocks_num_unlocked (cache_type, cache_lock);
1386
1402
}
1387
1403
@@ -1465,7 +1481,7 @@ std::string BlockFileCache::LRUQueue::to_string(
1465
1481
}
1466
1482
1467
1483
std::string BlockFileCache::dump_structure (const UInt128Wrapper& hash) {
1468
- SCOPED_CACHE_LOCK (_mutex);
1484
+ SCOPED_CACHE_LOCK (_mutex, this );
1469
1485
return dump_structure_unlocked (hash, cache_lock);
1470
1486
}
1471
1487
@@ -1483,7 +1499,7 @@ std::string BlockFileCache::dump_structure_unlocked(const UInt128Wrapper& hash,
1483
1499
}
1484
1500
1485
1501
std::string BlockFileCache::dump_single_cache_type (const UInt128Wrapper& hash, size_t offset) {
1486
- SCOPED_CACHE_LOCK (_mutex);
1502
+ SCOPED_CACHE_LOCK (_mutex, this );
1487
1503
return dump_single_cache_type_unlocked (hash, offset, cache_lock);
1488
1504
}
1489
1505
@@ -1546,7 +1562,7 @@ std::string BlockFileCache::reset_capacity(size_t new_capacity) {
1546
1562
ss << " finish reset_capacity, path=" << _cache_base_path;
1547
1563
auto start_time = steady_clock::time_point ();
1548
1564
{
1549
- SCOPED_CACHE_LOCK (_mutex);
1565
+ SCOPED_CACHE_LOCK (_mutex, this );
1550
1566
if (new_capacity < _capacity && new_capacity < _cur_cache_size) {
1551
1567
int64_t need_remove_size = _cur_cache_size - new_capacity;
1552
1568
auto remove_blocks = [&](LRUQueue& queue) -> int64_t {
@@ -1662,7 +1678,7 @@ void BlockFileCache::run_background_monitor() {
1662
1678
}
1663
1679
// report
1664
1680
{
1665
- SCOPED_CACHE_LOCK (_mutex);
1681
+ SCOPED_CACHE_LOCK (_mutex, this );
1666
1682
_cur_cache_size_metrics->set_value (_cur_cache_size);
1667
1683
_cur_ttl_cache_size_metrics->set_value (_cur_cache_size -
1668
1684
_index_queue.get_capacity (cache_lock) -
@@ -1712,7 +1728,7 @@ void BlockFileCache::run_background_ttl_gc() { // TODO(zhengyu): fix!
1712
1728
}
1713
1729
{
1714
1730
int64_t cur_time = UnixSeconds ();
1715
- SCOPED_CACHE_LOCK (_mutex);
1731
+ SCOPED_CACHE_LOCK (_mutex, this );
1716
1732
while (!_time_to_key.empty ()) {
1717
1733
auto begin = _time_to_key.begin ();
1718
1734
if (cur_time < begin->first ) {
@@ -1743,9 +1759,12 @@ void BlockFileCache::run_background_gc() {
1743
1759
}
1744
1760
1745
1761
int64_t duration_ns = 0 ;
1746
- SCOPED_RAW_TIMER (&duration_ns);
1747
- Status st = _storage->remove (key);
1748
- *_storage_async_remove_latency << duration_ns;
1762
+ Status st;
1763
+ {
1764
+ SCOPED_RAW_TIMER (&duration_ns);
1765
+ st = _storage->remove (key);
1766
+ }
1767
+ *_storage_async_remove_latency_us << (duration_ns / 1000 );
1749
1768
1750
1769
if (!st.ok ()) {
1751
1770
LOG_WARNING (" " ).error (st);
@@ -1758,7 +1777,7 @@ void BlockFileCache::run_background_gc() {
1758
1777
1759
1778
void BlockFileCache::modify_expiration_time (const UInt128Wrapper& hash,
1760
1779
uint64_t new_expiration_time) {
1761
- SCOPED_CACHE_LOCK (_mutex);
1780
+ SCOPED_CACHE_LOCK (_mutex, this );
1762
1781
// 1. If new_expiration_time is equal to zero
1763
1782
if (new_expiration_time == 0 ) {
1764
1783
remove_if_ttl_file_blocks (hash, false , cache_lock, false );
@@ -1818,7 +1837,7 @@ BlockFileCache::get_hot_blocks_meta(const UInt128Wrapper& hash) const {
1818
1837
int64_t cur_time = std::chrono::duration_cast<std::chrono::seconds>(
1819
1838
std::chrono::steady_clock::now ().time_since_epoch ())
1820
1839
.count ();
1821
- SCOPED_CACHE_LOCK (_mutex);
1840
+ SCOPED_CACHE_LOCK (_mutex, this );
1822
1841
std::vector<std::tuple<size_t , size_t , FileCacheType, uint64_t >> blocks_meta;
1823
1842
if (auto iter = _files.find (hash); iter != _files.end ()) {
1824
1843
for (auto & pair : _files.find (hash)->second ) {
@@ -1887,7 +1906,7 @@ std::string BlockFileCache::clear_file_cache_directly() {
1887
1906
using namespace std ::chrono;
1888
1907
std::stringstream ss;
1889
1908
auto start = steady_clock::now ();
1890
- SCOPED_CACHE_LOCK (_mutex);
1909
+ SCOPED_CACHE_LOCK (_mutex, this );
1891
1910
LOG_INFO (" start clear_file_cache_directly" ).tag (" path" , _cache_base_path);
1892
1911
1893
1912
std::string clear_msg;
@@ -1925,7 +1944,7 @@ std::string BlockFileCache::clear_file_cache_directly() {
1925
1944
1926
1945
std::map<size_t , FileBlockSPtr> BlockFileCache::get_blocks_by_key (const UInt128Wrapper& hash) {
1927
1946
std::map<size_t , FileBlockSPtr> offset_to_block;
1928
- SCOPED_CACHE_LOCK (_mutex);
1947
+ SCOPED_CACHE_LOCK (_mutex, this );
1929
1948
if (_files.contains (hash)) {
1930
1949
for (auto & [offset, cell] : _files[hash]) {
1931
1950
if (cell.file_block ->state () == FileBlock::State::DOWNLOADED) {
@@ -1940,7 +1959,7 @@ std::map<size_t, FileBlockSPtr> BlockFileCache::get_blocks_by_key(const UInt128W
1940
1959
}
1941
1960
1942
1961
void BlockFileCache::update_ttl_atime (const UInt128Wrapper& hash) {
1943
- SCOPED_CACHE_LOCK (_mutex);
1962
+ SCOPED_CACHE_LOCK (_mutex, this );
1944
1963
if (auto iter = _files.find (hash); iter != _files.end ()) {
1945
1964
for (auto & [_, cell] : iter->second ) {
1946
1965
cell.update_atime ();
0 commit comments