-
Notifications
You must be signed in to change notification settings - Fork 138
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
Unable to load sharded data from files without filetype extensions #573
Comments
When using just My intuition is that |
I have the files
When I run
I get
Note that the error message contains the name of a specific file, so blaze is seeing the directoruy and the files therein. It is just getting confused somehow. |
Leaving of the final '/' makes no difference. |
Ah, it looks like Directory isn't respecting that you have told it the type of the resource already:
this is the incorrect frame. |
@llllllllll Thanks |
What would be the way to supply type information when using a file pattern rather than the whole directory, eg.:
|
The call I showed before is the correct way to do it, it is just broken. I'm not sure there is a simple workaround other than adding an extension. This should be a small fix though. I am about to go to sleep but I'll fix this tomorrow. |
@llllllllll Cool, Thanks! I think this is not json specific though. |
I am trying to load data from directory of jsonlines formatted files which lack the .json extension.
I have tried:
all of which throw either
Unable to parse uri to data resource
orNo such file or directory
.I am able to parse a single file with:
Is this a bug / unimplemented functionality or am I doing something wrong?
The text was updated successfully, but these errors were encountered: