-
Notifications
You must be signed in to change notification settings - Fork 104
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
Update README.md #19
Update README.md #19
Conversation
Thank you for picking up on this. (note that the failure is due to the implementation of linting) |
Thanks for the quick reply ! Regarding the upcoming change in fsspec. Do you mean this Issue: fsspec/filesystem_spec#206 ? |
That is an issue yet to be implemented, and that would work too, but I actually mean directly adding the implementation classes here to fsspec.registry.known_implementations |
Oh ok, I couldn't find the related PR. Are you interested in this PR then ? If yes, do you want me to edit the setup.py file for the linting to pass ? |
Yes, that PR to fsspec should be made. |
Cross-referencing with this PR. |
@@ -23,7 +23,7 @@ To use the Gen2 filesystem: | |||
``` | |||
import dask.dataframe as dd | |||
from fsspec.registry import known_implementations | |||
known_implementations['abfs'] = {'class': 'adlfs.AzureDatalakeFileSystem'} | |||
known_implementations['abfs'] = {'class': 'adlfs.AzureBlobFileSystem'} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be needed anymore, right?
Correct — once the protocols are in the fsspec known_protocols registry, we can remove this from the adlfs Readme.
… On Nov 28, 2019, at 2:02 PM, Martin Durant ***@***.***> wrote:
@martindurant commented on this pull request.
In README.md:
> @@ -23,7 +23,7 @@ To use the Gen2 filesystem:
```
import dask.dataframe as dd
from fsspec.registry import known_implementations
-known_implementations['abfs'] = {'class': 'adlfs.AzureDatalakeFileSystem'}
+known_implementations['abfs'] = {'class': 'adlfs.AzureBlobFileSystem'}
This shouldn't be needed anymore, right?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Ok I guess when fsspec/filesystem_spec#209 is released, this PR can be closed ? Thank you for adding this support ! |
I'm closing this PR. The ffspec |
Hi !
First of all thank you for working on this much needed azure storage layer.
I think the readme is not correct for the Gen 2 details. I think it should pass the
AzureBlobFileSystem
class instead of theAzureDatalakeFileSystem
.If that is correct. Here is the PR fixing the readme.