

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. Access ClickHouse: Log in to the ClickHouse server through the command line or a database management tool.
2. Select Data: Decide which tables or data you want to export from ClickHouse.
3. Export Data to CSV:
- Use the ClickHouse client to run a query that exports the data to a CSV file. Here's an example command that you can modify according to your needs:
```
clickhouse-client --query="SELECT * FROM your_database.your_table FORMAT CSV" > /path/to/your_data.csv
```
- Make sure to replace `your_database.your_table` with the appropriate database and table name, and `/path/to/your_data.csv` with the desired file path.
1. Inspect the CSV File: Open the CSV file to ensure the data has been exported correctly. Look for any anomalies or export errors.
2. Clean and Transform: If necessary, clean the data or transform it to match the schema expected by DuckDB. You can use tools like sed, awk, or a programming language like Python to automate this process.
1. Install DuckDB: If you haven't already, download and install DuckDB. You can find the installation instructions on the [official DuckDB website](https://duckdb.org/docs/installation).
2. Initialize DuckDB: Start DuckDB and create a new database or connect to an existing one.
1. Prepare the Table Schema:
- If the table doesn't exist in DuckDB, you'll need to create it with the appropriate schema to match the data you're importing from ClickHouse. Use the `CREATE TABLE` statement to define the table structure.
- For example:
```
CREATE TABLE your_table (
column1 TYPE,
column2 TYPE,
...
);
```
- Replace `TYPE` with the corresponding data types that match your CSV data.
2. Import Data:
- Use the `COPY` command in DuckDB to import the data from the CSV file into the table you've created.
- Here's an example command:
```
COPY your_table FROM '/path/to/your_data.csv' (FORMAT CSV, HEADER);
```
- Make sure to specify the correct path to your CSV file and any additional options you might need, such as specifying a delimiter if it's not a comma.
3. Verify the Import: After the data has been imported, run a few queries to ensure that the data is correctly loaded and the table behaves as expected.
1. Remove Temporary Files: If you created any temporary files or used any scripts for data transformation, clean them up to avoid clutter and potential data leaks.
2. Backup: If necessary, create a backup of the newly imported data in DuckDB.
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.
An open-source database management system for online analytical processing (OLAP), ClickHouse takes the innovative approach of using a column-based database. It is easy to use right out of the box and is touted as being hardware efficient, extremely reliable, linearly scalable, and “blazing fast”—between 100-1,000x faster than traditional databases that write rows of data to the disk—allowing analytical data reports to be generated in real-time.
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: