Hi team, we encountered an issue in our StarRocks ...
# questions-and-troubleshooting
m
Hi team, we encountered an issue in our StarRocks cluster (version 3.3.18) twice when inserting data into our duplicate key table. Our table is partitioned daily and distributed by hash. We also found the following issue that has been fixed in previous versions. https://github.com/StarRocks/starrocks/pull/27305
Copy code
I20251223 15:33:55.524513 140058126448192 data_dir.cpp:277] begin loading tablet from meta /opt/starrocks/be/storage
E20251223 15:33:57.959306 140058126448192 tablet_updates.cpp:297] Corruption: tablet init missing rowset, tablet:33423914 #version:11 [275.1 280.1@9 281] #pending:0 all:42,53,54,55,56,57,58,59,60,61,62,63 active:0,42,53,54,55,56,57,58,59,60,61,62,63 missing:0:  after purge:tablet:33423914 #version:2 [280.1 280.1@0 281] #pending:0 reload failed: tablet init missing rowset, tablet:33423914 #version:2 [280.1 280.1@0 281] #pending:0 all:42,53,54,55,56,57,58,59,60,61,62,63 active:0,57,62,63 missing:0
W20251223 15:33:57.959325 140058126448192 tablet.cpp:112] Fail to init updates: Corruption: tablet init missing rowset, tablet:33423914 #version:11 [275.1 280.1@9 281] #pending:0 all:42,53,54,55,56,57,58,59,60,61,62,63 active:0,42,53,54,55,56,57,58,59,60,61,62,63 missing:0:  after purge:tablet:33423914 #version:2 [280.1 280.1@0 281] #pending:0 reload failed: tablet init missing rowset, tablet:33423914 #version:2 [280.1 280.1@0 281] #pending:0 all:42,53,54,55,56,57,58,59,60,61,62,63 active:0,57,62,63 missing:0
W20251223 15:33:57.959329 140058126448192 tablet_manager.cpp:939] Fail to init tablet 33423914.1929775369.534098d47282ec86-9d5a5d2ea5e7ed92: tablet init missing rowset, tablet:33423914 #version:11 [275.1 280.1@9 281] #pending:0 all:42,53,54,55,56,57,58,59,60,61,62,63 active:0,42,53,54,55,56,57,58,59,60,61,62,63 missing:0:  after purge:tablet:33423914 #version:2 [280.1 280.1@0 281] #pending:0 reload failed: tablet init missing rowset, tablet:33423914 #version:2 [280.1 280.1@0 281] #pending:0 all:42,53,54,55,56,57,58,59,60,61,62,63 active:0,57,62,63 missing:0
W20251223 15:33:57.959343 140058126448192 data_dir.cpp:291] load tablet from header failed. status:Internal error: tablet init failed: Corruption: tablet init missing rowset, tablet:33423914 #version:11 [275.1 280.1@9 281] #pending:0 all:42,53,54,55,56,57,58,59,60,61,62,63 active:0,42,53,54,55,56,57,58,59,60,61,62,63 missing:0:  after purge:tablet:33423914 #version:2 [280.1 280.1@0 281] #pending:0 reload failed: tablet init missing rowset, tablet:33423914 #version:2 [280.1 280.1@0 281] #pending:0 all:42,53,54,55,56,57,58,59,60,61,62,63 active:0,57,62,63 missing:0, tablet=33423914.1929775369
E20251223 15:33:58.790055 140058126448192 data_dir.cpp:323] load tablets from header failed, loaded tablet: 29264, error tablet: 1, path: /opt/starrocks/be/storage
F20251223 15:33:58.790075 140058126448192 data_dir.cpp:327] load tablets encounter failure. stop BE process. path: /opt/starrocks/be/storage
* Aborted at 1766491438 (unix time) try "date -d @1766491438" if you are using GNU date *
PC: @     0x7f621a7a89fc pthread_kill
* SIGABRT (@0xc3b) received by PID 3131 (TID 0x7f61d2dff640) from PID 3131; stack trace: *
    @     0x7f621a7abee8 (/usr/lib/x86_64-linux-gnu/libc.so.6+0x99ee7)
    @          0xa2c5209 google::(anonymous namespace)::FailureSignalHandler(int, siginfo_t*, void*)
    @     0x7f621a754520 (/usr/lib/x86_64-linux-gnu/libc.so.6+0x4251f)
    @     0x7f621a7a89fc pthread_kill
    @     0x7f621a754476 raise
    @     0x7f621a73a7f3 abort
    @          0xa2b899e google::LogMessage::Fail()
    @          0xa2b9c19 google::LogMessageFatal::~LogMessageFatal()
    @          0x65d9423 starrocks::DataDir::load()
    @          0xf05a1a4 execute_native_thread_routine
    @     0x7f621a7a6ac3 (/usr/lib/x86_64-linux-gnu/libc.so.6+0x94ac2)
    @     0x7f621a8388c0 (/usr/lib/x86_64-linux-gnu/libc.so.6+0x1268bf)
/etc/starrocks/entrypoint.sh: line 166:  3131 Aborted                 (core dumped) $STARROCKS_HOME/bin/start_be.sh $addition_args
[Tue Dec 23 15:34:02 +0330 2025] starrocks_be process exited with status: 134
Restarting starrocks_be ...
wait for 5 seconds ...
k
set
ignore_load_tablet_failure = true
in be.conf
❤️ 1