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

[Bug] Sequence group may cause record in wrong state. #5387

Open
1 of 2 tasks
leaves12138 opened this issue Apr 2, 2025 · 0 comments
Open
1 of 2 tasks

[Bug] Sequence group may cause record in wrong state. #5387

leaves12138 opened this issue Apr 2, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@leaves12138
Copy link
Contributor

Search before asking

  • I searched in the issues and found nothing similar.

Paimon version

If my records come disorderly, -D record may have been compact out of table. Then +I (which sequence number is smaller then -D record) may survive.

                StreamWriteBuilder builder = getTable().newStreamWriteBuilder();
                StreamTableWrite write = builder.newWrite();
                write.withIOManager(new IOManagerImpl("~/temp/"));
                StreamTableCommit commit = builder.newCommit();

                // +I[2025-04-01, 1, type1, 29, 5, name2, 29, 5, name2, null, 9223372036854775802]
                GenericRow genericRow = GenericRow.of(
                        1L,
                        2L,
                        2L);

                GenericRow genericRow2 = GenericRow.ofKind(RowKind.DELETE,
                        1L,
                        null,
                        Long.MAX_VALUE - 1);

                GenericRow genericRow3 = GenericRow.of(
                        1L,
                        1L,
                        1L);


                write.write(genericRow);
                commit.commit(1L, write.prepareCommit(true, 1L));

                write.write(genericRow2);
                commit.commit(2L, write.prepareCommit(true, 2L));
                readData();

                write.write(genericRow3);
                commit.commit(3L, write.prepareCommit(true, 3L));

Record should be 1,null,Long.MAX_VALUE-1

Compute Engine

Flink

Minimal reproduce step

above

What doesn't meet your expectations?

--

Anything else?

No response

Are you willing to submit a PR?

  • I'm willing to submit a PR!
@leaves12138 leaves12138 added the bug Something isn't working label Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant