

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 BigQuery: Log in to your Google Cloud Platform (GCP) account and access the BigQuery console.
2. Prepare the Data for Export: Ensure your data is in a format that can be exported and imported into MySQL. For example, BigQuery supports exporting data in CSV, JSON, or Avro format.
3. Export the Data:
- Navigate to your dataset and select the table you want to export.
- Click on the "Export" button and choose the desired export format (e.g., CSV).
- Specify the GCS (Google Cloud Storage) bucket where you want to store the exported data.
- Set the export preferences, such as the file name and whether to allow field delimiters within data.
- Start the export job and wait for it to complete.
4. Download the Exported Data:
- Once the export job is complete, navigate to the GCS bucket where the data was exported.
- Download the exported files to your local machine.
1. Install MySQL: If you haven't already, install MySQL on the desired server or use a managed MySQL service.
2. Create a Database and User:
- Log in to the MySQL server using a client or the command line.
- Create a new database for the imported data: `CREATE DATABASE bigquery_data;`
- Create a user with the necessary privileges: `CREATE USER 'bigquery_user'@'%' IDENTIFIED BY 'password';`
- Grant the user privileges on the new database: `GRANT ALL PRIVILEGES ON bigquery_data.* TO 'bigquery_user'@'%';`
- Flush the privileges to ensure they are applied: `FLUSH PRIVILEGES;`
3. Create Tables:
- Define the schema for the tables in MySQL based on the schema from BigQuery.
- Create tables in MySQL using the `CREATE TABLE` statement.
- Make sure the data types in MySQL match the data types in the BigQuery dataset.
1. Prepare for Import:
- If you exported data in CSV format, ensure the CSV file is ready for import (e.g., correct delimiter, no header row if not needed, etc.).
2. Import the Data:
- Use the MySQL command-line tool or a client to connect to the MySQL server.
- Select the database: `USE bigquery_data;`
- Use the `LOAD DATA INFILE` command to import the CSV file into the MySQL table:
```
LOAD DATA LOCAL INFILE '/path/to/your/exported-file.csv'
INTO TABLE your_table_name
FIELDS TERMINATED BY ','
OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 LINES; // Use this if your CSV has a header row
```
- Adjust the command parameters as needed to match your data format.
3. Verify the Import:
- Run some queries to ensure the data was imported correctly.
- Check for any errors or inconsistencies and address them as needed.
- Remove Temporary Files: After verifying the import, delete any temporary files from your local machine and GCS bucket to prevent storage costs and maintain security.
- Review Security Settings: Ensure the MySQL user created for the import has appropriate permissions and that the database is secure.
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.
BigQuery is a cloud-based data warehousing and analytics platform that allows users to store, manage, and analyze large amounts of data in real-time. It is a fully managed service that eliminates the need for users to manage their own infrastructure, and it offers a range of features such as SQL querying, machine learning, and data visualization. BigQuery is designed to handle petabyte-scale datasets and can be used for a variety of use cases, including business intelligence, data exploration, and predictive analytics. It is a powerful tool for organizations looking to gain insights from their data and make data-driven decisions.
BigQuery provides access to a wide range of data types, including:
1. Structured data: This includes data that is organized into tables with defined columns and data types, such as CSV, JSON, and Avro files.
2. Semi-structured data: This includes data that has some structure, but not necessarily a fixed schema, such as XML and JSON files.
3. Unstructured data: This includes data that has no predefined structure, such as text, images, and videos.
4. Time-series data: This includes data that is organized by time, such as stock prices, weather data, and sensor readings.
5. Geospatial data: This includes data that is related to geographic locations, such as maps, GPS coordinates, and spatial databases.
6. Machine learning data: This includes data that is used to train machine learning models, such as labeled datasets and feature vectors.
7. Streaming data: This includes data that is generated in real-time, such as social media feeds, IoT sensor data, and log files.
Overall, BigQuery's API provides access to a wide range of data types, making it a powerful tool for data analysis and machine learning.
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: