-
Notifications
You must be signed in to change notification settings - Fork 468
[kv] Add an implementation of AutoIncIDBuffer #2161
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
base: main
Are you sure you want to change the base?
Conversation
45dc38a to
4d674d7
Compare
fluss-common/src/main/java/org/apache/fluss/metadata/Schema.java
Outdated
Show resolved
Hide resolved
fluss-common/src/test/java/org/apache/fluss/metadata/TableDescriptorTest.java
Show resolved
Hide resolved
fluss-server/src/main/java/org/apache/fluss/server/kv/autoinc/SegmentIDGenerator.java
Outdated
Show resolved
Hide resolved
|
hi, I had created this Pr: #2119 for this issue. Do we want to prefer this one over that? |
|
Hi @vamossagar12 , we prefer this one to work on since it is more comprehensive. |
19d0475 to
697dbcf
Compare
fluss-server/src/main/java/org/apache/fluss/server/utils/TableDescriptorValidation.java
Outdated
Show resolved
Hide resolved
fluss-common/src/main/java/org/apache/fluss/utils/json/ColumnJsonSerde.java
Outdated
Show resolved
Hide resolved
fluss-common/src/main/java/org/apache/fluss/config/ConfigOptions.java
Outdated
Show resolved
Hide resolved
| new Column( | ||
| column.getName(), | ||
| column.getDataType().copy(false), | ||
| column.getDataType().copy(true), |
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.
Partial update is required, so the data type here needs to be temporarily set to nullable.
fluss-server/src/main/java/org/apache/fluss/server/kv/autoinc/AutoIncProcessor.java
Outdated
Show resolved
Hide resolved
fluss-server/src/main/java/org/apache/fluss/server/zk/data/ZkData.java
Outdated
Show resolved
Hide resolved
platinumhamburg
left a comment
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.
@beryllw Thanks for contribution, I left some comments.
fluss-server/src/main/java/org/apache/fluss/server/zk/ZkSequenceIDCounter.java
Outdated
Show resolved
Hide resolved
fluss-server/src/main/java/org/apache/fluss/server/kv/autoinc/AutoIncProcessor.java
Show resolved
Hide resolved
fluss-server/src/main/java/org/apache/fluss/server/kv/autoinc/AutoIncProcessor.java
Outdated
Show resolved
Hide resolved
fluss-server/src/main/java/org/apache/fluss/server/kv/autoinc/IncIDGenerator.java
Outdated
Show resolved
Hide resolved
fluss-server/src/main/java/org/apache/fluss/server/kv/autoinc/SegmentSequenceGenerator.java
Show resolved
Hide resolved
fluss-client/src/test/java/org/apache/fluss/client/table/FlussTableITCase.java
Show resolved
Hide resolved
fluss-common/src/main/java/org/apache/fluss/config/ConfigOptions.java
Outdated
Show resolved
Hide resolved
| throws Exception { | ||
| walBuilder.append(ChangeType.INSERT, latestSchemaRow.replaceRow(currentValue.row)); | ||
| kvPreWriteBuffer.put(key, currentValue.encodeValue(), logOffset); | ||
| BinaryValue newValue = autoIncProcessor.processAutoInc(currentValue); |
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.
I've been wondering about the relationship between auto-increment column handling and the Merge Engine. I think they should probably be integrated in the design to avoid redundant encoding of row data, which would otherwise lead to significant performance overhead.
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.
I agree. We had better handle the partial updater and auto increment column at the same time.
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.
Currently, auto-increment is only utilized for INSERT operations, which does not overlap with the functionalities of RowMerger and PartialUpdateRowMerger. I agree integrating auto-increment into RowMerger would result in a more streamlined design, and I will try to optimize this part.
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.
I agree with this perspective. One point worth noting is that when changelogImage == ChangelogImage.WAL, the applyInsert method might not be invoked. It would be helpful to clarify the intended design and expected behavior in this case.
Additionally, since PartialUpdater is currently used only by DefaultRowMerger and isn’t a general-purpose class, we might defer considering its consolidation for now.
|
In addition to integration tests, I think we should also add several unit tests in KvTabletTest to cover behavior assertions after a TabletServer restart and after a single segment overflows. |
We could create a new issue to address the failover problem, including the design and implementation of its corresponding recovery mechanisms. |
| @Internal | ||
| public interface RowColumnVector extends ColumnVector { | ||
| /** IncIDGenerator is used to generate auto increment column ID. */ | ||
| public interface IncIDGenerator { |
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.
Please rename to SequenceGenerator
|
|
||
| /** Segment ID generator, fetch ID with a batch size. */ | ||
| @NotThreadSafe | ||
| public class SegmentIncIDGenerator implements IncIDGenerator { |
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.
ditto
| import org.apache.fluss.server.zk.data.ZkData; | ||
|
|
||
| /** AutoIncProcessor is used to process auto increment column. */ | ||
| public interface AutoIncProcessor { |
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.
Perhaps the AutoIncColumnProcessor could be renamed to AutoIncProcessor, and this static factory class could be renamed to AutoIncProcessors.
| throws Exception { | ||
| walBuilder.append(ChangeType.INSERT, latestSchemaRow.replaceRow(currentValue.row)); | ||
| kvPreWriteBuffer.put(key, currentValue.encodeValue(), logOffset); | ||
| BinaryValue newValue = autoIncProcessor.processAutoInc(currentValue); |
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.
I agree with this perspective. One point worth noting is that when changelogImage == ChangelogImage.WAL, the applyInsert method might not be invoked. It would be helpful to clarify the intended design and expected behavior in this case.
Additionally, since PartialUpdater is currently used only by DefaultRowMerger and isn’t a general-purpose class, we might defer considering its consolidation for now.
|
|
||
| @Nullable | ||
| @Override | ||
| public BinaryValue processAutoInc(BinaryValue oldValue) { |
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.
It would be great to add test cases that validate the system’s behavior under schema evolution, particularly when handling rows from different schema versions where the column set and/or column order may differ.
Purpose
Linked issue: close #2111
Brief change log
Tests
API and Format
Documentation