You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2019/05/30 09:19:55 UTC

[GitHub] [incubator-hudi] cdmikechen opened a new issue #705: hadoop 2.8.x miss `org.apache.hadoop.hdfs.protocol.RecoveryInProgressException` class

cdmikechen opened a new issue #705: hadoop 2.8.x miss `org.apache.hadoop.hdfs.protocol.RecoveryInProgressException` class
URL: https://github.com/apache/incubator-hudi/issues/705
 
 
   When compiling with hadoop version 2.8, I found that there is no longer `org.apache.hadoop.hdfs.protocol.RecoveryInProgressException` in `hadoop-hdfs-2.8.4` packge.
   But I found that `com.uber.hoodie.common.table.log.HoodieLogFormatWriter` in `hoodie-common` import it. May be it can be replaced by a string in line 245 : 
   ```
       } else if (e.getClassName().contentEquals(RecoveryInProgressException.class.getName())
   ```
   to
   ```
       } else if (e.getClassName().contentEquals("org.apache.hadoop.hdfs.protocol.RecoveryInProgressException")
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services