2 min read

Google BigQuery Integration

Overview

The BigQuery integration connects Vantage to Google BigQuery, Google's fully managed, serverless data warehouse. Run SQL queries against massive datasets, insert rows into tables, and translate data between formats — all directly from your Vantage workflows.

API Documentation: BigQuery API Reference

Prerequisites

RequirementDetails
Google Cloud AccountA Google Cloud project with BigQuery API enabled
Service AccountA GCP service account with BigQuery permissions
CredentialsService account JSON key file
Auth TypeService Account / OAuth

Available Actions

ActionDescription
Run QueryExecute SQL queries against BigQuery datasets and retrieve results
Insert RowsInsert one or more rows into a BigQuery table
Translate DataTransform and translate data between formats for BigQuery compatibility

Configuration

Service Account Credentials

Project ID

Dataset

Use Cases & Examples

Large-Scale Data Analysis

Run complex SQL queries against terabyte-scale datasets for business intelligence, reporting, and trend analysis without managing infrastructure.

ETL Pipelines

Build workflows that extract data from external sources, transform it within Vantage, and load it into BigQuery tables for centralized analytics.

Cross-Platform Reporting

Combine data from multiple Vantage integrations (Stripe transactions, Shopify orders, CRM records) and insert aggregated results into BigQuery for unified reporting.

Example: Running a Query

A workflow node configured to run a BigQuery SQL query:

json
{
  "projectId": "my-project-123",
  "dataset": "analytics",
  "query": "SELECT date, SUM(revenue) as total_revenue FROM sales GROUP BY date ORDER BY date DESC LIMIT 30"
}

See Also