zzcclp commented on a change in pull request #1485:
URL: https://github.com/apache/kylin/pull/1485#discussion_r539849524
##########
File path: core-cube/src/main/java/org/apache/kylin/cube/CubeSegment.java
##########
@@ -530,11 +537,19 @@ public void setSnapshots(ConcurrentHashMap<String,
String> snapshots) {
}
public String getStatisticsResourcePath() {
- return getStatisticsResourcePath(this.getCubeInstance().getName(),
this.getUuid());
+ return getStatisticsResourcePath(this.getCubeInstance().getName(),
this.getUuid(), ".seq");
+ }
+
+ public String getPreciseStatisticsResourcePath() {
+ return getStatisticsResourcePath(this.getCubeInstance().getName(),
this.getUuid(), ".json");
Review comment:
What's the difference between '.seq' directory and '.json' directory? Do
we need to delete which one after running job successfully?
----------------------------------------------------------------
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]