Skip to content

Commit 7f4b51f

Browse files
committed
spotless
1 parent fc2b992 commit 7f4b51f

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

integration-test/src/test/java/org/apache/iotdb/db/it/IoTDBLoadLastCacheIT.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
import org.junit.After;
4343
import org.junit.Assert;
4444
import org.junit.Before;
45-
import org.junit.Ignore;
4645
import org.junit.Test;
4746
import org.junit.experimental.categories.Category;
4847
import org.junit.runner.RunWith;
@@ -108,7 +107,7 @@ public void setUp() throws Exception {
108107
.getConfig()
109108
.getDataNodeConfig()
110109
.setLoadLastCacheStrategy(lastCacheLoadStrategy.name())
111-
.setCacheLastValuesForLoad(false);
110+
.setCacheLastValuesForLoad(true);
112111
EnvFactory.getEnv().initClusterEnvironment();
113112
}
114113

@@ -519,14 +518,14 @@ private void queryAll(
519518
timeConsumptions.stream().mapToLong(i -> i).average().orElse(0.0) / 1000000);
520519
}
521520

522-
//@Ignore("Performance")
521+
// @Ignore("Performance")
523522
@Test
524523
public void testTableLoadPerformance() throws Exception {
525524
int deviceCnt = 100;
526525
int measurementCnt = 100;
527526
int blobMeasurementCnt = 10;
528527
int pointCnt = 100;
529-
int fileCnt = 1000;
528+
int fileCnt = 100000;
530529
int queryPerSec = 100;
531530
int queryThreadsNum = 10;
532531

0 commit comments

Comments
 (0)