[ 
https://issues.apache.org/jira/browse/APEXCORE-304?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15110201#comment-15110201
 ] 

ASF GitHub Bot commented on APEXCORE-304:
-----------------------------------------

Github user chinmaykolhatkar commented on a diff in the pull request:

    https://github.com/apache/incubator-apex-core/pull/208#discussion_r50367364
  
    --- Diff: 
engine/src/test/java/com/datatorrent/stram/StramMiniClusterTest.java ---
    @@ -235,6 +251,20 @@ private LogicalPlan createDAG(LogicalPlanConfiguration 
lpc) throws Exception
         return dag;
       }
     
    +  private void addExtraTestJar(LogicalPlan dag)
    +  {
    +    try {
    +      File tmp1 = File.createTempFile("tmp1", null);
    +      File tmp2 = File.createTempFile("tmp2", null);
    +      tmp1.deleteOnExit();
    +      tmp2.deleteOnExit();
    +      dag.addJarResource(tmp1.getAbsolutePath(), true);
    +      dag.addJarResource(tmp2.getAbsolutePath(), false);
    +    } catch (IOException e) {
    +      LOG.error("Failed to create temporary file.", e);
    --- End diff --
    
    Done


> Ability to add jars to classpath in populateDAG
> -----------------------------------------------
>
>                 Key: APEXCORE-304
>                 URL: https://issues.apache.org/jira/browse/APEXCORE-304
>             Project: Apache Apex Core
>          Issue Type: Improvement
>            Reporter: Chinmay Kolhatkar
>            Assignee: Chinmay Kolhatkar
>
> This will have following functionality:
> 1) In populateDAG one would be allowed to add given local jar path to 
> classpath of the application.
> 2) Optionally delete the given jar file after copying to HDFS is done.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to