srkukarni commented on a change in pull request #2502: Fix Handling of user 
defined nar sources/sinks
URL: https://github.com/apache/incubator-pulsar/pull/2502#discussion_r214486344
 
 

 ##########
 File path: 
pulsar-functions/instance/src/main/java/org/apache/pulsar/functions/instance/JavaInstanceRunnable.java
 ##########
 @@ -246,12 +246,12 @@ public void run() {
 
     private void loadJars() throws Exception {
 
-        if (jarFile.endsWith(".nar")) {
-            // The functions code is contained in a NAR archive
+        try {
+            // Let's first try to treat it as a nar archive
             
fnCache.registerFunctionInstanceWithArchive(instanceConfig.getFunctionId(), 
instanceConfig.getInstanceId(),
                     jarFile);
-        } else {
-            log.info("Loading JAR files for function {} from archive {}", 
instanceConfig, jarFile);
+        } catch (Exception e) {
+            log.info("For Function {} Loading as NAR failed with {}; treating 
it as Jar instead", instanceConfig, e);
 
 Review comment:
   sources/sinks can be submitted as either .nar or .jar. And this will work in 
both cases.
   Maybe I don't understand your comment?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


With regards,
Apache Git Services

Reply via email to