wu-sheng commented on a change in pull request #5132:
URL: https://github.com/apache/skywalking/pull/5132#discussion_r470595221
##########
File path:
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/TraceQueryEs7DAO.java
##########
@@ -124,8 +125,7 @@ public TraceBrief queryBasicTraces(long startSecondTB,
}
sourceBuilder.size(limit);
sourceBuilder.from(from);
-
- SearchResponse response = getClient().search(SegmentRecord.INDEX_NAME,
sourceBuilder);
+ SearchResponse response = getClient().search(new
TimeRangeIndexNameMaker(SegmentRecord.INDEX_NAME, startSecondTB, endSecondTB),
sourceBuilder);
Review comment:
I think ES7 and ES6 should use different TimeRangeIndexNameMaker, due to
different package name or something like that. Please recheck.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]