gcsfs icon indicating copy to clipboard operation
gcsfs copied to clipboard

isdir/info method works incorrectly

Open TSienki opened this issue 1 year ago • 20 comments

Hello, I've found a strange behavior of the isdir method (digging deeper also with info method). It returns incorrect values. These values seem to be returned randomly.

I use Python 3.10.12 and I've tested this behavior on gscfs=2022.3.0, and the latest version gscfs=2023.6.0

I've prepared a helper function to show what is happening here:

from gcsfs import GCSFileSystem

fs = GCSFileSystem()


def check_is_dir(path):
    is_dir = fs.isdir(path)
    info_type = fs.info(path)["type"]

    print(path, is_dir, info_type)

Problem example

An exemplary run:

check_is_dir('gs://my/super')
check_is_dir('gs://my/super/secret')
check_is_dir('gs://my/super/secret/gcs')
check_is_dir('gs://my/super/secret/gcs/directory')
check_is_dir('gs://my/super/secret/gcs/directory/file.json')

Results:

gs://my/super False director  # the first string is a path, the first boolean is a value returned by isdir method, and the second string is 'type' value in the dictionary returned by fs.info(path)
gs://my/super/secret True directory
gs://my/super/secret/gcs False directory
gs://my/super/secret/gcs/directory True directory
gs://my/super/secret/gcs/directory/file.json False file

As you can see, some directories are incorrectly treated as files. So more, values returned by the info and isdir methods are inconsistent.

Another insight

Changing the order of calling these methods, like in the snippet below:

def check_is_dir(path):
    info_type = fs.info(path)["type"]
    is_dir = fs.isdir(path)

    print(path, is_dir, info_type)

makes is_dir contains a correct value, but info_type incorrect one. Like here:

gs://my/super True file  # the first string is a path, the first boolean is a value returned by isdir method, and the second string is 'type' value in the dictionary returned by fs.info(path)
gs://my/super/secret True directory
gs://my/super/secret/gcs True file
gs://my/super/secret/gcs/directory True directory
gs://my/super/secret/gcs/directory/file.json False file

Workaround

For now, my workaround is to run isdir method two times:

def check_is_dir(path):
    is_dir = fs.isdir(path)
    is_dir = fs.isdir(path)
    info_type = fs.info(path)["type"]

    print(path, is_dir, info_type)

It works:

gs://my/super True directory  # the first string is a path, the first boolean is a value returned by isdir method, and the second string is 'type' value in the dictionary returned by fs.info(path)
gs://my/super/secret True directory
gs://my/super/secret/gcs True directory
gs://my/super/secret/gcs/directory True directory
gs://my/super/secret/gcs/directory/file.json False file

But I want to work with this library without such workaround ;)

TSienki avatar Aug 14 '23 15:08 TSienki

I don't have an MCVE but can say I've also run into this before. The hack to run isdir twice does work, so I've used that since I first saw this and didn't do any further investigation.

slevang avatar Aug 16 '23 13:08 slevang

It seems that I've found the root cause of this problem. Maybe It's a bug in the GCS file system. When I used the ls method on this directory, it listed the paths of all files and the directory path itself. The expected behavior would be to list only files inside this directory.

I decided to remove this directory and upload it again, and that solved the whole problem.

TSienki avatar Aug 17 '23 09:08 TSienki

AFAIK this was tackled in https://github.com/fsspec/gcsfs/pull/313, but for some reason never merged to main branch.

Motivating example using a public bucket gs://hadoop-lib/gcs <- this should be recognized as a folder. (link to console UI)

import fsspec
path = "gs://hadoop-lib/gcs"
fs = fsspec.filesystem("gs")

With python 3.7 and fsspec 2023.1.0:

fs.info(path) # {'kind': 'storage#object', ... , 'type': 'file'}
fs.info(path) # {..., 'type': 'directory'} <--- THIS IS TRUE

With python 3.9 and fsspec 2023.10.0:

fs.info(path) # {'kind': 'storage#object', ... , 'type': 'file'}
fs.info(path) # {'kind': 'storage#object', ... , 'type': 'file'}

(at least it's consistently wrong)

tomecki avatar Nov 29 '23 14:11 tomecki

There is indeed an empty file: 'hadoop-lib/gcs/', so . With #313 this is shown as a directory?

martindurant avatar Nov 29 '23 14:11 martindurant

hadoop-lib/gcs is a folder, containing other files. The library incorrectly recognizes it as a file. #313 never got merged, I haven't tested the behaviour with this PR.

tomecki avatar Nov 29 '23 14:11 tomecki

hadoop-lib/gcs is a folder, containing other files

it is also a file, though. In pathstring-land, the final "/" is immaterial.

martindurant avatar Nov 29 '23 14:11 martindurant

#313 appears abandoned, maybe it should be resurrected.

martindurant avatar Nov 30 '23 15:11 martindurant

I'm affected by this as well:

>>> gcsfs.__version__
'2023.12.1'
>>> fs.info('henning-test/empty_folder')['type']
'directory'  # Good.
>>> fs.info('henning-test/empty_folder/')['type']
'directory'  # Good.
>>> fs.info('henning-test/folder/test.txt')['type']
'file'  # Good.
>>> fs.info('henning-test/folder/test.txt/')['type']
'directory'  # ? I would expect file!
>>> fs.info('henning-test/folder')['type']
'directory'  # Good.
>>> fs.info('henning-test/folder/')['type']
'directory'  # Good.

>>> fs.ls('henning-test/folder')
['henning-test/folder/test.txt']  # Good!
>>> fs.ls('henning-test/folder/test.txt')
['henning-test/folder/test.txt']  # ? I would expect NotADirectoryError!
>>> fs.ls('henning-test/empty_folder')
['henning-test/empty_folder/']  # ? I would expect []!

hmeyer avatar Dec 13 '23 15:12 hmeyer

I am guessing "henning-test/empty_folder/" is a zero-length-file? Keeping that in mind, maybe most of this makes sense.

It would be best to show your complete set of files (as returned by find() ) to understand better.

martindurant avatar Dec 13 '23 16:12 martindurant

>>> fs.find('henning-test')
['henning-test/empty_folder/', 'henning-test/folder/test.txt']

Which still does not explain this:

>>> fs.ls('henning-test/folder/test.txt')
['henning-test/folder/test.txt']  # ? I would expect NotADirectoryError!
>>> fs.ls('henning-test/empty_folder')
['henning-test/empty_folder/']  # ? I would expect []!

Or does it?

hmeyer avatar Dec 14 '23 14:12 hmeyer

Or does it?

:)

For the first case, it is conventional that ls(file-path) should return [file-path]. This in bash:

$ ls README.md
README.md

For the second, the return is showing you the zero-length-file, which has the same prefix as the path you asked to list.

Yes, it's complicated, because GCS doesn't have folders, only "common prefixes". Sometimes it's convenient to assume these (optional) weird placeholders are the same as directories, but sometimes you need to know they are there.

martindurant avatar Dec 14 '23 14:12 martindurant

But it doesn't really match the behavior of LocalFileSystem (and also it does not match the documentation of fsspec).

>>> from fsspec.implementations.local import LocalFileSystem
>>> lfs = LocalFileSystem()
>>> lfs.ls('/tmp/fsspec-test/empty_folder')
[]
>>> lfs.ls('/tmp/fsspec-test/folder')
['/tmp/fsspec-test/folder/test.txt]']
>>> lfs.ls('/tmp/fsspec-test/folder/test.txt')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/opt/venv/lib/python3.10/site-packages/fsspec/implementations/local.py", line 66, in ls
    return [posixpath.join(path, f) for f in os.listdir(path)]
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/fsspec-test/folder/test.txt'

hmeyer avatar Dec 14 '23 16:12 hmeyer

does not match the documentation of fsspec

What specifically?

martindurant avatar Dec 14 '23 16:12 martindurant

After reading the documentation again, I realize it might also compatible with returning the path to a file itself, when called on a file. Although this seems awkward to me. Also it is inconsistent, that when calling ls on an empty folder or a file, we get the empty folder or file back, but when calling ls on a folder with files or subfolders, we don't get the folder itself back. Isn't it?

hmeyer avatar Dec 14 '23 17:12 hmeyer

Also it is inconsistent, that when calling ls on an empty folder or a file, we get the empty folder or file back, but when calling ls on a folder with files or subfolders, we don't get the folder itself back. Isn't it?

I agree that it would be good to sketch out all the possible cases, and then write a bunch of tests which can be applied to any filesystem and thus ensure consistency (much as was done for get/put/rm). This is a fair amount of work!

martindurant avatar Dec 14 '23 18:12 martindurant

+1 to what @hmeyer said. GCS and local file-system should be consistent! And also consistent with the rest of Python ecosystem (os.listdir() and pathlib.Path().iterdir())

empty_folder = '/.../empty_folder/'

assert os.listdir(empty_folder) == []
assert list(pathlib.Path(empty_folder).iterdir()) == []
assert local_fs.ls(empty_folder) == []
assert gcs_fs.ls(empty_folder) == ['/.../empty_folder/']  # <<<< Inconsistent and very surprising

Conchylicultor avatar Dec 20 '23 15:12 Conchylicultor

Let me point out, again, that in local filesystems, having a file and a directory with the same name is not allowed, and having a file with "/" as the last character is not allowed. This is a real difference we can't pretend doesn't exist. So, gcsfs is not_wrong in what it says. Since batch operations (e.g., rm() ) depend on the output of ls/find, we can't simply throw away these not-directory-files. We could patch ls() specifically, and I am happy to see such a PR.

martindurant avatar Dec 20 '23 15:12 martindurant

Actually it is perfectly ok to create a file with a trailing "/" locally:

>>> pathlib.Path('./bar\/').touch()
>>> pathlib.Path('./bar').mkdir()
>>> list(pathlib.Path('.').iterdir())
[PosixPath('bar\\'), PosixPath('bar')]

And I think following the principle of least surprise, it would be good if gcsfs would behave similar to gsutil or gcloud storage (both of which treat zero size files with trailing "/" as empty directories).

hmeyer avatar Dec 20 '23 20:12 hmeyer

PosixPath('bar\\')

Am I being dim, or is this not the path you had asked for?

martindurant avatar Dec 20 '23 20:12 martindurant

It is the path I asked for, but curiously pathlib (and also os.listdir()) have an interesting way of showing this. Speaking about a PR - I started https://github.com/fsspec/gcsfs/pull/598.

hmeyer avatar Dec 20 '23 20:12 hmeyer