

Building your pipeline or Using Airbyte
Airbyte is the only open source solution empowering data teams to meet all their growing custom business demands in the new AI era.
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
- Reliable and accurate
- Extensible and scalable for all your needs
- Deployed and governed your way
Start syncing with Airbyte in 3 easy steps within 10 minutes



Take a virtual tour
Demo video of Airbyte Cloud
Demo video of AI Connector Builder
What sets Airbyte Apart
Modern GenAI Workflows
Move Large Volumes, Fast
An Extensible Open-Source Standard
Full Control & Security
Fully Featured & Integrated
Enterprise Support with SLAs
What our users say


"The intake layer of Datadog’s self-serve analytics platform is largely built on Airbyte.Airbyte’s ease of use and extensibility allowed any team in the company to push their data into the platform - without assistance from the data team!"


“Airbyte helped us accelerate our progress by years, compared to our competitors. We don’t need to worry about connectors and focus on creating value for our users instead of building infrastructure. That’s priceless. The time and energy saved allows us to disrupt and grow faster.”


“We chose Airbyte for its ease of use, its pricing scalability and its absence of vendor lock-in. Having a lean team makes them our top criteria. The value of being able to scale and execute at a high level by maximizing resources is immense”
1. Log in to your Databricks workspace.
2. Create a new cluster or start an existing one that you wish to use for the data transfer process.
3. Once the cluster is running, create a new notebook in the workspace.
In your Databricks notebook, you may need to install additional libraries to work with SFTP protocols, such as `paramiko` for Python. Use the following command to install the required library:
```python
%pip install paramiko
```
In the notebook, write a script to establish a connection to your SFTP server. Here's an example in Python using the `paramiko` library:
```python
import paramiko
sftp_hostname = 'your_sftp_server.com'
sftp_port = 22 # or the port your SFTP server uses
sftp_username = 'your_username'
sftp_password = 'your_password' # or use key-based authentication
# Initialize the SSH client
ssh_client = paramiko.SSHClient()
ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
# Connect to the SFTP server
ssh_client.connect(sftp_hostname, port=sftp_port, username=sftp_username, password=sftp_password)
# Create an SFTP session
sftp_client = ssh_client.open_sftp()
```
Identify the files you want to transfer and download them to the Databricks file system (DBFS).
```python
remote_file_path = '/path/to/remote/file.csv'
local_file_path = '/dbfs/tmp/my_data.csv' # Temporary storage in DBFS
# Download the file from SFTP to local DBFS
sftp_client.get(remote_file_path, local_file_path)
# Close the SFTP client
sftp_client.close()
ssh_client.close()
```
Load the downloaded data into a DataFrame for further processing or direct storage into the Databricks Lakehouse.
```python
# Using PySpark to read the data into a DataFrame
df = spark.read.csv(local_file_path, header=True, inferSchema=True)
# Perform any necessary data transformations here
```
Now, write the DataFrame to the Databricks Lakehouse, which is backed by a Delta Lake on top of your data storage.
```python
# Define the path to the Delta Lake
delta_lake_path = '/mnt/delta_lakehouse/my_data'
# Write the DataFrame to the Delta Lake
df.write.format("delta").mode("overwrite").save(delta_lake_path)
```
If you need to transfer data regularly, you can schedule the notebook as a job in Databricks.
1. Go to the 'Jobs' tab in your Databricks workspace.
2. Create a new job, and select the notebook you've created as the task.
3. Configure the schedule to run as often as needed.
Step 8: Clean Up (Optional)
After the data transfer is complete, you may want to delete the temporary files from DBFS to free up space.
```python
dbutils.fs.rm(local_file_path, recurse=True)
```
FAQs
What is ETL?
ETL, an acronym for Extract, Transform, Load, is a vital data integration process. It involves extracting data from diverse sources, transforming it into a usable format, and loading it into a database, data warehouse or data lake. This process enables meaningful data analysis, enhancing business intelligence.
SFTP (Secure File Transfer Protocol) is a secure way to transfer files between two computers over the internet. It uses encryption to protect the data being transferred, making it more secure than traditional FTP (File Transfer Protocol). SFTP is commonly used by businesses and organizations to transfer sensitive data such as financial information, medical records, and personal data. It requires authentication using a username and password or public key authentication, ensuring that only authorized users can access the files. SFTP is also platform-independent, meaning it can be used on any operating system, making it a versatile and reliable option for secure file transfers.
SFTP provides access to various types of data that can be used for different purposes. Some of the categories of data that SFTP's API gives access to are:
1. File data: SFTP's API allows users to access and transfer files securely over the internet. This includes uploading, downloading, and managing files.
2. User data: SFTP's API provides access to user data such as usernames, passwords, and permissions. This allows users to manage and control access to their files and folders.
3. Server data: SFTP's API gives access to server data such as server logs, server configurations, and server status. This allows users to monitor and manage their server resources.
4. Security data: SFTP's API provides access to security data such as encryption keys, certificates, and security policies. This allows users to ensure that their data is secure and protected from unauthorized access.
5. Network data: SFTP's API gives access to network data such as IP addresses, network configurations, and network traffic. This allows users to monitor and manage their network resources.
What is ELT?
ELT, standing for Extract, Load, Transform, is a modern take on the traditional ETL data integration process. In ELT, data is first extracted from various sources, loaded directly into a data warehouse, and then transformed. This approach enhances data processing speed, analytical flexibility and autonomy.
Difference between ETL and ELT?
ETL and ELT are critical data integration strategies with key differences. ETL (Extract, Transform, Load) transforms data before loading, ideal for structured data. In contrast, ELT (Extract, Load, Transform) loads data before transformation, perfect for processing large, diverse data sets in modern data warehouses. ELT is becoming the new standard as it offers a lot more flexibility and autonomy to data analysts.
What should you do next?
Hope you enjoyed the reading. Here are the 3 ways we can help you in your data journey: