Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
3.2.0
-
None
-
None
Description
Special characters handling in AzureBlobFileSystem looks different from other file systems. e.g. GoogleHadoopFileSystem.
For instance, FileSystem.open with ".../part=a%25percent/test.parquet" works fine in other file systems, but ABFS requires ".../part=a%percent/test.parquet" (%25 → %) because the path is URL encoded by AbfsClient#createRequestUrl internally. Can we change the behavior? Or can I request to add javadoc to explain the behavior if this is the expected behavior?