How to load data from Omnisend to Databricks Lakehouse
Learn how to use Airbyte to synchronize your Omnisend data into Databricks Lakehouse within minutes.


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
Setup Complexities simplified!
Simple & Easy to use Interface
Airbyte is built to get out of your way. Our clean, modern interface walks you through setup, so you can go from zero to sync in minutes—without deep technical expertise.
Guided Tour: Assisting you in building connections
Whether you’re setting up your first connection or managing complex syncs, Airbyte’s UI and documentation help you move with confidence. No guesswork. Just clarity.
Airbyte AI Assistant that will act as your sidekick in building your data pipelines in Minutes
Airbyte’s built-in assistant helps you choose sources, set destinations, and configure syncs quickly. It’s like having a data engineer on call—without the overhead.
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

Raman Singh
Predictable, straightforward pricing model that simplified budgeting and significantly reduced overall spend

Chase Zieman

“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.”

Rupak Patel
"With Airbyte, we could just push a few buttons, allow API access, and bring all the data into Google BigQuery. By blending all the different marketing data sources, we can gain valuable insights."
How to Sync to Manually
First, log into your Omnisend account. Navigate to the data you want to export (e.g., contacts, campaigns, etc.). Use the built-in export functionality to download the data in a CSV or JSON format. Make sure to save the exported file locally on your computer.
Ensure you have the necessary tools to upload data to the Databricks Lakehouse. Install Python and the Databricks CLI if they aren't already installed on your local machine. You'll use these tools to interact with Databricks.
Open a terminal or command prompt, and configure the Databricks CLI by running `databricks configure --token`. Enter your Databricks host URL and access token when prompted. This step authenticates your local environment with your Databricks account.
Use the Databricks CLI to upload the exported Omnisend data file to the Databricks File System (DBFS). For example, run the command `databricks fs cp /local/path/to/exported_file.csv dbfs:/path/to/destination/` to transfer the file to DBFS, replacing the paths with your local file path and desired DBFS destination.
In your Databricks workspace, create a new notebook. This notebook will contain the code to process and load your data into the Databricks Lakehouse. Choose a programming language like Python or Scala based on your preference.
In the notebook, write code to read the data from the DBFS and load it into a Delta table in your Databricks Lakehouse. For example, using PySpark, you can load a CSV file as follows:
```python
df = spark.read.format("csv").option("header", "true").load("dbfs:/path/to/destination/exported_file.csv")
df.write.format("delta").mode("overwrite").saveAsTable("omnisend_data_table")
```
Adjust the file path and table name as needed.
Verify that the data has been loaded correctly by running queries against the new Delta table in your Databricks notebook. Once satisfied with the verification, clean up any temporary files in DBFS if necessary to conserve storage space. You can remove the file with the command `databricks fs rm dbfs:/path/to/destination/exported_file.csv`.
By following these steps, you can successfully transfer data from Omnisend to your Databricks Lakehouse without the need for third-party connectors or integrations.