-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Possibility to add builtin Pulsar Functions with a shared jar copied …
…inside the function folder (#6003)
- Loading branch information
1 parent
00bd430
commit b96197a
Showing
16 changed files
with
324 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
pulsar-common/src/main/java/org/apache/pulsar/common/functions/FunctionDefinition.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar.common.functions; | ||
|
||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
/** | ||
* Basic information about a Pulsar function. | ||
*/ | ||
@Data | ||
@NoArgsConstructor | ||
public class FunctionDefinition { | ||
|
||
/** | ||
* The name of the function type. | ||
*/ | ||
private String name; | ||
|
||
/** | ||
* Description to be used for user help. | ||
*/ | ||
private String description; | ||
|
||
/** | ||
* The class name for the function implementation. | ||
* | ||
* <p>If not defined, it will be assumed this function cannot act as a data. | ||
*/ | ||
private String functionClass; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
115 changes: 115 additions & 0 deletions
115
...ctions/utils/src/main/java/org/apache/pulsar/functions/utils/functions/FunctionUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar.functions.utils.functions; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.nio.file.DirectoryStream; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.nio.file.Paths; | ||
import java.util.Collections; | ||
|
||
import lombok.experimental.UtilityClass; | ||
import lombok.extern.slf4j.Slf4j; | ||
|
||
import org.apache.commons.lang3.StringUtils; | ||
import org.apache.pulsar.common.functions.FunctionDefinition; | ||
import org.apache.pulsar.common.nar.NarClassLoader; | ||
import org.apache.pulsar.common.util.ObjectMapperFactory; | ||
import org.apache.pulsar.functions.utils.Exceptions; | ||
import org.apache.pulsar.functions.api.Function; | ||
|
||
|
||
@UtilityClass | ||
@Slf4j | ||
public class FunctionUtils { | ||
|
||
private static final String PULSAR_IO_SERVICE_NAME = "pulsar-io.yaml"; | ||
|
||
/** | ||
* Extract the Pulsar Function class from a functionctor archive. | ||
*/ | ||
public static String getFunctionClass(ClassLoader classLoader) throws IOException { | ||
NarClassLoader ncl = (NarClassLoader) classLoader; | ||
String configStr = ncl.getServiceDefinition(PULSAR_IO_SERVICE_NAME); | ||
|
||
FunctionDefinition conf = ObjectMapperFactory.getThreadLocalYaml().readValue(configStr, | ||
FunctionDefinition.class); | ||
if (StringUtils.isEmpty(conf.getFunctionClass())) { | ||
throw new IOException( | ||
String.format("The '%s' functionctor does not provide a function implementation", conf.getName())); | ||
} | ||
|
||
try { | ||
// Try to load source class and check it implements Function interface | ||
Class functionClass = ncl.loadClass(conf.getFunctionClass()); | ||
if (!(Function.class.isAssignableFrom(functionClass))) { | ||
throw new IOException( | ||
"Class " + conf.getFunctionClass() + " does not implement interface " + Function.class.getName()); | ||
} | ||
} catch (Throwable t) { | ||
Exceptions.rethrowIOException(t); | ||
} | ||
|
||
return conf.getFunctionClass(); | ||
} | ||
|
||
public static FunctionDefinition getFunctionDefinition(String narPath) throws IOException { | ||
try (NarClassLoader ncl = NarClassLoader.getFromArchive(new File(narPath), Collections.emptySet())) { | ||
String configStr = ncl.getServiceDefinition(PULSAR_IO_SERVICE_NAME); | ||
return ObjectMapperFactory.getThreadLocalYaml().readValue(configStr, FunctionDefinition.class); | ||
} | ||
} | ||
|
||
public static Functions searchForFunctions(String functionsDirectory) throws IOException { | ||
Path path = Paths.get(functionsDirectory).toAbsolutePath(); | ||
log.info("Searching for functions in {}", path); | ||
|
||
Functions functions = new Functions(); | ||
|
||
if (!path.toFile().exists()) { | ||
log.warn("Functions archive directory not found"); | ||
return functions; | ||
} | ||
|
||
try (DirectoryStream<Path> stream = Files.newDirectoryStream(path, "*.nar")) { | ||
for (Path archive : stream) { | ||
try { | ||
FunctionDefinition cntDef = FunctionUtils.getFunctionDefinition(archive.toString()); | ||
log.info("Found function {} from {}", cntDef, archive); | ||
log.error(cntDef.getName()); | ||
log.error(cntDef.getFunctionClass()); | ||
if (!StringUtils.isEmpty(cntDef.getFunctionClass())) { | ||
functions.functions.put(cntDef.getName(), archive); | ||
} | ||
|
||
functions.functionsDefinitions.add(cntDef); | ||
} catch (Throwable t) { | ||
log.warn("Failed to load function from {}", archive, t); | ||
} | ||
} | ||
} | ||
|
||
Collections.sort(functions.functionsDefinitions, | ||
(c1, c2) -> String.CASE_INSENSITIVE_ORDER.compare(c1.getName(), c2.getName())); | ||
|
||
return functions; | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
...-functions/utils/src/main/java/org/apache/pulsar/functions/utils/functions/Functions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar.functions.utils.functions; | ||
|
||
import java.nio.file.Path; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.TreeMap; | ||
|
||
import lombok.Data; | ||
|
||
import org.apache.pulsar.common.functions.FunctionDefinition; | ||
|
||
@Data | ||
public class Functions { | ||
final List<FunctionDefinition> functionsDefinitions = new ArrayList<>(); | ||
final Map<String, Path> functions = new TreeMap<>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
...r-functions/worker/src/main/java/org/apache/pulsar/functions/worker/FunctionsManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar.functions.worker; | ||
|
||
import java.io.IOException; | ||
import java.nio.file.Path; | ||
import java.util.List; | ||
import lombok.extern.slf4j.Slf4j; | ||
|
||
import org.apache.pulsar.common.functions.FunctionDefinition; | ||
import org.apache.pulsar.functions.utils.functions.FunctionUtils; | ||
import org.apache.pulsar.functions.utils.functions.Functions; | ||
@Slf4j | ||
public class FunctionsManager { | ||
|
||
private Functions functions; | ||
|
||
public FunctionsManager(WorkerConfig workerConfig) throws IOException { | ||
this.functions = FunctionUtils.searchForFunctions(workerConfig.getFunctionsDirectory()); | ||
} | ||
|
||
public List<FunctionDefinition> getFunctions() { | ||
return functions.getFunctionsDefinitions(); | ||
} | ||
|
||
public Path getFunctionArchive(String functionType) { | ||
return functions.getFunctions().get(functionType); | ||
} | ||
|
||
public void reloadFunctions(WorkerConfig workerConfig) throws IOException { | ||
this.functions = FunctionUtils.searchForFunctions(workerConfig.getFunctionsDirectory()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.