Dataiku connection with adls gen2
Sourabh
Dataiku DSS Core Designer, Dataiku DSS Adv Designer, Registered Posts: 8 ✭✭✭
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
Answers
-
Sarina Dataiker, Dataiku DSS Core Designer, Dataiku DSS Adv Designer, Registered Posts: 317 Dataiker
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