ixzc commented on issue #56431: URL: https://github.com/apache/doris/issues/56431#issuecomment-3403462092
Have you modified the two BE configurations: enable_segcompaction or segcompaction_batch_size? Additionally, if the target table has had no writes for a long time (which fails to trigger compaction), segcompaction may have been delayed until the user triggers a schema change. Currently, the enable_segcompaction field in RowsetWriterContext is true by default. Therefore, as long as the enable_segcompaction BE configuration is enabled, the judgment and triggering logic of segcompaction will definitely be activated. To avoid this issue, you can change this default value to false and only enable segcompaction on demand when it is actually needed. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
