binarytom opened a new issue, #39124: URL: https://github.com/apache/doris/issues/39124
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Description When FE is starting, QeService will setup the `help-resources.zip`. But the `help-resources.zip` is not exists in lib after build. And here will print a log with warn level. ``` java // Set up help module try { HelpModule.getInstance().setUpModule(HelpModule.HELP_ZIP_FILE_NAME); } catch (Exception e) { LOG.warn("Help module failed. ignore it.", e); // TODO: ignore the help module failure temporarily. // We should fix it in the future. } ``` And also I find the 'build_help_zip.sh' doesn't work fine. ```bash [root@docker-desktop doris]# sh docs/build_help_zip.sh cp: cannot stat 'zh-CN/docs/sql-manual/*': No such file or directory ``` The `sql-manual` has been maintain in [doris-website](https://github.com/apache/doris-website/tree/master/docs/sql-manual). ### Solution 1. Remove the script `docs/build_help_zip.sh`. 2. Optimize the log and give some guides for building the help_resource.zip or just remote the help module setup. ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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]
