

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. Install Node.js: Ensure you have Node.js installed on your system, as you'll be using it to write a script to transfer the data.
2. Install PostgreSQL: Install PostgreSQL if it’s not already installed on your system or have access to a PostgreSQL server.
3. Access Credentials: Make sure you have the necessary access credentials for both Firebase Realtime Database and your PostgreSQL database.
1. Access Firebase Console: Go to your Firebase project console.
2. Navigate to Realtime Database: Click on the Realtime Database section.
3. Export Data: Click on the three dots (more options) and select "Export JSON". This will download a JSON file containing all the data from your Firebase Realtime Database.
1. Create Database: Log into your PostgreSQL terminal (psql) and create a new database if needed with `CREATE DATABASE your_database_name;`.
2. Design Schema: Based on the structure of the JSON data exported from Firebase, design the schema for your PostgreSQL database.
3. Create Tables: Use `CREATE TABLE` statements to create tables that match the structure of your Firebase data.
1. Initialize a Node.js Project: Create a new directory for your project and run `npm init` to start a new Node.js project.
2. Install Dependencies: Install the necessary Node.js packages by running `npm install firebase-admin pg`.
3. Service Account Key: Go to your Firebase project settings, navigate to the Service Accounts tab, and generate a new private key. Save this file in your project directory.
4. Write the Script:
- Initialize Firebase Admin with the service account key.
- Connect to your PostgreSQL database using the `pg` module.
- Read the exported JSON file into a variable.
- Iterate over the JSON data and construct `INSERT` statements for PostgreSQL.
- Execute the `INSERT` statements using the `pg` module.
Here's a simple example of what the script might look like:
```javascript
const admin = require('firebase-admin');
const { Client } = require('pg');
const fs = require('fs');
// Initialize Firebase Admin
const serviceAccount = require('./path/to/serviceAccountKey.json');
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: 'https://your-database-url.firebaseio.com'
});
// Connect to PostgreSQL
const client = new Client({
connectionString: 'postgres://username:password@localhost:5432/your_database_name'
});
client.connect();
// Read the exported JSON file
const firebaseData = JSON.parse(fs.readFileSync('path/to/exported.json', 'utf8'));
// Function to insert data into PostgreSQL
async function insertData(tableName, data) {
const keys = Object.keys(data[0]);
const values = data.map(obj => `(${keys.map(key => `'${obj[key]}'`).join(', ')})`);
const query = `INSERT INTO ${tableName} (${keys.join(', ')}) VALUES ${values.join(', ')};`;
try {
await client.query(query);
console.log('Data inserted successfully');
} catch (err) {
console.error('Error inserting data', err.stack);
}
}
// Example usage
const tableName = 'your_table_name';
insertData(tableName, firebaseData);
// Close the PostgreSQL connection
client.end();
```
Run your script using Node.js:
```bash
node path/to/your/script.js
```
After running your script, log into your PostgreSQL database and verify that the data has been transferred correctly:
```sql
SELECT * FROM your_table_name;
```
Once the data is successfully migrated, you can remove the Firebase service account key file from your project directory if it's no longer needed, and ensure your script does not expose any sensitive information.
Make sure to backup your PostgreSQL database regularly and set up proper maintenance tasks to keep your new database healthy.
Note: The example script provided is very basic and may not handle all use cases, such as data types, nested objects, or arrays. You'll need to modify the script according to your specific data structure and requirements. Always test the migration process with a subset of data before performing the full migration.
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.
The Firebase Real-time Database allows you to build rich, collaborative applications by allowing secure access to the database directly from client-side code. The Firebase Real-time Database is a NoSQL database from which we can store and sync the data between our users in real-time. Firebase Real-time Database is a solution that stores data in the cloud and offers an easy way to sync your data among various devices, and it is a cloud-hosted database. Data is stored as JSON and synchronized in real-time to every connected client.
Firebase's API gives access to a wide range of data types, including:
1. Real-time database: This includes data that is stored in real-time and can be accessed and updated in real-time.
2. Cloud Firestore: This is a NoSQL document database that stores data in documents and collections.
3. Authentication: This includes user data such as email, password, and authentication tokens.
4. Cloud Storage: This includes data such as images, videos, and other files that are stored in the cloud.
5. Cloud Functions: This includes data that is processed by serverless functions in the cloud.
6. Cloud Messaging: This includes data related to push notifications and messaging.
7. Analytics: This includes data related to user behavior and app usage.
8. Performance Monitoring: This includes data related to app performance and user experience.
9. Remote Config: This includes data related to app configuration and feature flags.
Overall, Firebase's API provides access to a wide range of data types that are essential for building modern web and mobile applications.
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: