zzzxl1993 commented on issue #58698: URL: https://github.com/apache/doris/issues/58698#issuecomment-3615841503
This issue is caused by a version mismatch in the CLucene submodule configuration in build.sh. When compiling without using git submodule (i.e., downloading the source tarball directly), the script uses the wrong CLucene branch version. The script was pointing to clucene-3.0.tar.gz but should be using clucene-3.1.tar.gz for version 3.1.x builds. Root Cause: The build.sh script downloads CLucene from the wrong branch URL: - https://github.com/apache/doris-thirdparty/archive/refs/heads/clucene-3.0.tar.gz + https://github.com/apache/doris-thirdparty/archive/refs/heads/clucene-3.1.tar.gz Workaround: You can manually modify line 591 in build.sh, changing clucene-3.0.tar.gz to clucene-3.1.tar.gz. Fix PR: https://github.com/apache/doris/pull/58763 -- 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]
