hanahmily commented on code in PR #9966:
URL: https://github.com/apache/skywalking/pull/9966#discussion_r1023582720
##########
oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/BanyanDBIndexInstaller.java:
##########
@@ -44,6 +44,9 @@ public BanyanDBIndexInstaller(Client client, ModuleManager
moduleManager, Banyan
@Override
public boolean isExists(Model model) throws StorageException {
+ if (!model.isTimeSeries()) { // UITemplate
+ return true;
+ }
Review Comment:
Follow this line
https://github.com/apache/skywalking/blob/master/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/BanyanDBIndexInstaller.java#L90
Do I have to keep it or remove them at all?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]