643251132 edited a comment on issue #5936: URL: https://github.com/apache/incubator-doris/issues/5936#issuecomment-852018603
一直没有compaction的原因找到了: 在进行tablet选取的过程中 :find_best_tablet_to_compaction 会过滤掉 state 为TABLET_NOTREADY的 tablet 而正在进行物化视图创建的tablet state = TABLET_NOTREADY 所以正在创建中的物化视图下tablet在rollup 任务没有结束前,根本不会进行compaction,如果rollup历史数据的速度很慢的话,最新写入的tablet下的rowset version将会超过限制,从而导致写入失败。 版本为0.14.7 源码链接:https://github.com/baidu-doris/incubator-doris/blob/f30f14c4474e15f99c02e9036e82c909d90fc702/be/src/olap/tablet_manager.cpp#L713 对于此场景,doris团队将考虑通过什么方式解决呢? 撤回以上描述,发现最新写入的tablet状态变成了 running。。 所以可能不是以上原因导致, -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
