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

    https://github.com/apache/spark/pull/1959#discussion_r16299347
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/parquet/ParquetTypes.scala ---
    @@ -373,9 +373,11 @@ private[parquet] object ParquetTypesConverter extends 
Logging {
         }
         ParquetRelation.enableLogForwarding()
     
    +    // NOTE: Explicitly list "_temporary" because hadoop 0.23 removed the 
variable TEMP_DIR_NAME
    +    // from FileOutputCommitter. Check MAPREDUCE-5229 for the detail.
         val children = fs.listStatus(path).filterNot { status =>
           val name = status.getPath.getName
    -      name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME
    +      name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME || 
name == "_temporary"
    --- End diff --
    
    Unfortunately, that would ignore the metadata file "_metadata" as well. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to