@ -16,6 +16,7 @@
* /
* /
package org.apache.dolphinscheduler.server.utils ;
package org.apache.dolphinscheduler.server.utils ;
import org.apache.commons.collections.MapUtils ;
import org.apache.dolphinscheduler.common.Constants ;
import org.apache.dolphinscheduler.common.Constants ;
import org.apache.dolphinscheduler.common.utils.CollectionUtils ;
import org.apache.dolphinscheduler.common.utils.CollectionUtils ;
import org.apache.dolphinscheduler.common.utils.HadoopUtils ;
import org.apache.dolphinscheduler.common.utils.HadoopUtils ;
@ -24,10 +25,8 @@ import org.apache.dolphinscheduler.dao.entity.UdfFunc;
import org.slf4j.Logger ;
import org.slf4j.Logger ;
import java.text.MessageFormat ;
import java.text.MessageFormat ;
import java.util.ArrayList ;
import java.util.* ;
import java.util.HashSet ;
import java.util.stream.Collectors ;
import java.util.List ;
import java.util.Set ;
import static org.apache.dolphinscheduler.common.utils.CollectionUtils.isNotEmpty ;
import static org.apache.dolphinscheduler.common.utils.CollectionUtils.isNotEmpty ;
@ -43,53 +42,44 @@ public class UDFUtils {
/ * *
/ * *
* create function list
* create function list
* @param udfFuncs udf functions
* @param udfFuncTenantCodeMap key is udf function , value is tenant code
* @param tenantCode tenant code
* @param logger logger
* @param logger logger
* @return create function list
* @return create function list
* /
* /
public static List < String > createFuncs ( List < UdfFunc > udfFuncs , String tenantCode , Logger logger ) {
public static List < String > createFuncs ( Map < UdfFunc , String > udfFuncTenantCodeMap , Logger logger ) {
if ( Collection Utils. isEmpty ( udfFuncs ) ) {
if ( Map Utils. isEmpty ( udfFuncTenantCodeMap ) ) {
logger . info ( "can't find udf function resource" ) ;
logger . info ( "can't find udf function resource" ) ;
return null ;
return null ;
}
}
// get hive udf jar path
String hiveUdfJarPath = HadoopUtils . getHdfsUdfDir ( tenantCode ) ;
logger . info ( "hive udf jar path : {}" , hiveUdfJarPath ) ;
// is the root directory of udf defined
if ( StringUtils . isEmpty ( hiveUdfJarPath ) ) {
logger . error ( "not define hive udf jar path" ) ;
throw new RuntimeException ( "hive udf jar base path not defined " ) ;
}
Set < String > resources = getFuncResouces ( udfFuncs ) ;
List < String > funcList = new ArrayList < > ( ) ;
List < String > funcList = new ArrayList < > ( ) ;
// build jar sql
// build jar sql
buildJarSql ( funcList , resources , hiveUdfJarPath ) ;
buildJarSql ( funcList , udfFuncTenantCodeMap ) ;
// build temp function sql
// build temp function sql
buildTempFuncSql ( funcList , udfFuncs ) ;
buildTempFuncSql ( funcList , udfFuncTenantCodeMap . keySet ( ) . stream ( ) . collect ( Collectors . toList ( ) ) ) ;
return funcList ;
return funcList ;
}
}
/ * *
/ * *
* build jar sql
* build jar sql
* @param sqls sql list
* @param sqls sql list
* @param resources resource set
* @param udfFuncTenantCodeMap key is udf function , value is tenant code
* @param uploadPath upload path
* /
* /
private static void buildJarSql ( List < String > sqls , Set < String > resources , String uploadPath ) {
private static void buildJarSql ( List < String > sqls , Map < UdfFunc , String > udfFuncTenantCodeMap ) {
String defaultFS = HadoopUtils . getInstance ( ) . getConfiguration ( ) . get ( Constants . FS_DEFAULTFS ) ;
String defaultFS = HadoopUtils . getInstance ( ) . getConfiguration ( ) . get ( Constants . FS_DEFAULTFS ) ;
if ( ! uploadPath . startsWith ( "hdfs:" ) ) {
uploadPath = defaultFS + uploadPath ;
}
for ( String resource : resources ) {
Set < Map . Entry < UdfFunc , String > > entries = udfFuncTenantCodeMap . entrySet ( ) ;
sqls . add ( String . format ( "add jar %s/%s" , uploadPath , resource ) ) ;
for ( Map . Entry < UdfFunc , String > entry : entries ) {
String uploadPath = HadoopUtils . getHdfsUdfDir ( entry . getValue ( ) ) ;
if ( ! uploadPath . startsWith ( "hdfs:" ) ) {
uploadPath = defaultFS + uploadPath ;
}
sqls . add ( String . format ( "add jar %s%s" , uploadPath , entry . getKey ( ) . getResourceName ( ) ) ) ;
}
}
}
}
/ * *
/ * *
@ -106,20 +96,5 @@ public class UDFUtils {
}
}
}
}
/ * *
* get the resource names of all functions
* @param udfFuncs udf function list
* @return
* /
private static Set < String > getFuncResouces ( List < UdfFunc > udfFuncs ) {
Set < String > resources = new HashSet < > ( ) ;
for ( UdfFunc udfFunc : udfFuncs ) {
resources . add ( udfFunc . getResourceName ( ) ) ;
}
return resources ;
}
}
}