EmmyMiao87 opened a new issue #3763: URL: https://github.com/apache/incubator-doris/issues/3763
Support decoupling udf and be Some of the UDFs used by users at their own business level are universal and can be used as third-party extension functions for other users with the same business scene. But the current UDF is under the BE path. If there is a problem with the third-party UDF itself, it will also affect the compilation of the be. For this reason I want to completely decouple the code and compilation process of UDF from BE. The structure of the decoupled code is as follows: be custom_udf CMakeFile.txt src udf_sample(source code) Benefits after decoupling: 1. UDF and BE compilation do not affect each other 2. UDFs developed by users can also be fed back to the community. Other users with the same business scenario can also benefit. ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org