-
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
Unaligned tvlist feat #14265
Open
shizy818
wants to merge
20
commits into
apache:master
Choose a base branch
from
shizy818:unaligned-tvlist-feat
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Unaligned tvlist feat #14265
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shizy818
force-pushed
the
unaligned-tvlist-feat
branch
from
December 2, 2024 06:20
a9c5aab
to
215cb4b
Compare
shizy818
commented
Dec 2, 2024
...de/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/ReadOnlyMemChunk.java
Show resolved
Hide resolved
shizy818
commented
Dec 2, 2024
.../main/java/org/apache/iotdb/db/storageengine/dataregion/read/reader/chunk/MemPageReader.java
Outdated
Show resolved
Hide resolved
shizy818
commented
Dec 2, 2024
...rc/main/java/org/apache/iotdb/db/queryengine/execution/fragment/FragmentInstanceContext.java
Show resolved
Hide resolved
HTHou
reviewed
Dec 3, 2024
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/TimLongTVList.java
Show resolved
Hide resolved
jt2594838
approved these changes
Dec 3, 2024
...de/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/ReadOnlyMemChunk.java
Outdated
Show resolved
Hide resolved
...de/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/ReadOnlyMemChunk.java
Outdated
Show resolved
Hide resolved
...de/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/WritableMemChunk.java
Outdated
Show resolved
Hide resolved
...main/java/org/apache/iotdb/db/storageengine/dataregion/read/reader/chunk/MemChunkReader.java
Outdated
Show resolved
Hide resolved
.../main/java/org/apache/iotdb/db/storageengine/dataregion/read/reader/chunk/MemPageReader.java
Outdated
Show resolved
Hide resolved
Binary valueP = getBinary(p); | ||
int valueP = getValueIndex(p); | ||
long timeP = getTime(p); | ||
Binary valueQ = getBinary(q); | ||
int valueQ = getValueIndex(q); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better to rename the variables. The same below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe I can to do this change later, and move common methods to XXXSort.
[HTHou](https://github.com/HTHou) [Dec 3, 2024](https://github.com/apache/iotdb/pull/14265#discussion_r1866983823)
这个方法看起来各个实现类里都变成一样的了,是不是可以放到 TimSort.java 里
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/TVList.java
Outdated
Show resolved
Hide resolved
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/TVList.java
Outdated
Show resolved
Hide resolved
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/TVList.java
Outdated
Show resolved
Hide resolved
.../java/org/apache/iotdb/db/storageengine/dataregion/read/reader/chunk/MemChunkLoaderTest.java
Outdated
Show resolved
Hide resolved
jt2594838
approved these changes
Dec 4, 2024
shizy818
force-pushed
the
unaligned-tvlist-feat
branch
from
December 4, 2024 10:51
ae4d92b
to
a033bc9
Compare
shizy818
force-pushed
the
unaligned-tvlist-feat
branch
from
December 5, 2024 01:46
0edb9c6
to
5aaa59b
Compare
jt2594838
approved these changes
Dec 5, 2024
shizy818
force-pushed
the
unaligned-tvlist-feat
branch
from
December 5, 2024 23:55
9d1de83
to
cd3f7d9
Compare
shizy818
force-pushed
the
unaligned-tvlist-feat
branch
from
December 7, 2024 09:00
d65c4f7
to
73e9f83
Compare
shizy818
force-pushed
the
unaligned-tvlist-feat
branch
from
December 13, 2024 02:42
1a53a0b
to
9411fea
Compare
* change some list to array * remember row count in tvlist iterator
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Content1 ...
Content2 ...
Content3 ...
This PR has:
for an unfamiliar reader.
for code coverage.
Key changed/added classes (or packages if there are too many classes) in this PR