Dataiku connection with adls gen2

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

  • Dataiker, Dataiku DSS Core Designer, Dataiku DSS Adv Designer, Registered Posts: 319 Dataiker
    edited July 2024

    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

Welcome!

It looks like you're new here. Sign in or register to get started.

Welcome!

It looks like you're new here. Sign in or register to get started.