pitrou commented on a change in pull request #11040: URL: https://github.com/apache/arrow/pull/11040#discussion_r707541657
########## File path: docs/source/python/filesystems.rst ########## @@ -200,10 +240,34 @@ For example:: import pyarrow.dataset as ds ds.dataset("data/", filesystem=fs) +:: + + # Similarly for Azure Blob Storage + import adlfs + # ... load your credentials and configure the filesystem + fs = adlfs.AzureBlobFileSystem(account_name=account_name, account_key=account_key) + + import pyarrow.dataset as ds + ds.dataset("data/", filesystem=fs) Review comment: Nice! Did you check this actually works? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org