Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Memtable enhancement for query #14591

Merged
merged 50 commits into from
Feb 21, 2025
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
de38a7d
Split non_aligned charge text chunk
HTHou Apr 25, 2024
abe456f
merge master
HTHou Jul 5, 2024
ca7b6ea
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Sep 27, 2024
5ee3c89
dev non_aligned
HTHou Sep 27, 2024
3a994a3
dev aligned chunk split
HTHou Sep 29, 2024
85bd62c
new type
HTHou Sep 29, 2024
2dcd204
dev aligned binary chunk split
HTHou Sep 29, 2024
fb8f929
Fix binary size calculatation
HTHou Sep 29, 2024
41bc88b
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Sep 29, 2024
80e63f7
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Sep 29, 2024
0b5ad66
fix IT
HTHou Sep 29, 2024
7b463c8
update IoTDBDuplicateTimeIT.java
HTHou Sep 29, 2024
28aa427
fix pipe IT
HTHou Sep 29, 2024
1042cfc
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Oct 10, 2024
fbf19e5
change method names
HTHou Oct 10, 2024
252d6e0
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Oct 11, 2024
aeeef0d
add ut
HTHou Oct 11, 2024
506fceb
add UT
HTHou Oct 11, 2024
a0d46df
remove useless methods
HTHou Oct 11, 2024
96eb7e7
fix UT
HTHou Oct 11, 2024
082d9f6
fix /FileReaderManagerTest
HTHou Oct 11, 2024
b564ca2
fix win UT
HTHou Oct 12, 2024
c8207da
add binary test
HTHou Oct 12, 2024
b56aec9
Add Aligned UTs
HTHou Oct 12, 2024
2e84d21
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Oct 12, 2024
da3eee2
fix win ut
HTHou Oct 12, 2024
99327ff
improve coverage
HTHou Oct 12, 2024
4434cd5
fix comments
HTHou Oct 12, 2024
31e27bf
fix windows UT
HTHou Oct 12, 2024
e0ac04c
fix review
HTHou Oct 15, 2024
ef55416
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Oct 15, 2024
9881eb1
fix review
HTHou Oct 16, 2024
4339899
fix review
HTHou Oct 16, 2024
2780865
target chunk size count non binary
HTHou Oct 16, 2024
1254fe7
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Oct 16, 2024
87eb95d
merge master and fix review
HTHou Nov 18, 2024
aa3ac01
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Nov 18, 2024
5aa49cb
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Nov 27, 2024
4b9edf6
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Nov 29, 2024
9caa42a
fix compile
HTHou Nov 29, 2024
1c4d17c
Merge branch 'master' of github.com:apache/iotdb into split_text_chunk
HTHou Dec 3, 2024
23d10e6
fix UT
HTHou Dec 3, 2024
6dc5f0b
Merge branch 'master' into split_text_chunk
HTHou Dec 20, 2024
f016492
Merge branch 'master' into split_text_chunk
HTHou Dec 27, 2024
1224142
Merge branch 'master' of github.com:apache/iotdb into force_ci/split_…
HTHou Dec 30, 2024
1c32547
Merge branch 'master' of github.com:apache/iotdb into force_ci/split_…
HTHou Jan 21, 2025
167bd19
Merge branch 'master' of github.com:apache/iotdb into force_ci/split_…
HTHou Jan 21, 2025
d06cc84
Merge branch 'master' of github.com:apache/iotdb into force_ci/split_…
HTHou Jan 21, 2025
e8e449e
Tvlist feat new (#14616)
shizy818 Feb 7, 2025
8ff8928
Merge branch 'master' of github.com:apache/iotdb into force_ci/split_…
HTHou Feb 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix win ut
HTHou committed Oct 12, 2024
commit da3eee2bc67358cee93ca92ebe4a9e4df0249843
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@
import org.apache.iotdb.db.utils.EnvironmentUtils;
import org.apache.iotdb.db.utils.constant.TestConstant;

import org.apache.commons.io.FileUtils;
import org.apache.tsfile.enums.TSDataType;
import org.apache.tsfile.file.metadata.ChunkMetadata;
import org.apache.tsfile.file.metadata.IDeviceID;
@@ -118,7 +119,12 @@ public void setUp() throws DataRegionException {
public void tearDown() throws Exception {
EnvironmentUtils.cleanEnv();
EnvironmentUtils.cleanDir(TestConstant.OUTPUT_DATA_DIR);
EnvironmentUtils.cleanDir(String.format(TestConstant.TEST_TSFILE_PATH, "root.vehicle", 0, 0));
File file = new File(filePath);
File resource = new File(filePath + ".resource");
FileUtils.delete(file);
if (resource.exists()) {
FileUtils.delete(resource);
}
config.setAvgSeriesPointNumberThreshold(defaultAvgSeriesPointNumberThreshold);
config.setTargetChunkSize(defaultTargetChunkSize);
}