You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Juan Galvez (Jira)" <ji...@apache.org> on 2020/12/16 16:56:00 UTC

[jira] [Updated] (ARROW-10942) [C++] S3FileSystem::Impl::IsEmptyDirectory fails on Amazon S3

     [ https://issues.apache.org/jira/browse/ARROW-10942?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Juan Galvez updated ARROW-10942:
--------------------------------
    Description: 
Running S3FileSystem::GetFileInfo() where the path is in the form "bucket-name/dir-name" and this is a bucket on AWS S3, it throws the following error:

"When reading information for key 'dir-name' in bucket 'bucket-name': AWS Error [code 15]: No response body.

I tracked down the issue to the IsEmptyDirectory method, and noticed that removing kSep from this line:
 req.SetKey(ToAwsString(key) + kSep);

fixes the issue.

However, I don't know why kSep is needed in the first place so I'm not sure what a good solution would be.
 Also, the key variable on entering IsEmptyDirectory is just the name of the directory (doesn't have separators).

  was:
Running S3FileSystem::GetFileInfo() where the path is in the form "s3://bucket-name/dir-name" and this is a bucket on AWS S3, it throws the following error:

"When reading information for key 'dir-name' in bucket 'bucket-name': AWS Error [code 15]: No response body.

I tracked down the issue to the IsEmptyDirectory method, and noticed that removing kSep from this line:
req.SetKey(ToAwsString(key) + kSep);

fixes the issue.

However, I don't know why kSep is needed in the first place so I'm not sure what a good solution would be.
Also, the key variable on entering IsEmptyDirectory is just the name of the directory (doesn't have separators).


> [C++] S3FileSystem::Impl::IsEmptyDirectory fails on Amazon S3
> -------------------------------------------------------------
>
>                 Key: ARROW-10942
>                 URL: https://issues.apache.org/jira/browse/ARROW-10942
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: C++
>    Affects Versions: 2.0.0
>            Reporter: Juan Galvez
>            Priority: Major
>
> Running S3FileSystem::GetFileInfo() where the path is in the form "bucket-name/dir-name" and this is a bucket on AWS S3, it throws the following error:
> "When reading information for key 'dir-name' in bucket 'bucket-name': AWS Error [code 15]: No response body.
> I tracked down the issue to the IsEmptyDirectory method, and noticed that removing kSep from this line:
>  req.SetKey(ToAwsString(key) + kSep);
> fixes the issue.
> However, I don't know why kSep is needed in the first place so I'm not sure what a good solution would be.
>  Also, the key variable on entering IsEmptyDirectory is just the name of the directory (doesn't have separators).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)