-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gs: use 3-char prefixes #6759
gs: use 3-char prefixes #6759
Conversation
Resolves #6691. Normally it should have inherited this from the `ObjectFSWrapper`, but this seems like a leftover.
Quick question/suggestion - is there a way/should we to add a test for this? |
We already have 2 tests for this, but they cover the other way around. dvc/tests/func/test_data_cloud.py Lines 573 to 610 in dd86076
|
Very interesting that this broke because of On a side note, once we migrate to |
It seems like there is probably still some bug in the gcsfs prefix implementation somewhere (that doesn't like prefix len |
@pmrowla Was hoping to include a test here, strange that this hasn't been caught by our suit. Or do you think it should be tested on gcsfs side? |
I think it needs to be tested on the gcsfs side. We use a mix of both 2 and 3 as prefix lengths on all of our other filesystems without seeing this issue. |
after update start seening this issue on random files |
@nikitaorlovpicsart , could you elaborate? |
|
Every time all files start with 00 |
@nikitaorlovpicsart Could you show full verbose ( |
Resolves #6691. Normally it should have inherited this from the
ObjectFSWrapper
, but this seems like a leftover.