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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to