I am trying to read a Delta-file into a Jupyter Notebook on a notebook that is running on local processor. I have already gained access into Azure Datalake (ADLS), but I struggle to access the Delta-file.
I read in this article that this method should work:
from deltalake import DeltaTable
from adlfs import AzureBlobFileSystem
fs = AzureBlobFileSystem(account_name='devblobstorage',credential=credential)
df_delta = DeltaTable('path/delta/fileInQuestion.delta', file_system=fs).to_pandas()
But when I write this I get this error message, meaning that the file_system
parameter doesn't exist.
Anybody know how to read deltafiles in Jupyter?