

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


"For TUI Musement, Airbyte cut development time in half and enabled dynamic customer experiences."


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

"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."
First, ensure you have the necessary environment configured. This includes having Java installed, as well as Apache Spark or Apache Flink, which are compatible with Apache Iceberg. You will also need AWS CLI configured with access to your S3 bucket.
Use Apache Iceberg's capabilities to create a new table in your desired storage system (e.g., HDFS, AWS S3, etc.). This can be done using Apache Spark or Flink. For example, in Spark, you can define a new Iceberg table using:
```scala
spark.sql("CREATE TABLE database.table_name (column1 TYPE, column2 TYPE, ...) USING iceberg LOCATION 's3://your-bucket/path/'")
```
Load your data from S3 into a Spark DataFrame. This can be done by specifying the S3 path and the data format. For example:
```scala
val df = spark.read.format("parquet").load("s3a://your-bucket/path/to/data/")
```
Ensure that your Spark environment is configured to access S3, typically by using the `s3a` scheme and setting appropriate AWS credentials.
Before writing data to the Iceberg table, you may need to perform transformations to match the schema of the Iceberg table. Use Spark DataFrame operations to perform any necessary transformations:
```scala
val transformedDf = df.selectExpr("column1 as newColumn1", "column2 as newColumn2")
```
Write the data from the Spark DataFrame into the Iceberg table. Use the DataFrame's `write` method and specify the Iceberg table:
```scala
transformedDf.write.format("iceberg").mode("append").save("database.table_name")
```
This action will move the data from the DataFrame into the Iceberg table stored in your specified location.
Once the data is written, it's important to verify that it has been correctly transferred. You can do this by querying the Iceberg table using Spark SQL:
```scala
spark.sql("SELECT * FROM database.table_name LIMIT 10").show()
```
This will allow you to inspect a sample of the data to ensure it matches your expectations.
Finally, consider optimizing the Iceberg table for performance. This includes compacting small files, removing old snapshots, and setting up partitioning if applicable. Use Iceberg's built-in capabilities to manage these tasks:
```scala
spark.sql("CALL iceberg.system.compact('database.table_name')")
```
Regular maintenance will ensure your Iceberg table performs well and remains efficient over time.
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.
Amazon S3 (Simple Storage Service) is a cloud-based object storage service that provides developers and IT teams with secure, durable, and scalable storage for their data. It allows users to store and retrieve any amount of data from anywhere on the web, making it easy to build and scale applications, backup and archive data, and analyze data. S3 is designed to provide high availability and durability, with data automatically replicated across multiple availability zones within a region. It also offers a range of features such as versioning, lifecycle policies, and access control to help users manage their data effectively.
Amazon S3's API provides access to a wide range of data types, including:
1. Object data: This includes the actual files stored in S3 buckets, such as images, videos, documents, and other types of files.
2. Metadata: S3 stores metadata about each object, including information such as the object's size, creation date, and last modified date.
3. Access control data: S3 provides access control mechanisms to restrict access to objects in a bucket. The API provides access to information about access control policies and permissions.
4. Bucket data: S3 buckets are containers for objects. The API provides access to information about buckets, such as their names, creation dates, and region.
5. Logging data: S3 can log access requests to objects in a bucket. The API provides access to these logs, which can be used for auditing and compliance purposes.
6. Inventory data: S3 can generate inventory reports that provide information about the objects stored in a bucket. The API provides access to these reports.
7. Metrics data: S3 can generate metrics about the usage of a bucket, such as the number of requests and the amount of data transferred. The API provides access to these metrics.
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: