You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/04/26 02:42:25 UTC

[GitHub] [dolphinscheduler] Wilson-BT commented on issue #9767: [Bug] [dolphinscheduler-alert-email] send mail with attachment from sql task failed

Wilson-BT commented on issue #9767:
URL: https://github.com/apache/dolphinscheduler/issues/9767#issuecomment-1109241029

   I just add  the flow exclusion code in dolphinscheduler/pom.xml to solve this problem.
   But because i have no hadoop env,i can`t do some hadoop test.
   ```
   <dependency>
                   <groupId>org.apache.hadoop</groupId>
                   <artifactId>hadoop-common</artifactId>
                   <version>${hadoop.version}</version>
                   <exclusion>
                           <groupId>org.apache.commons</groupId>
                           <artifactId>commons-compress</artifactId>
                   </exclusion>
   <dependency>
   <dependency>
                   <groupId>org.apache.hadoop</groupId>
                   <artifactId>hadoop-client</artifactId>
                   <version>${hadoop.version}</version>
                   <exclusions>
                       <exclusion>
                           <groupId>org.apache.commons</groupId>
                           <artifactId>commons-compress</artifactId>
                       </exclusion>
                   </exclusions>
               </dependency>
   <dependency>
                   <groupId>org.apache.hadoop</groupId>
                   <artifactId>hadoop-yarn-common</artifactId>
                   <version>${hadoop.version}</version>
                   <exclusions>
                       <exclusion>
                           <groupId>org.apache.commons</groupId>
                           <artifactId>commons-compress</artifactId>
                       </exclusion>
                   </exclusions>
               </dependency>
   ``


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org