Skip to content
Merged
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
2 changes: 2 additions & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@
| **Attach Listener** | 1 | RUNNABLE | JVM attach listener thread. |
| **Total** | **158** | - | - |

* BanyanDB: make `BanyanDBMetricsDAO` output `scan all blocks` info log only when the model is not `indexModel`.

#### UI

* Enhance the trace `List/Tree/Table` graph to support displaying multiple refs of spans and distinguishing different parents.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ public List<Metrics> multiGet(Model model, List<Metrics> metrics) throws IOExcep
if (begin != 0L || end != 0L) {
timestampRange = new TimestampRange(begin, end);
} else {
log.info("{}[{}] will scan all blocks", model.getName(), idStr);
if (!model.getBanyanDBModelExtension().isIndexMode()) {
log.info("{}[{}] will scan all blocks", model.getName(), idStr);
}
}

List<Metrics> metricsInStorage = new ArrayList<>(metrics.size());
Expand Down
Loading