We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
Hello Everyone, I want to access SFTP Server data using fabric Notebook but for that I need to set Inbound Rule . As Notebook will have dynamic IP then how can we allow Notebook IP to access Port 22? Thank you in advance . Please advise
Solved! Go to Solution.
HI @PrachiJain06,
I'd like to suggest you try to use the Connection and Transfer to connect and get data from SFTP to local device. Then you can simply use notebook handle this type of data source.
# Import Fabric connection and transfer classes
from fabric import Connection, Transfer
# Create a connection object with host, user and port
conn = Connection(host="computer.xxx.xxx.com", user="user", port=22)
# Create a transfer object with the connection
trans = Transfer(conn)
# Copy a file from the SFTP server to the local filesystem
trans.get("myfile.csv", "myfile.csv")
How to use notebooks - Microsoft Fabric | Microsoft Learn
Regards,
Xiaoxin Sheng
HI @PrachiJain06,
I'd like to suggest you try to use the Connection and Transfer to connect and get data from SFTP to local device. Then you can simply use notebook handle this type of data source.
# Import Fabric connection and transfer classes
from fabric import Connection, Transfer
# Create a connection object with host, user and port
conn = Connection(host="computer.xxx.xxx.com", user="user", port=22)
# Create a transfer object with the connection
trans = Transfer(conn)
# Copy a file from the SFTP server to the local filesystem
trans.get("myfile.csv", "myfile.csv")
How to use notebooks - Microsoft Fabric | Microsoft Learn
Regards,
Xiaoxin Sheng
User | Count |
---|---|
10 | |
5 | |
4 | |
4 | |
3 |
User | Count |
---|---|
13 | |
9 | |
5 | |
4 | |
4 |