-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Remove the logic of memtable flush controlled by memory series size #13653
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #13653 +/- ##
============================================
+ Coverage 39.41% 39.47% +0.06%
Complexity 193 193
============================================
Files 4342 4342
Lines 275482 275504 +22
Branches 33637 33644 +7
============================================
+ Hits 108580 108763 +183
+ Misses 166902 166741 -161 ☔ View full report in Codecov by Sentry. |
...main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/AlignedWritableMemChunk.java
Outdated
Show resolved
Hide resolved
...main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/AlignedWritableMemChunk.java
Outdated
Show resolved
Hide resolved
...main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/AlignedWritableMemChunk.java
Outdated
Show resolved
Hide resolved
...e/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/IWritableMemChunk.java
Outdated
Show resolved
Hide resolved
...ode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/TsFileProcessor.java
Outdated
Show resolved
Hide resolved
...de/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/WritableMemChunk.java
Outdated
Show resolved
Hide resolved
...de/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/WritableMemChunk.java
Outdated
Show resolved
Hide resolved
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/AlignedTVList.java
Outdated
Show resolved
Hide resolved
...main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/AlignedWritableMemChunk.java
Outdated
Show resolved
Hide resolved
0393c75
to
87eb95d
Compare
Quality Gate passedIssues Measures |
moved to #14591 |
Description
In this PR, if the row number of a memory chunk exceeded the
avgSeriesPointNumberThreshold
, or the size of a binary type memory chunk exceeded thetargetChunkSize
, this memory chunk will split to multiple disk chunks in the TsFile.