Google: Big query
Interact with Google Big Query
.
Pre-requisite: Install Google Big Query
application Profile > {Organization} > Applications
to grant Zparse access.
Parameters
Select your previously configured Google Big Query application (see pre-requisite)
Add the Project ID you want to interact with
Add the Dataset ID you want to interact with
Either select Query Select if you want to retrieve data from your tables or Streaming Insert to publish data to your tables. See below for additional configuration based on selected Endpoint.
Endpoint: Select Query
Parameters
Which SQL query you want to get your data from.
SELECT * FROM `bigquery-public-data.austin_crime.crime`
SELECT * FROM `bigquery-public-data.austin_crime.crime` LIMIT @limit
Query accept dynamic parameters using @
marker. (ex: @limit
)
If you add dynamic parameters in your query, here is where you can create module connector to dynamically inject it.
Parameter: limit of type integer
Input
If you have no dynamic parameters simply trigger the query
If you have dynamics parameters simply connect proper objects
Output
Endpoint: Streaming Insert
Parameters
On which table you want to insert your data
Input
A JSONL file containing one row per line.