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

[pull] main from StarRocks:main #8

Open
wants to merge 2,074 commits into
base: main
Choose a base branch
from
Open

[pull] main from StarRocks:main #8

wants to merge 2,074 commits into from

Conversation

pull[bot]
Copy link

@pull pull bot commented Jul 15, 2024

See Commits and Changes for more details.


Created by pull[bot] (v2.0.0-alpha.1)

Can you help keep this open source service alive? 💖 Please sponsor : )

@github-actions github-actions bot added title needs [type] documentation Improvements or additions to documentation labels Jul 15, 2024
@pull pull bot added ⤵️ pull merge-conflict Resolve conflicts manually and removed documentation Improvements or additions to documentation title needs [type] labels Jul 17, 2024
@github-actions github-actions bot added documentation Improvements or additions to documentation title needs [type] labels Jul 17, 2024
@pull pull bot removed documentation Improvements or additions to documentation title needs [type] labels Jul 17, 2024
@github-actions github-actions bot added documentation Improvements or additions to documentation title needs [type] labels Jul 18, 2024
@pull pull bot removed documentation Improvements or additions to documentation title needs [type] labels Jul 19, 2024
@github-actions github-actions bot added documentation Improvements or additions to documentation title needs [type] labels Jul 19, 2024
@pull pull bot removed documentation Improvements or additions to documentation title needs [type] labels Jul 23, 2024
@github-actions github-actions bot added documentation Improvements or additions to documentation title needs [type] labels Jul 23, 2024
@pull pull bot removed documentation Improvements or additions to documentation title needs [type] labels Jul 23, 2024
@github-actions github-actions bot added documentation Improvements or additions to documentation title needs [type] labels Jul 23, 2024
@pull pull bot removed documentation Improvements or additions to documentation title needs [type] labels Jul 25, 2024
@github-actions github-actions bot added the documentation Improvements or additions to documentation label Jul 25, 2024
@pull pull bot removed the documentation Improvements or additions to documentation label Jul 26, 2024
@github-actions github-actions bot added documentation Improvements or additions to documentation title needs [type] labels Jul 26, 2024
@pull pull bot removed the documentation Improvements or additions to documentation label Nov 28, 2024
@github-actions github-actions bot added the documentation Improvements or additions to documentation label Nov 28, 2024
@pull pull bot removed the documentation Improvements or additions to documentation label Nov 28, 2024
@github-actions github-actions bot added the documentation Improvements or additions to documentation label Nov 28, 2024
@pull pull bot removed the documentation Improvements or additions to documentation label Nov 29, 2024
@github-actions github-actions bot added the documentation Improvements or additions to documentation label Nov 29, 2024
gengjun-git and others added 2 commits November 29, 2024 10:39
…ontaining too many tablets (#53062)

## Why I'm doing:
Failures in serialization of log data should be thrown instead of ignored. 
Ignoring the error will write an empty log to bdb, causing FE startup failure.

## What I'm doing:
Fix 
```
2024-11-20 14:28:03.900+08:00 ERROR (stateChangeExecutor|79) [BDBJournalCursor.deserializeData():253] fail to read journal entity key=13159, data=<DatabaseEntry offset="0" size="2" data="50 200 "/>
java.io.EOFException: null
        at java.io.DataInputStream.readInt(DataInputStream.java:397) ~[?:?]
        at com.starrocks.common.io.Text.readString(Text.java:391) ~[starrocks-fe.jar:?]
        at com.starrocks.journal.JournalEntity.readFields(JournalEntity.java:249) ~[starrocks-fe.jar:?]
        at com.starrocks.journal.bdbje.BDBJournalCursor.deserializeData(BDBJournalCursor.java:248) ~[starrocks-fe.jar:?]
        at com.starrocks.journal.bdbje.BDBJournalCursor.next(BDBJournalCursor.java:292) ~[starrocks-fe.jar:?]
        at com.starrocks.server.GlobalStateMgr.replayJournalInner(GlobalStateMgr.java:1933) ~[starrocks-fe.jar:?]
        at com.starrocks.server.GlobalStateMgr.replayJournal(GlobalStateMgr.java:1892) ~[starrocks-fe.jar:?]
        at com.starrocks.server.GlobalStateMgr.transferToLeader(GlobalStateMgr.java:1221) ~[starrocks-fe.jar:?]
        at com.starrocks.server.GlobalStateMgr$1.transferToLeader(GlobalStateMgr.java:745) ~[starrocks-fe.jar:?]
        at com.starrocks.ha.StateChangeExecutor.runOneCycle(StateChangeExecutor.java:103) ~[starrocks-fe.jar:?]
        at com.starrocks.common.util.Daemon.run(Daemon.java:107) ~[starrocks-fe.jar:?]
2024-11-20 14:28:03.919+08:00 WARN (stateChangeExecutor|79) [GlobalStateMgr.replayJournalInner():1954] catch exception when replaying journal, id: 13159, data: null,
com.starrocks.journal.JournalException: fail to read journal entity key=13159, data=<DatabaseEntry offset="0" size="2" data="50 200 "/>
        at com.starrocks.journal.bdbje.BDBJournalCursor.deserializeData(BDBJournalCursor.java:254) ~[starrocks-fe.jar:?]
        at com.starrocks.journal.bdbje.BDBJournalCursor.next(BDBJournalCursor.java:292) ~[starrocks-fe.jar:?]
        at com.starrocks.server.GlobalStateMgr.replayJournalInner(GlobalStateMgr.java:1933) ~[starrocks-fe.jar:?]
        at com.starrocks.server.GlobalStateMgr.replayJournal(GlobalStateMgr.java:1892) ~[starrocks-fe.jar:?]
        at com.starrocks.server.GlobalStateMgr.transferToLeader(GlobalStateMgr.java:1221) ~[starrocks-fe.jar:?]
        at com.starrocks.server.GlobalStateMgr$1.transferToLeader(GlobalStateMgr.java:745) ~[starrocks-fe.jar:?]
        at com.starrocks.ha.StateChangeExecutor.runOneCycle(StateChangeExecutor.java:103) ~[starrocks-fe.jar:?]
        at com.starrocks.common.util.Daemon.run(Daemon.java:107) ~[starrocks-fe.jar:?]
Caused by: java.io.EOFException
        at java.io.DataInputStream.readInt(DataInputStream.java:397) ~[?:?]
        at com.starrocks.common.io.Text.readString(Text.java:391) ~[starrocks-fe.jar:?]
        at com.starrocks.journal.JournalEntity.readFields(JournalEntity.java:249) ~[starrocks-fe.jar:?]
        at com.starrocks.journal.bdbje.BDBJournalCursor.deserializeData(BDBJournalCursor.java:248) ~[starrocks-fe.jar:?]
```

Signed-off-by: gengjun-git <[email protected]>
@pull pull bot removed the documentation Improvements or additions to documentation label Nov 29, 2024
@github-actions github-actions bot added the documentation Improvements or additions to documentation label Nov 29, 2024
@pull pull bot removed documentation Improvements or additions to documentation title needs [type] labels Nov 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⤵️ pull merge-conflict Resolve conflicts manually
Projects
None yet
Development

Successfully merging this pull request may close these issues.