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
1 change: 1 addition & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* Fix BanyanDB time range overflow in profile thread snapshot query.
* `BrowserErrorLog`, OAP Server generated UUID to replace the original client side ID, because Browser scripts can't guarantee generated IDs are globally unique.
* MQE: fix multiple labeled metric query and ensure no results are returned if no label value combinations match.
* Fix `BrowserErrorLog` BanyanDB storage query order.

#### UI
* Fix the missing icon in new native trace view.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ public static List<String> composeLabelConditions(final List<KeyValue> queryLabe
keySets.add(keySet);
} else { // If any query label has no matches, clear all keySets so that no results are returned
keySets.clear();
break;
}
}
//intersection labels
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package org.apache.skywalking.oap.server.storage.plugin.banyandb.stream;

import com.google.common.collect.ImmutableSet;
import org.apache.skywalking.library.banyandb.v1.client.AbstractQuery;
import org.apache.skywalking.library.banyandb.v1.client.RowEntity;
import org.apache.skywalking.library.banyandb.v1.client.StreamQuery;
import org.apache.skywalking.library.banyandb.v1.client.StreamQueryResponse;
Expand Down Expand Up @@ -70,7 +71,8 @@ public void apply(StreamQuery query) {
if (Objects.nonNull(category)) {
query.and(eq(BrowserErrorLogRecord.ERROR_CATEGORY, category.getValue()));
}

query.setOrderBy(
new StreamQuery.OrderBy(AbstractQuery.Sort.DESC));
query.setOffset(from);
query.setLimit(limit);
}
Expand Down
Loading