Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on March 15, 2023 12:05PM
Likes: 0
Replies: 1
Hi,
I want to establish the connection to adls gen2 through jupyter notebook (Python recipe).
Is there a process of how i can do it.
Thanks
Operating system used: Windows
Hi @SourabhJ
,
Sorry for the late reply! In general, we would recommend:
(1) Setting up an ADLS connection in DSS
(2) Creating a dataset to connect to the connection and connect to the data you are interested in pulling into your Jupyter notebook
(3) In your Jupyter notebook, you can then simply read in this dataset using the Dataiku APIs like so:
import dataiku dataset = dataiku.Dataset('YOUR_ADLS_DATASET_NAME') dataframe = dataset.get_dataframe()
Let us know if you have any questions about this approach!
Thanks,
Sarina