diff --git a/cpp/pom.xml b/cpp/pom.xml
index 85b7f0045..28f807400 100644
--- a/cpp/pom.xml
+++ b/cpp/pom.xml
@@ -22,7 +22,7 @@
org.apache.tsfile
tsfile-parent
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
tsfile-cpp
pom
diff --git a/java/common/pom.xml b/java/common/pom.xml
index dab646e3f..41b111aa9 100644
--- a/java/common/pom.xml
+++ b/java/common/pom.xml
@@ -24,7 +24,7 @@
org.apache.tsfile
tsfile-java
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
common
TsFile: Java: Common
diff --git a/java/examples/pom.xml b/java/examples/pom.xml
index 4b5e9e4d5..1b692e16e 100644
--- a/java/examples/pom.xml
+++ b/java/examples/pom.xml
@@ -24,7 +24,7 @@
org.apache.tsfile
tsfile-java
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
examples
pom
@@ -38,7 +38,7 @@
org.apache.tsfile
tsfile
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
diff --git a/java/pom.xml b/java/pom.xml
index 22c4c4327..0cecbc46e 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -24,10 +24,10 @@
org.apache.tsfile
tsfile-parent
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
tsfile-java
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
pom
TsFile: Java
diff --git a/java/tsfile/pom.xml b/java/tsfile/pom.xml
index 6c1011acc..8592c9a65 100644
--- a/java/tsfile/pom.xml
+++ b/java/tsfile/pom.xml
@@ -24,7 +24,7 @@
org.apache.tsfile
tsfile-java
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
tsfile
TsFile: Java: TsFile
@@ -38,7 +38,7 @@
org.apache.tsfile
common
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
com.github.luben
diff --git a/java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileConfig.java b/java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileConfig.java
index 5c0b719a8..f52dea004 100644
--- a/java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileConfig.java
+++ b/java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileConfig.java
@@ -82,7 +82,7 @@ public class TSFileConfig implements Serializable {
private int pageSizeInByte = 64 * 1024;
/** The maximum number of data points in a page, default value is 10000. */
- private int maxNumberOfPointsInPage = 10_000;
+ private int maxNumberOfPointsInPage = 256;
/** The maximum degree of a metadataIndex node, default value is 256. */
private int maxDegreeOfIndexNode = 256;
diff --git a/java/tsfile/src/main/java/org/apache/tsfile/file/metadata/statistics/BinaryStatistics.java b/java/tsfile/src/main/java/org/apache/tsfile/file/metadata/statistics/BinaryStatistics.java
index 34db11b93..b687526a4 100644
--- a/java/tsfile/src/main/java/org/apache/tsfile/file/metadata/statistics/BinaryStatistics.java
+++ b/java/tsfile/src/main/java/org/apache/tsfile/file/metadata/statistics/BinaryStatistics.java
@@ -71,24 +71,24 @@ public long getRetainedSizeInBytes() {
* @param last the last value
*/
public void initializeStats(Binary first, Binary last) {
- this.firstValue = first;
- this.lastValue = last;
+ // this.firstValue = first;
+ // this.lastValue = last;
}
private void updateLastStats(Binary lastValue) {
- this.lastValue = lastValue;
+ // this.lastValue = lastValue;
}
private void updateStats(Binary firstValue, Binary lastValue, long startTime, long endTime) {
// only if endTime greater or equals to the current endTime need we update the last value
// only if startTime less or equals to the current startTime need we update the first value
// otherwise, just ignore
- if (startTime <= this.getStartTime()) {
- this.firstValue = firstValue;
- }
- if (endTime >= this.getEndTime()) {
- this.lastValue = lastValue;
- }
+ // if (startTime <= this.getStartTime()) {
+ // this.firstValue = firstValue;
+ // }
+ // if (endTime >= this.getEndTime()) {
+ // this.lastValue = lastValue;
+ // }
}
@Override
diff --git a/pom.xml b/pom.xml
index 69fe9bec4..00de394b5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
org.apache.tsfile
tsfile-parent
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
pom
Apache TsFile Project Parent POM
diff --git a/python/pom.xml b/python/pom.xml
index 506df698d..a1386c83f 100644
--- a/python/pom.xml
+++ b/python/pom.xml
@@ -22,7 +22,7 @@
org.apache.tsfile
tsfile-parent
- 1.1.0-240924-SNAPSHOT
+ 1.1.0-qxj-snapsjot
tsfile-python
pom