How to load data from Tempo to BigQuery
Learn how to use Airbyte to synchronize your Tempo data into BigQuery 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
Begin by exporting your data from the Tempo database. This typically involves using Tempo's built-in export functionality, which may allow you to export data in formats such as CSV or JSON. Ensure that the export process captures all the necessary data fields and rows you need to move.
Download and install the Google Cloud SDK on your local machine. This toolkit will provide you with the `gcloud` and `bq` command-line tools needed to interact with Google Cloud services, including BigQuery. Follow the installation instructions specific to your operating system, and authenticate the SDK with your Google Cloud account.
Before uploading, ensure your data is formatted correctly for BigQuery. BigQuery supports various file formats like CSV, JSON, Avro, and Parquet. If your Tempo export isn't in one of these formats, you may need to convert it. Ensure that the data structure matches the schema you plan to use in BigQuery.
Use Google Cloud Storage as an intermediary to upload your data files. Create a new bucket in Google Cloud Storage, and use the `gsutil cp` command to upload your files. For example, `gsutil cp /local/path/to/file.csv gs://your-bucket-name/`. This step allows you to leverage Google Cloud's infrastructure for secure and efficient data handling.
Log in to the Google Cloud Console and navigate to BigQuery. Create a new dataset where you plan to store your imported data. This is a necessary organizational step that helps manage your tables and control access.
With your data in Google Cloud Storage, use the `bq` command-line tool to load it into BigQuery. You can do this using a command like:
```
bq load --source_format=CSV your_dataset.your_table gs://your-bucket-name/file.csv
```
Replace `your_dataset`, `your_table`, and `file.csv` with your specific dataset, table names, and file name. Specify the correct source format and schema if necessary.
Once the data is loaded, verify that the import was successful. Use the BigQuery console to run simple queries and check for data integrity and completeness. This step ensures that your data is ready for analysis and that the transfer process did not introduce any errors or omissions.
By following these steps, you can successfully move data from Tempo to BigQuery using Google Cloud's native tools without relying on third-party connectors or integrations.