-
Type:
Task
-
Resolution: Unresolved
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
Storage Engines - Server Integration
-
None
-
None
-
None
-
None
-
None
-
None
-
None
WT-18400 added a cache_top category to WT_CONNECTION::debug_info, which reports the tables holding the most cache (by update bytes, dirty leaf bytes, resident bytes, and recent read/eviction activity).
We need to add cache_top=true to the debug_info config string in WiredTigerKVEngine::dump() to capture the new information:
void WiredTigerKVEngine::dump() const { int ret = _conn->debug_info(_conn, "cache=true,cache_top=true,cursors=true,handles=true,log=true,sessions=true,txn=true"); auto status = wtRCToStatus(ret, nullptr, "WiredTigerKVEngine::dump()"); if (status.isOK()) { LOGV2(6117700, "WiredTigerKVEngine::dump() completed successfully"); } else { LOGV2(6117701, "WiredTigerKVEngine::dump() failed", "error"_attr = status); } }
- is related to
-
WT-18400 Expose the top consumers of cache memory (update and total bytes) on a live connection
-
- Closed
-